如何添加停止 msbuild 构建项目 visual studio 构建选项

how to add stop msbuild from building the project visual studio build option

我想停止 msbuild 默认的“构建”目标以停止构建我的代码,我想定义我的自定义目标来构建我的应用程序。如何实现?

谢谢,

只需打开项目的 csproj 文件。

并在文件底部添加这些:

<Target Name="Build">

//write your custom build function

</Target>

它将覆盖默认构建并使用您的构建。