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 ...
5
votes
2answers
690 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 ...
2
votes
2answers
2k views
What's an easy way to access prebuild macros such as $(SolutionDir) and $(DevEnvDir) from code in C#?
Right now I'm thinking write the paths to a file in the pre-build event and then read from that file in the code, but I'm wondering if there's an easier more elegant way.
edit: This is sort of a ...