3F / MvsSln

🧩 Customizable VisualStudio .sln parser with project support (.vcxproj, .csproj., …). Pluggable lightweight r/w handlers at runtime, and more …
MIT License
135 stars 27 forks source link

Allow Deploy flag to be set for project configuration #12

Closed wouterroos closed 5 years ago

wouterroos commented 5 years ago

It currently seems not possible to set the deploy flag for a project in the solution configuration, can this be added?

3F commented 5 years ago

Yes Deploy line is not implemented: ~

GlobalSection(ProjectConfigurationPlatforms) = postSolution
    {809E6E87-8A04-46F6-9D21-57FB8689C074}.Debug|x64.ActiveCfg = Debug|x64
    {809E6E87-8A04-46F6-9D21-57FB8689C074}.Debug|x64.Build.0 = Debug|x64
    {809E6E87-8A04-46F6-9D21-57FB8689C074}.Debug|x64.Deploy.0 = Debug|x64
    {809E6E87-8A04-46F6-9D21-57FB8689C074}.Release|x64.ActiveCfg = Release|x64
    {809E6E87-8A04-46F6-9D21-57FB8689C074}.Release|x64.Build.0 = Release|x64
    {809E6E87-8A04-46F6-9D21-57FB8689C074}.Release|x64.Deploy.0 = Release|x64
EndGlobalSection

It will be considered for implementing in R/W handlers later. PR is welcomed too.