我有一个名为ProjectName.Logging
且带有ProjectName.Logging.nuspec
文件的.NET Standard 2.0项目。
在我的项目的.csproj
中引用了此文件
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
<NuspecFile>ProjectName.Logging.nuspec</NuspecFile>
</PropertyGroup>
这是我的.nuspec
<?xml version="1.0"?>
<package >
<metadata>
<id>ProjectName.Logging</id>
<version>1.2.1</version>
<authors>Jérôme MEVEL</authors>
<description>Just a logging component</description>
<dependencies>
<dependency id="Dapper" version="1.50.5" />
<dependency id="Another.Project" version="1.1.1" />
<dependency id="Microsoft.Extensions.DependencyInjection" version="2.1.1" />
<dependency id="Microsoft.Extensions.Logging" version="2.1.1" />
<dependency id="Microsoft.Extensions.Logging.Abstractions" version="2.1.1" />
<dependency id="NLog" version="4.5.8" />
<dependency id="NLog.Extensions.Logging" version="1.2.1" />
<dependency id="NLog.Web.AspNetCore" version="4.6.0" />
<dependency id="System.Data.SqlClient" version="4.5.1" />
</dependencies>
</metadata>
<files>
<file src="bin\Release\netstandard2.0\ProjectName.Logging.dll" target="lib/netstandard2.0/ESHCloud.Logging.dll" />
<file src="ProjectName.Logging.targets" target="build/ProjectName.Logging.targets" />
<file src="NLog/Nlog.config" target="content/Nlog.config" />
</files>
</package>
如您所见,我手动添加了ProjectName.Logging.dll
文件,甚至还必须包含Release
,因为MsBuild变量$(Configuration)
的使用在我的{{1}中不起作用}文件。
我通过在项目目录中执行此命令来打包项目
.nuspec
并且如果我在运行dotnet pack --output C:/Nuget --force
命令时从<files>
中删除了.nuspec
元素,则我生成的Nuget包将完全为空。
另一方面,如果我运行dotnet pack
命令而没有一个dotnet pack
文件,则项目中绝对所有都将包含在Nuget中包。
那么.nuspec
命令有什么用?我不明白我在做什么错。
如何在无需指定配置(dotnet pack
或Debug
)的情况下将项目的DLL包含在Nuget包中?
最后一件事:我不想使用Release
命令。
我在VSTS服务器(最近重命名为 Azure DevOps )上与Nuget一起玩够了,但我对这些构建服务器没有完全的控制权(我的经理有,但他似乎太忙了,无法关心它)。
总而言之,nuget pack
对我来说不是一个选项。我想将nuget pack
和一个dotnet pack
文件一起使用。
谢谢