-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBitcoinKernel.Interop.csproj
More file actions
37 lines (32 loc) · 1.41 KB
/
Copy pathBitcoinKernel.Interop.csproj
File metadata and controls
37 lines (32 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>BitcoinKernel</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
<ItemGroup>
<!-- Include native libraries for macOS -->
<None Include="..\..\native\osx-x64\libbitcoinkernel.dylib" Link="runtimes\osx-x64\native\libbitcoinkernel.dylib">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Pack>true</Pack>
<PackagePath>runtimes/osx-x64/native</PackagePath>
</None>
<None Include="..\..\native\linux-x64\libbitcoinkernel.so" Link="runtimes\linux-x64\native\libbitcoinkernel.so">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Pack>true</Pack>
<PackagePath>runtimes/linux-x64/native</PackagePath>
</None>
<!-- Include native libraries for Windows -->
<None Include="..\..\native\win-x64\bitcoinkernel.dll" Link="runtimes\win-x64\native\bitcoinkernel.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Pack>true</Pack>
<PackagePath>runtimes/win-x64/native</PackagePath>
</None>
</ItemGroup>
</Project>