我从我的项目中创建了一个NuGet包。包的输出目录是解决方案目录。我想将其输出到特定目录。我在csproj文件和nuspec文件中尝试了一个目标。没有用。如何获取在指定文件夹中生成的包?
在我的.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('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
</Target>
在我的.nuspec中:
<?xml version="1.0"?>
<package >
<metadata>
<id>MyPackage.dll</id>
<version>1.0.0</version>
<authors>me</authors>
<owners>me</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Package description</description>
<releaseNotes>Summary of changes made in this release of the package.</releaseNotes>
<copyright>Copyright 2016</copyright>
<files>
<file src="bin\MyPackage.dll" target="C:\LocalPackageRepository" />
</files>
</metadata>
</package>
答案 0 :(得分:2)
在&#39; old&#39; NuGet的方式(您似乎使用它,检查this以获取有关新旧的信息)这可以通过使用您提到的.nuget \ NuGet.targets文件中的命令来实现。如果您将PackageOutputDir的行更改为以下,它将起作用。
<PackageOutputDir Condition="$(PackageOutputDir) == ''">C:\LocalPackageRepository</PackageOutputDir>
更好的方法是在.csproj中的PropertyGroup上设置一个属性,如下所示:
<PackageOutputDir>C:\LocalPackageRepository</PackageOutputDir>
在NuGet的新方法中,您可以将此密钥添加到NuGet.config文件中:
<add key="repositoryPath" value="C:\LocalPackageRepository" />
答案 1 :(得分:1)
不确定为什么全局配置设置对我不起作用,但是添加以下解决方案解决了我的问题:
Variable name: MyNugetsOutput
Variable value: D:\myteam\teampackages
<Target Name="CopyPackage" AfterTargets="Pack">
<Copy SourceFiles="$(OutputPath)\$(PackageId).$(PackageVersion).nupkg"
DestinationFolder="$(MyNugetsOutput)\$(PackageId).$(PackageVersion).nupkg" />
</Target>
当前我正在使用下面的代码,它比较简单,但是它将所有.nupkg文件复制到“本地”路径
<Target Name="AfterPack" AfterTargets="Pack">
<Exec Command="dotnet nuget push $(PackageOutputPath)*.nupkg --source Local" />
</Target>
答案 2 :(得分:0)
您无法从.nuspec文件执行此操作。您可以创建NuGet.Config文件并为所有解决方案定义全局包目录:
<configuration>
<config>
<add key="repositoryPath" value="C:\myteam\teampackages" />
</config>
...
</configuration>
这是在.nupkg文件之外完成的,并存储在您的配置文件下或子目录中,该子目录是包含您的解决方案的所有目录的父目录。有关此功能的详细信息,请参阅NuGet documentation。