views:

33

answers:

0

I would like to reconfigure the StyleCop import path in my project file. Currently it looks like this:

<Import Project="$(ProgramFiles)\MSBuild\Microsoft\StyleCop\v4.3\Microsoft.StyleCop.targets" />

I would like to include the Microsoft.StyleCop.targets file in my project directory, and thus do something like this:

<Import Project="$( ProjectDir)\Microsoft.StyleCop.targets" />

Is something like this possible, if so what is the proper way to do it?