In Visual Studio, I can create a file reference to a file like this:
<Content Include="..\Foo\$(Configuration)\Bar.txt" />
the property will be resolved at runtime to map to the current configuration (i.e. debug, or release).
When I load the project in Monodevelop, the property is not resolved. Is this a bug in MonoDevelop, or is there a different syntax to using the properties in a file reference.
The properties do work correct in the <PropertyGroup/>
tags elsewhere in the file.