visual-studio-2013 中与 ctrl f5 等效的命令行是什么?

visual-studio-2013 中与 ctrl f5 等效的命令行是什么?

我使用 Microsoft Visual Studio 创建了一个简单的 uwp 应用程序

生成项目To build the project

MSBuild -t:build -p:Platform=x64

我尝试使用

MSBuild -t:run -p:Platform=x64

但它是这样的: 在此处输入图片描述

但是,在 Visual Studio GUI 中,我按 ctrl F5

在此处输入图片描述

在此处输入图片描述

答案1

尝试在调用 MSBuild 时指定非调试构建配置。

MSBuild projectOrSolutionFile /property:Configuration=Release

您可以在 VS(项目 > 配置管理器)或项目文件中配置您的构建配置。

更多信息请点击这里:https://stackoverflow.com/questions/4669626/how-to-build-some-project-configurations-with-msbuild

相关内容