I\'m setting up some configurations in my csproj files that will target different framework versions. Ideally I want configurations of \'Debug - 3.5\', \'Debug - 4.0\', \'Releas
An MSBuild property is just a .NET String and has property functions available.
Condition="$(Configuration.EndsWith('3.5'))"
Should work