Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
You have to install PostSharp on the build server to make it working. From my experience Setup is the best installation method for build server. See geekswithblogs.net/mnf/archive/2012/10/17/… – Michael Freidgeim Nov 1 '12 at 11:44

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.