Net Standard Library - 将文件添加到'dotnet pack'上的nuget内容文件夹

时间:2018-05-18 22:26:15

标签: nuget .net-standard-2.0

是否有自动方式在使用dotnet pack命令时创建的nuget包中包含配置转换文件?

1 个答案:

答案 0 :(得分:0)

我能够通过在类库项目中添加xdt转换文件,然后编辑csproj文件来获得此ItemGroup来实现此目的。

 <ItemGroup>
    <Content Include="app.config.uninstall.xdt" />
    <Content Include="app.config.install.xdt" />
  </ItemGroup>

在执行dotnet包时,会自动将它们添加到nuget包的内容文件夹中。