【发布时间】:2012-12-04 13:18:41
【问题描述】:
在某些机器上,在 csproj 中添加对程序集的引用后生成了下一个标签。
<Reference Include="Microsoft.Expression.Interactions">
<HintPath>..\Libs.SL\Blend\Microsoft.Expression.Interactions.dll</HintPath>
</Reference>
但在某些机器上生成了带有版本、文化、令牌和处理器架构的参考:
<Reference Include="Microsoft.Expression.Interactions, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\Libs.SL\Blend\Microsoft.Expression.Interactions.dll</HintPath>
</Reference>
这是为什么?
【问题讨论】:
标签: c# .net visual-studio-2010 visual-studio-2012