1

是否可以将 PostSharp 与 NuGet 包还原一起部署到源存储库中?我可以通过提交 postsharp 包来完成这项工作,但这在一定程度上否定了包还原功能的价值。

这就是我所做的。

我在我的 csproj 中看到了这个

<Import Project="..\packages\PostSharp.2.1.6.13\tools\PostSharp.targets" />
<Import Project="$(SolutionDir)\.nuget\nuget.targets" />

(我重新订购它们无济于事)

我的构建服务器(CC.net)报告以下错误:

D:\wwwroot\www.snip.co.nz\http\www.snip.co.nz.csproj (714,3):

errorMSB4019: The imported project     "D:\wwwroot\www.snip.co.nz\packages\PostSharp.2.1.6.13\tools\PostSharp.targets" was not found. Confirm that the path in the &lt;Import&gt; declaration is correct, and that the file exists on disk.

CacheAttribute.cs (8,7):
errorCS0246: The type or namespace name 'PostSharp' could not be found (are you missing a using directive or an assembly reference?) 
…etc…
4

1 回答 1

1

您当前(v2.1.6.13)必须修复 csproj 以支持包还原,在 Import 目标元素中添加此处显示的条件:

<Import Project="..\packages\PostSharp.2.1.6.13\tools\PostSharp.targets"  
     Condition="Exists('..\packages\PostSharp.2.1.6.13\tools\PostSharp.targets')" />
于 2012-04-22T22:17:26.350 回答