VS2015 MSB3884 warning: Could not find rule set file

You need to edit the .csproj file and find the reference to the CodeAnalysisRuleSetDirectories. Change the version of the Visual Studio reference in the path to the one that is for VS2015 (a.k.a 14) and reload the project. (That worked for me.)

Alternatively delete all references of

<CodeAnalysisRuleSetDirectories>
<CodeAnalysisIgnoreBuiltInRuleSets> 
<CodeAnalysisRuleDirectories> 
<CodeAnalysisIgnoreBuiltInRules>

I found the solution here.

Leave a Comment