我正在尝试构建一个安装了 Swagger 的项目。
这是我的 .csproj 配置:

<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
    <PropertyGroup>
      <ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them.  For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
    </PropertyGroup>
    <Error Condition="!Exists('..\packages\NSwag.MSBuild.11.15.3\build\NSwag.MSBuild.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\NSwag.MSBuild.11.15.3\build\NSwag.MSBuild.props'))" />
</Target>

<Target Name="BeforeBuild">
    <Exec Command="$(NSwagExe) run $(SolutionDir)webapi.nswag" />
</Target>
错误:

最佳答案

项目文件不导入 NSwag 构建任务。
因此,在构建时,$(NSwagExe) 扩展为空字符串,并且 msbuild 尝试运行命令的其余部分:

运行 C:\agent_work\8\s\Web\webapi.nswag

添加如下内容:

<ItemGroup>
    <PackageReference Include="NSwag.MSBuild" Version="11.12.9" />
</ItemGroup>

关于c# - 命令 "run C:\agent\_work\8\s\Web\webapi.nswag"退出,代码为 9009,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49243501/

10-12 02:59