NuGet 包 Microsoft.SqlServer.Compact 不复制本机 DLL
NuGet package Microsoft.SqlServer.Compact does not copy native DLLs
我创建了一个 .NET Framework 4.8 C# Class 库项目,它使用 x64 作为 TargetFramework。
我已将 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>
在我这边,它运行良好,我有 OutputPath\amd64
包含 nuget 包的目录。
因此,请尝试按照以下步骤解决问题:
1) clean nuget caches先删除或者直接删除C:\Users\xxx\.nuget\packages
下的所有文件
也,删除<solution_folder>
下的packages
文件夹。
2) 运行 update-package -reinstall
在 Tools-->Nuget 包管理器下-->包管理器控制台
更新
因为你使用了PackageReference nuget management format,你无法得到你想要的那种格式,因为作者没有考虑PackageReference与nuget包的兼容性。
我这边,我用的是packages.config
nuget管理格式,然后就搞定了
要得到你想要的,你应该另外添加这些:
1) 在那个 nuget 包引用节点下添加这个 <GeneratePathProperty>true</GeneratePathProperty>
生成 msbuild 属性 调用 PkgMicrosoft_SqlServer_Compact
关于内容路径nupkg.
<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 command line-->添加这些:
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"
之后,重建以获得你想要的。
我创建了一个 .NET Framework 4.8 C# Class 库项目,它使用 x64 作为 TargetFramework。
我已将 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>
在我这边,它运行良好,我有 OutputPath\amd64
包含 nuget 包的目录。
因此,请尝试按照以下步骤解决问题:
1) clean nuget caches先删除或者直接删除C:\Users\xxx\.nuget\packages
也,删除<solution_folder>
下的packages
文件夹。
2) 运行 update-package -reinstall
在 Tools-->Nuget 包管理器下-->包管理器控制台
更新
因为你使用了PackageReference nuget management format,你无法得到你想要的那种格式,因为作者没有考虑PackageReference与nuget包的兼容性。
我这边,我用的是packages.config
nuget管理格式,然后就搞定了
要得到你想要的,你应该另外添加这些:
1) 在那个 nuget 包引用节点下添加这个 <GeneratePathProperty>true</GeneratePathProperty>
生成 msbuild 属性 调用 PkgMicrosoft_SqlServer_Compact
关于内容路径nupkg.
<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 command line-->添加这些:
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"
之后,重建以获得你想要的。