e8795ff105
Add MSBuild targets for net46 target framework which copy both x86 and x64 libsodium binaries into corresponding folders. This allows AnyCPU applications to load the appropriate binary at runtime via `LoadLibraryEx`.
29 lines
1.3 KiB
XML
29 lines
1.3 KiB
XML
<?xml version="1.0"?>
|
|
<Project>
|
|
<PropertyGroup>
|
|
<TargetFrameworks>netstandard1.1;net46</TargetFrameworks>
|
|
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
|
|
<NoBuild>true</NoBuild>
|
|
<IncludeBuildOutput>false</IncludeBuildOutput>
|
|
<PackageOutputPath>$(MSBuildProjectDirectory)</PackageOutputPath>
|
|
<ProjectFileToPack>$(MSBuildProjectFullPath)</ProjectFileToPack>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<PackageId>libsodium</PackageId>
|
|
<Version><!-- set by prepare.py --></Version>
|
|
<Authors>Frank Denis</Authors>
|
|
<Description>Internal implementation package not meant for direct consumption. Please do not reference directly.</Description>
|
|
<Copyright>© 2013-2017 Frank Denis</Copyright>
|
|
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
|
<PackageLicenseUrl>https://raw.githubusercontent.com/jedisct1/libsodium/master/LICENSE</PackageLicenseUrl>
|
|
<PackageProjectUrl>https://libsodium.org/</PackageProjectUrl>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Content Include="LICENSE" PackagePath="" />
|
|
<Content Include="AUTHORS" PackagePath="" />
|
|
<Content Include="ChangeLog" PackagePath="" />
|
|
<Content Include="runtimes\**\*.*" PackagePath="runtimes\" />
|
|
<Content Include="build\**\*.*" PackagePath="build\" />
|
|
</ItemGroup>
|
|
</Project>
|