I'd like to perform a pre-build event and make it conditional on the configuration name specified. I've added the following Xml to my project file:
<PropertyGroup>
<PreBuildEvent>
echo $(ConfigurationName)
</PreBuildEvent>
</PropertyGroup>
The output is always Debug. Is there another way to do conditional pre-build events for the CrmProject type?
*This post is locked for comments