bernedef
bernedef

Reputation: 707

Add platform into vcxproj file with MSBuild

how can I add new platform target into vcxproj file with MSBuild from Windows SDK without using the Configuration Manager from Visual Studio IDE ?

Upvotes: 2

Views: 917

Answers (1)

Sergio Rykov
Sergio Rykov

Reputation: 4286

You can modify it inside any editor by hands - just copy/paste PropertyGroup with Condition on Configuration and Platform, change platform name and other parameters.

Upvotes: 4

Related Questions