我正在开发的.NET Core(dotnet核心)项目带有一堆类库作为Web项目。他们有web.configs,launchSettings.json等......我正在使用VS 2015。
我已经将projectname.xproj文件与类库projectname.xproj文件进行了比较,但它没有跳出来,我有什么区别。
我尝试删除web.config并删除launchSettings.json文件。那没有做到。我还从xproj文件中删除了这些属性组,似乎表明:
<table style="width:100%;">
<tr>
<td style="width:30%;">
{label}
</td>
<td>
<div style="width:100%;border-top:1px solid;border-bottom:1px solid;line-height:{cssValue}">
<i class="fa fa-arrows-v" aria-hidden="true" style="font-size:{cssValue}"></i>abcdefghijkl
</div>
</td>
</tr>
</table>
This is the correct question用于在旧的csproj文件中执行相同的操作。
答案 0 :(得分:0)
我想我明白了。我忽略了xproj文件的一部分:
<Import Project="$(VSToolsPath)\DotNet.Web\Microsoft.DotNet.Web.targets" Condition="'$(VSToolsPath)' != ''" />
只需改为:
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.targets" Condition="'$(VSToolsPath)' != ''" />