Reputation: 4557
Is there is a way to save the vs setting in project file(csproj/csproj.user).For eg i have two project called x and y, x should loads with a settings(font,fontsize,tab space) and different from y and then i don't want to import and export the *.vssettings in my vs every time.
Upvotes: 10
Views: 402
Reputation: 4458
This isn't directly possible, as the preferences are not project (or solution) based.
There are extensions that might provide a solution for you, like EditorConfig
If you're looking to simply share your settings between VS installs on multiple systems, there is a cloud sync feature in VS2012 (or you can use third party tools like this)
Upvotes: 2