【发布时间】:2016-07-05 23:42:42
【问题描述】:
我刚刚更新到 Azure Service Fabric 2.1.150 SDK,并注意到我在编译我的 Manifest (.sfproj) 项目时开始收到构建警告:
C:\Program File (x86)\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets(1820,5):
warning MSB3276: Found conflicts between different versions of the same dependent
assembly.
Please set the "AutoGenerateBindingRedirects" property to true in the project file.
For more information, see http://go.microsoft.com/fwlink/?inkId=294190.
我可以很容易地按照说明进行操作,并通过编辑 .sfproj 来防止出现警告:
<PropertyGroup Label="Globals">
<ProjectGuid>12dbad9d-346c-xxxx-xxxx-04ab65fb4cac</ProjectGuid>
<ProjectVersion>1.1</ProjectVersion>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
问题:为什么在 2.1.150 开始出现这种情况,我应该担心什么?
【问题讨论】:
标签: msbuild azure-service-fabric