Home > Enterprise >  Using visual studio, is there any way to keep properties settings?
Using visual studio, is there any way to keep properties settings?

Time:02-02

I have to set "C Language standard" to "C 20" and "multi-processor compilation" to yes every time I open a new project.

Is there any way to keep the setting? Thanks.

CodePudding user response:

You could create prop file. For your reference:Share or reuse Visual Studio project settings

CodePudding user response:

I think you could do this by customizing project templates. See Customize project and item templates for details.

E.g. if you edit project.vcxproj file in

  • Related