我在Windows 10盒子上使用Visual Studio 2017社區。msbuild builderror for .net標準庫
當我添加一個.NET標準庫(只是默認編碼),以我的解決方案的解決方案建立在Visual Studio就好了2017年
但是當我嘗試建立使用 &「C的解決方案:\程序文件(x86)\的MSBuild \ 14.0 \斌\ msbuild.exe」 C:_SOURCES \ MySolution \ MyProject的\ MyProject.csproj
我得到一個生成錯誤:
error MSB4041: The default XML namespace of the project must be the MSBuild XML namespace. If t he project is authored in the MSBuild 2003 format, please add xmlns="http://schemas.microsoft.com/developer/msbuild/2003" to the element. If the pro ject has been authored in the old 1.0 or 1.2 format, please convert it to MSBuild 2003 format
它類似於this bugreport但我在無線上ndows,所以這似乎並不適用於我。
的的csproj文件內容:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard1.4</TargetFramework>
</PropertyGroup>
</Project>
我試圖升級它netstandard1.6但這並沒有幫助。