码迷,mamicode.com
首页 > Web开发 > 详细

[VS] - "包含了重复的“Content”项。.NET SDK 默认情况下包括你项目中的“Content”项。" 之解决

时间:2017-08-17 10:48:48      阅读:1301      评论:0      收藏:0      [点我收藏+]

标签:.net core   ted   flow   project   .com   net   项目文件   rom   code   

背景

VS 2017 升级至  VS 2017 v15.3 后,.Net Core 1.1 应用编译报错:

Error: 包含了重复的“Content”项。.NET SDK 默认情况下包括你项目中的“Content”项。
可以从项目文件中删除这些项,或者如果希望将其显示包含在项目文件中,则可以将“EnableDefaultContentItems”属性设置为“false”。

Error : Duplicate ‘Content‘ items were included. The .NET SDK includes ‘Content‘ items from your project directory by default.
You can either remove these items from your project file, or set the ‘EnableDefaultContentItems‘ property to ‘false‘ if you want to explicitly include them in your project file. 

解决

在 .csproj 项目文件中添加如下配置项,重启解决方案编译成功。

  <PropertyGroup>
    <EnableDefaultContentItems>false</EnableDefaultContentItems>
  </PropertyGroup>

参考资料

https://stackoverflow.com/a/45586177

[VS] - "包含了重复的“Content”项。.NET SDK 默认情况下包括你项目中的“Content”项。" 之解决

标签:.net core   ted   flow   project   .com   net   项目文件   rom   code   

原文地址:http://www.cnblogs.com/jinzesudawei/p/7376916.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!