Integrating MSBuild into Visual Studio

后端 未结 10 1642
陌清茗
陌清茗 2021-02-02 11:03

I\'m a solo developer running Visual Studio 2008 and looking into MSBuild to improve my build process.

Almost all of the tutorials I\'ve found so far have plenty of info

10条回答
  •  春和景丽
    2021-02-02 11:57

    Your .csproj file is a MSBuild file. So you are actually using it already.

    You may of course wish to create a separate build file to have more control, especially within a continuous integration or nightly build say.

    If you simply wish to edit your project build file then you can use the IDE to edit some settings such as pre and post build actions or edit the Xml itself by unloading project and right click and editing.

提交回复
热议问题