我正在尝试swagger-codegen为.NET Core生成Pet Store示例。当我尝试构建项目时,我看到了这个错误:
/home/username/test/src/IO.Swagger/IO.Swagger.xproj(7,5): error MSB4019:
The imported project "/usr/share/dotnet/sdk/1.0.4/Microsoft/VisualStudio/v14.0/
DotNet/Microsoft.DotNet.Props"
was not found. Confirm that the path in the <Import> declaration is correct,
and that the file exists on disk.
我跑的确切步骤是:
$ java -jar swagger-codegen-cli.jar generate -i
http://petstore.swagger.io/v2/swagger.json -l aspnetcore -o test/
$ cd test/
$ chmod +x build.sh
$ ./build.sh
版本:
$ dotnet --version
1.0.4
$ java -jar swagger-codegen-cli.jar version
2.2.3
看起来生成的.NET核心项目与我正在使用的.NET核心版本不兼容。如何轻松更新生成的项目以使其有效?
答案 0 :(得分:2)
我在阅读完这篇文章后找到了答案:https://docs.microsoft.com/en-us/dotnet/core/migration/#dotnet-migrate
答案是在包含dotnet migrate
的目录中运行.xproj
。这会创建一个.csproj
,可以无误地构建。