NuGet 包 Microsoft.SqlServer.Compact 不复制本机 DLL
Posted
技术标签:
【中文标题】NuGet 包 Microsoft.SqlServer.Compact 不复制本机 DLL【英文标题】:NuGet package Microsoft.SqlServer.Compact does not copy native DLLs 【发布时间】:2021-04-12 11:59:13 【问题描述】:我创建了一个使用 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>
【问题讨论】:
您使用的是经典项目类型吗?否则你必须手动修复 @ErikEJ 是的,我使用的是经典项目类型:在我这边,它运行良好,我有带有 nuget 包的 OutputPath\amd64
目录。
所以请尝试以下步骤来解决问题:
1)先clean nuget caches或者直接删除C:\Users\xxx\.nuget\packages
下的所有文件
另外,删除<solution_folder>
下的packages
文件夹。
2) 在工具-->Nuget 包管理器-->包管理器控制台下运行update-package -reinstall
>
更新
由于您使用了PackageReference nuget management format,但由于作者没有考虑 PackageReference 与 nuget 包的兼容性,因此您无法以该格式获得所需的内容。
在我这边,我使用packages.config
nuget管理格式,然后就搞定了。
要得到你想要的,你应该额外添加这些:
1) 在该 nuget 包引用节点下添加此 <GeneratePathProperty>true</GeneratePathProperty>
,以生成名为 PkgMicrosoft_SqlServer_Compact
的关于 nupkg 内容路径的 msbuild 属性。
<ItemGroup>
<PackageReference Include="Microsoft.SqlServer.Compact">
<Version>4.0.8876.1</Version>
<GeneratePathProperty>true</GeneratePathProperty>
</PackageReference>
</ItemGroup>
2)右键单击Proeject Properties-->Build Events-->post-build event命令行-->添加这些:
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"
之后,重建以获得你想要的。
【讨论】:
嗨@sara-liu-msft:很高兴看到原则上它应该可以工作。为了更好地理解,我在原始问题中添加了我的 csproj 文件的内容。不幸的是,我的输出文件夹仍然只包含 System.Data.SqlServerCe.dll 哦。您已使用 PackageReference nuget 包管理格式,但该格式无法获得该格式。由于nuget包的作者没有考虑packagereference和nuget包的兼容性。我使用 packages.config nuget 管理格式。我已经更新了我的答案,你可以检查一下。以上是关于NuGet 包 Microsoft.SqlServer.Compact 不复制本机 DLL的主要内容,如果未能解决你的问题,请参考以下文章