为 net461 创建 Nuget,将内容复制到输出

Create Nuget for net461 with content copy to output

我创建了一个针对 .NET Core 项目的 nuget 包。 这里的想法是添加 xxx.dll 作为参考,并将 copy local as false 并复制输出路径中子文件夹中的所有 DLL 和 subfolder\resources

中的所有资源文件

针对 NET Core 3 的 nuspec 工作正常。

现在我想对 NET Framework 4.6.1 执行相同的操作。

但是内容文件没有添加到项目中。 这是我的 nuspec 文件:

<?xml version="1.0"?>
<package  xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
  <metadata>    
    <id>xxx.Win.x64.ForIPS11</id>
    <version>15.5.3.4</version>
    <title>xxx toolkit</title>
    <authors>xxx Team</authors>
    <owners>xxx</owners>
    <requireLicenseAcceptance>false</requireLicenseAcceptance>
    <description>xxx 15.5.3.4 x64 Windows to .NETFramework 4.6.1 for IPS 11</description>
    <releaseNotes></releaseNotes>
    <copyright>2020</copyright>
    <tags></tags>
    <dependencies>
      <group targetFramework=".NETFramework4.6.1" />
    </dependencies>
    <contentFiles>
        <files include="**\subfolder\resources\*.*"  buildAction="Content" copyToOutput="true" />
        <files include="**\subfolder\*.dll" buildAction="Content" copyToOutput="true" />
    </contentFiles>
  </metadata>
  <files>
    <file src="bin\xxx.dll" target="lib\net461" />
    <file src="resources\*.*" target="contentFiles\any\any\subfolder\resources"  />
    <file src="bin\*.dll" target="contentFiles\any\any\subfolder" />    
  </files>
</package>

我是否为 .NET Framework 目标使用了不兼容的标记? 知道如何完成这项工作吗?

编辑:我在目标项目的 VS2017 中使用 packages.config 文件

contentFiles 与 packages.config 方式不兼容

这是一个替代方案:

Nuspec 文件:

<?xml version="1.0"?>
<package  xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
  <metadata>    
    <id>xxx.Win.x64.ForIPS11</id>
    <version>0.0.0</version>
    <title>xxx toolkit</title>
    <authors>xxx Team</authors>
    <owners>xxx</owners>
    <requireLicenseAcceptance>false</requireLicenseAcceptance>
    <description>xxx 0.0.0 x64 Windows to .NETFramework 4.6.1</description>
    <releaseNotes></releaseNotes>
    <copyright>2020</copyright>
    <dependencies>
       <group targetFramework=".NETFramework4.6.1" />
    </dependencies>
    <tags></tags>
  </metadata>
  <files>
    <file src="bin\xxx.dll" target="lib\net461" />
    <file src="resources\*.*" target="build\subfolder\resources"  />
    <file src="bin\*.dll" target="build\subfolder" />
    <file src="xxx.Win.x64.targets" target="build" />
    <file src="install.ps1" target="tools" />
  </files>
 </package>

xxx.Win.x64.targets 将子文件夹复制到输出

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <ItemGroup>
    <NativeLibs Include="$(MSBuildThisFileDirectory)**\*.*" />
    <None Include="@(NativeLibs)">
      <Link>%(RecursiveDir)%(FileName)%(Extension)</Link>
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </None>
  </ItemGroup>
</Project>

并安装。ps1 将复制本地错误标记为引用

param($installPath, $toolsPath, $package, $project)
$asms = $package.AssemblyReferences | %{$_.Name} 
foreach ($reference in $project.Object.References) 
{
    if ($asms -contains $reference.Name + ".dll") 
    {
        $reference.CopyLocal = $false;
    }
}