I am an experienced C# developer, but a complete beginner when it comes to MSBuild, and now I have a .csproj file containing the following XML snippet:
<Choose>
<When Condition=" $(UseSimulatedResx) == true ">
<PropertyGroup>
<DefineConstants>$(DefineConstants);SIMRESX</DefineConstants>
</PropertyGroup>
... does something else ...
</When>
</Choose>
Is there way any anyone can explain me how and when the excerpt above should work? Where and when should I issue this UseSimulatedResx?
What I have to do is try to let SIMRESX be a conditional compilation symbol for a project in my solution so as to enable some features of our massive product.
Thank you in advance!