David
David
CC#
Created by David on 12/17/2024 in #help
MSBuild Condition for Design-Time and Compile-Time
I guess it is called Metaprogramming. I know there is Fody, but IL is not easy and I think debugging could get hard. But honestly I have never used it, so I may be wrong. Metalama is propriotary and Source Generators are limited.
7 replies
CC#
Created by David on 12/17/2024 in #help
MSBuild Condition for Design-Time and Compile-Time
Thanks. In the meantime I found an alternative:
<ItemGroup>
<Compile Remove="Program2.cs"></Compile>
<None Visible="true" Include="Program2.cs"></None>
</ItemGroup>

<Target Name="MyTarget" AfterTargets="BuildOnlySettings">
<ItemGroup>
<Compile Remove="Program.cs"></Compile>
<Compile Include="Program2.cs"></Compile>
</ItemGroup>
</Target>
<ItemGroup>
<Compile Remove="Program2.cs"></Compile>
<None Visible="true" Include="Program2.cs"></None>
</ItemGroup>

<Target Name="MyTarget" AfterTargets="BuildOnlySettings">
<ItemGroup>
<Compile Remove="Program.cs"></Compile>
<Compile Include="Program2.cs"></Compile>
</ItemGroup>
</Target>
Not sure which is better
7 replies