DotNet CLI发布命令以包含来自其他NuGet来源的软件包

时间:2019-06-07 15:36:31

标签: teamcity asp.net-core-2.0 dotnet-publish

对于我的.Net Core项目之一,我有一个BuldProject.cmd CLI,它可以发布项目。我使用的CLI命令是

dotnet publish --framework %DotNetCoreVersionToTarget% --configuration %ConfigurationModeToUse% --force --verbosity normal

以上命令可使用Teamcity构建服务器很好地构建项目。

最近我不是从

向我的项目中添加了DLL
  

nuget.org

但从我的其他消息来源得知

  

nuget.mypack.com/nuget

csproj 文件具有新DLL的条目

<ItemGroup>
<PackageReference Include="TestCoreAPI" Version="1.0.1" />
</ItemGroup>

现在,当我使用TeamCity部署项目时,出现以下错误

 error NU1101: Unable to find package TestCoreAPI. No packages exist with this id in source(s): nuget.org

我看到的问题是,它总是在nuget.org中查找软件包。 如何修改BuldProject.cmd CLI来查找其他NuGet源?

0 个答案:

没有答案