I've added PostSharp 2.1.7.14 to our source repository, using the instructions on the PostSharp site. I then used PostSharp.HQ to request PostSharp processing of my assembly, per the same instructions. However, PostSharp processing is apparently not taking place.
Here are the relevant portions of my project file, as put there by PostSharp.HQ. The path to PostSharp.targets is correct, relative to my project.
<Reference Include="PostSharp, Version=2.1.0.0, Culture=neutral, PublicKeyToken=b13fd38b8f9c99d7, processorArchitecture=MSIL">
<HintPath>..\..\..\PostSharp\PostSharp 2.1\Reference Assemblies\.NET Framework 2.0\PostSharp.dll</HintPath>
</Reference>
...etc...
<PropertyGroup>
<DontImportPostSharp>True</DontImportPostSharp>
</PropertyGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="..\..\..\PostSharp\PostSharp 2.1\PostSharp.targets" />
Is there anything else I must do to make PostSharp do its thing?
BTW, everything was working when I had installed PostSharp on my machine. I uninstalled it because I wanted to imitate the environment on the build server, where PostSharp will not be installed. Although I've uninstalled PostSharp, it is still in our source tree, at the location referenced in my project file.