Tagged Questions
17
votes
4answers
5k views
Pre-build MSBuild task to update AssemblyInfo not in sync with built exe
I am using a pre-build task in Visual Studio 2008 that invokes msbuild:
C:\WINDOWS\Microsoft.NET\Framework\v3.5\MSBuild.exe $(MSBuildProjectDirectory)\version.targets ...
6
votes
2answers
2k views
Multiple Pre-Build Events in Visual Studio?
I've followed a blog post by Scott Hanselman for managing configuration with PreBuild Events and have it working fine.
I now want to split up my configuration into a couple of different files, so ...
5
votes
2answers
696 views
MS-Build BeforeBuild not firing
I'm customising a .csproj project to run some custom tasks before the main build. However, I can't get the tasks to execute at all.
I uncommented the <Target Name="BeforeBuild" /> element in ...
1
vote
1answer
274 views
Visual Studio pre-build action to skip project build based on condition
In a VS 2008 solution, I have several projects. I run the build on the entire solution with msbuild. Based on the existence of a file on the disk, I want to skip the build for one of the projects. How ...