问题现象,在命令行一直提交命令成功,但是steam开发者里SteamPipe-生成版本页面没显示提交的应用
1.在steamSDK解压目录下,打开脚本文件夹目录C:\Users\Administrator\Downloads\steamworks_sdk_154\sdk\tools\ContentBuilder\scripts
2.修改app_build_123454.vdf里的 Preview,Local,SetLive属性
"AppBuild"
{
"AppID" "123454" // Your AppID
"Desc" "Your build description here" // internal description for this build
//"Preview" "0" // make this a preview build only, nothing is uploaded-----------这里改成1或注释掉或删掉
//"Local" "..\..\ContentServer\htdocs" // put content on local content server instead of uploading to Steam-----------这里注释掉或删掉
//"SetLive" "AlphaTest" // set this build live on beta branch AlphaTest-----------这里注释掉或删掉
"ContentRoot" "..\content\" // content root folder relative to this script file
"BuildOutput" "D:\build_output\" // put build cache and log files on different drive for better performance
"Depots"
{
// file mapping instructions for each depot are in separate script files
"your DepotID" "depot_build_yourDepotID.vdf"
}
}
3.保存后,打开命令行,进入steamSDK
C:\Users\Administrator>cd C:\Users\Administrator\Downloads\steamworks_sdk_154\sdk\tools\ContentBuilder\builder
执行steamcmd.exe,后会自动安装加载SteamSDK
C:\Users\Administrator\Downloads\steamworks_sdk_154\sdk\tools\ContentBuilder\builder>steamcmd.exe
执行登陆命令:login username password
运行脚本命令:run_app_build C:\Users\Administrator\Downloads\steamworks_sdk_154\sdk\tools\ContentBuilder\scripts\app_build_123454.vdf
4.steam开发者里SteamPipe-生成版本页面,将分支生成版本设置default后上线。
5.此时重启steam客户端,即可在库中查看并安装自己的应用。
6.点击安装后,会在本地steam安装目录:D:\steam\steamapps\common下找到自己应用的程序目录及全部内容,表明下载成功
网友评论