13 lines
317 B
XML
13 lines
317 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<OutputType>Exe</OutputType>
|
||
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<Content Include="*.so" CopyToOutputDirectory="PreserveNewest" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
</Project>
|