I was browsing through Stack Overflow and Google for information about automatic coding style practice tools and found FxCop.
But I haven't found recent articles from Microsoft about FxCop. So, I was wondering if FxCop is dead.
Can FxCop be used with Visual Studio 2015? Will it work for enforcing C# design guidelines?
No, not dead, just renamed or reincarnated.
Supplement to CarbineCoder's answer above https://stackoverflow.com/a/36982685/257090
FxCop is now part of all editions of Visual Studio (Community, Pro, Enterprise)
There is a bit of confusion around it, because in the past, Microsoft upcharged for it, you had to buy Visual Studio Premium or Ultimate. As of 2012, as far as I recall, it was made free.
FxCop functionality is integrated into Visual Studio 2012 and later versions with VS Code analysis. It covers all FxCop functionality with better integration.
Reference: Code Analysis for Managed Code Overview
FxCop rules have been re-implemented as source based Roslyn analyzers in this open source repo.
See this page for recommended version of NuGet package(s)/VSIX to use to get these analyzers to run during your building/editing experience in Visual Studio.
See this page for further documentation.
From this blog (notice written by a Microsoft program manager):
So yes, it is dead, but replaced with something better. With CA you have an even better tool to do code analysis. Also, with Roslyn, it is quite easy to create your own analyzers.