dotnet pack命令以及nuspec文件不包括项目的DLL

时间:2018-09-13 02:50:36

标签: c# .net nuget .net-standard

我有一个名为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 packDebug)的情况下将项目的DLL包含在Nuget包中?

最后一件事:我不想使用Release命令

我在VSTS服务器(最近重命名为 Azure DevOps )上与Nuget一起玩够了,但我对这些构建服务器没有完全的控制权(我的经理有,但他似乎太忙了,无法关心它)。

总而言之,nuget pack对我来说不是一个选项。我想将nuget pack和一个dotnet pack文件一起使用。

谢谢

0 个答案:

没有答案