NuGet 包 Microsoft.SqlServer.Compact 不复制本机 DLL

Mis*_*ray 1 sql-server-ce visual-studio nuget c#-native-library

我创建了一个使用 x64 作为 TargetFramework 的 .NET Framework 4.8 C# 类库项目。

我已将 NuGet 包Microsoft.SqlServer.Compact添加到项目中。当我构建项目时,只有位于 \lib\net40 文件夹中的 System.Data.SqlServerCe.dll 文件被复制到输出文件夹中。

不会复制 NuGet 包的 NativeBinaries\amd64\ 目录中的文件。

但我需要它们位于 OutputPath\amd64 目录中。我需要进行哪些设置才能复制这些文件?

编辑

这是我的 csproj 文件的内容:

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProjectGuid>{409AD54E-75FD-419F-B5D7-D2368105B4A8}</ProjectGuid>
    <OutputType>Library</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>NuGetSQLTestClassLibraryNetFramework</RootNamespace>
    <AssemblyName>NuGetSQLTestClassLibraryNetFramework</AssemblyName>
    <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
    <FileAlignment>512</FileAlignment>
    <Deterministic>true</Deterministic>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>bin\Debug\</OutputPath>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <PlatformTarget>x64</PlatformTarget>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>bin\Release\</OutputPath>
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.Core" />
    <Reference Include="System.Xml.Linq" />
    <Reference Include="System.Data.DataSetExtensions" />
    <Reference Include="Microsoft.CSharp" />
    <Reference Include="System.Data" />
    <Reference Include="System.Net.Http" />
    <Reference Include="System.Xml" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Class1.cs" />
    <Compile Include="Properties\AssemblyInfo.cs" />
  </ItemGroup>
  <ItemGroup>
    <PackageReference Include="Microsoft.SqlServer.Compact">
      <Version>4.0.8876.1</Version>
    </PackageReference>
  </ItemGroup>
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
Run Code Online (Sandbox Code Playgroud)

Sar*_*SFT 5

在我这边,它运行良好,并且我有OutputPath\amd64包含 nuget 包的目录。

在此输入图像描述

因此,请尝试以下步骤来解决该问题:

1) 首先清理nuget缓存或者只删除下面的所有文件C:\Users\xxx\.nuget\packages

另外,删除packages下的文件夹<solution_folder>

2)update-package -reinstall工具--> Nuget包管理器-->包管理器控制台下运行

更新

由于您使用了PackageReference nuget 管理格式,并且无法以该格式获得您想要的内容,因为作者没有考虑 PackageReference 与 nuget 包的兼容性。

在我这边,我使用了packages.confignuget 管理格式,然后得到了它。

为了得到你想要的,你应该额外添加这些:

1)<GeneratePathProperty>true</GeneratePathProperty>在 nuget 包引用节点下添加此属性,以生成PkgMicrosoft_SqlServer_Compact有关 nupkg 内容路径的 msbuild 属性。

<ItemGroup>
    <PackageReference Include="Microsoft.SqlServer.Compact">
      <Version>4.0.8876.1</Version>
      <GeneratePathProperty>true</GeneratePathProperty>
    </PackageReference>
  </ItemGroup>
Run Code Online (Sandbox Code Playgroud)

2)右键单击项目属性-->构建事件-->构建后事件命令行-->添加这些:

 if not exist "$(TargetDir)x86" md "$(TargetDir)x86"
    xcopy /s /y "$(PkgMicrosoft_SqlServer_Compact)\NativeBinaries\x86\*.*" "$(TargetDir)x86"
    if not exist "$(TargetDir)amd64" md "$(TargetDir)amd64"
    xcopy /s /y "$(PkgMicrosoft_SqlServer_Compact)\NativeBinaries\amd64\*.*" "$(TargetDir)amd64"
Run Code Online (Sandbox Code Playgroud)

之后,重建以获得你想要的。