Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

MonoDevelop allows creation and installation of custom policies to control all aspects of code formatting. I have created a policy for our work site, which can be applied via Project > Apply Policy ...

We are using the Unity game engine, which regularly regenerates the MonoDevelop solution, requiring each developer to re-apply the policy -- irritating and error-prone.

How can I make my policy file be the default for new MonoDevelop solutions?

Also, where is the information about the applied policy saved?

In the .sln file I see "$0.CSharpFormattingPolicy = $2", but this is unchanged after applying my custom policy. I have compared all the project files before and after applying the policy, and the only changes are (1) a .userprefs file is generated, but doesn't mention policies, and (2) various .pidb files are different, but this can't be where policy information goes??

I'm using the version of MonoDevelop that is integrated with Unity 3.5.2, which is MonoDevelop version 2.8.2 (on Windows 7). (Yes, 2.8.2 is a little out of date, and it's possible that Unity Technologies has made changes that are causing my issues.)

share|improve this question

2 Answers

The default policy is applied to new solutions or solutions without policies. It can be edited in the Preferences/Options dialog, where it's mixed in with the user preferences: Tools->Options on Windows, MonoDevelop->Preferences on Mac. You can identify the policies because they have a "Policy" dropdown at the top of the panel that allows you to load from a named policy.

share|improve this answer
Thanks mhutch, I've attempted to use those settings, but they don't make a difference. Editing my question with a bit more information. – yoyo Jun 21 '12 at 17:59

I spent like 30 minutes fixing this and finally figure it out.

In Windows: Go to Project -> Assembly C-Sharp Options

Then change the Code Formatting from there!

Going to Project -> Solution Options does absolutely nothing

share|improve this answer
I am able to change the options, that's not the problem. The trouble is that every time Unity regenerates my solution, the code formatting policy is reset to defaults. I want to over-ride the defaults some how. – yoyo Jan 29 at 18:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.