Project source code that follows Microsoft Best Practices - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T11:19:29Z http://stackoverflow.com/feeds/question/650160 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/650160/project-source-code-that-follows-microsoft-best-practices 1 Project source code that follows Microsoft Best Practices yoitsfrancis 2009-03-16T12:14:03Z 2009-03-16T14:25:32Z <p>Hi! I would like to know if you know some sites with great source code that follows Microsoft best practices?</p> <p>By best practice I mean that projects that most likely conforms to say, this documents: <a href="http://www.codeplex.com/AppArchGuide" rel="nofollow">http://www.codeplex.com/AppArchGuide</a> <a href="http://apparch.codeplex.com/Wiki/View.aspx?title=Pocket%20Guides&amp;referringTitle=Home" rel="nofollow">http://apparch.codeplex.com/Wiki/View.aspx?title=Pocket%20Guides&amp;referringTitle=Home</a></p> http://stackoverflow.com/questions/650160/project-source-code-that-follows-microsoft-best-practices/650188#650188 1 Answer by Joonas Pulakka for Project source code that follows Microsoft Best Practices Joonas Pulakka 2009-03-16T12:24:07Z 2009-03-16T12:24:07Z <p>I believe Microsoft's own code follows their best practices, so have a look at <a href="http://www.microsoft.com/resources/sharedsource/default.mspx" rel="nofollow">Shared Source Initiative</a>.</p> http://stackoverflow.com/questions/650160/project-source-code-that-follows-microsoft-best-practices/650250#650250 -1 Answer by nickyt for Project source code that follows Microsoft Best Practices nickyt 2009-03-16T12:38:07Z 2009-03-16T12:38:07Z <p>Check out <a href="http://msdn.microsoft.com/en-us/practices/default.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/practices/default.aspx</a> and if you don't have VS 2008, download FxCop, <a href="http://msdn.microsoft.com/en-us/library/bb429476%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb429476(VS.80).aspx</a></p> http://stackoverflow.com/questions/650160/project-source-code-that-follows-microsoft-best-practices/650269#650269 1 Answer by Aaron Digulla for Project source code that follows Microsoft Best Practices Aaron Digulla 2009-03-16T12:41:02Z 2009-03-16T12:41:02Z <p>I doubt that you will find "great source code" (ahem) which follows M$ best practices outside of M$ for these reasons:</p> <ol> <li>Most of the products will be commercial (-> closed source)</li> <li>To follow M$ development style, you need to be a big company with lots of developers. Most OSS projects are rather small (i.e. a small core team and lots of volunteers).</li> </ol> http://stackoverflow.com/questions/650160/project-source-code-that-follows-microsoft-best-practices/650292#650292 -1 Answer by chills42 for Project source code that follows Microsoft Best Practices chills42 2009-03-16T12:48:06Z 2009-03-16T14:25:32Z <p>It will probably be very hard to find any open source code that complies to Microsoft's standards. You could, however check to see how closely a given project conforms using <a href="http://code.msdn.microsoft.com/sourceanalysis" rel="nofollow">StyleCop</a> and <a href="http://msdn.microsoft.com/en-us/library/bb429476%28VS.80%29.aspx" rel="nofollow">FXCop</a> with the default rulesets.</p> <p>One place I would look is the <a href="http://www.mono-project.com/Main%5FPage" rel="nofollow">Mono Project</a>, and <a href="http://mono.wikia.com/wiki/Software%5Fusing%5FMono" rel="nofollow">programs built using it</a>.</p> <p>Also, <a href="http://stackoverflow.com/questions/650160/project-source-code-that-follows-microsoft-best-practices/650188#650188">mad-j's idea</a> of looking at the shared source initiative, may help, but I would guess that not all of their code strictly follows their guidelines.</p>