David
David
CC#
Created by David on 12/17/2024 in #help
MSBuild Condition for Design-Time and Compile-Time
I have the following MSBuild Snippet
<ItemGroup>
<Compile Remove="Program.cs"></Compile>
<Compile Update="Program2.cs"></Compile>
<None Visible="true" Include="Program.cs"></None>
</ItemGroup>
<ItemGroup>
<Compile Remove="Program.cs"></Compile>
<Compile Update="Program2.cs"></Compile>
<None Visible="true" Include="Program.cs"></None>
</ItemGroup>
Program2.cs represents Generated Code. I want to achieve this: * Do not compile Program.cs * Enable Intelisense on Program.cs. In general treat it as if it was Compiled during design time * Program2.cs should not be referenceable from other Code. Redirecting the Debugger from Program2.cs to Program.cs using #line directives already works. How can this be achieved? I think it may be possible using some Condition for Design/Compile-Time or using Targets.
7 replies