mirror of
https://github.com/cccb/servicepoint.git
synced 2025-01-18 18:10:14 +01:00
28 lines
923 B
XML
28 lines
923 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<RootNamespace>lang_cs</RootNamespace>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\servicepoint2-binding-cs\ServicePoint2\ServicePoint2.csproj"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(Configuration)'=='Debug'">
|
|
<Content Include="..\..\target\debug\libservicepoint2.so" CopyToOutputDirectory="Always">
|
|
<Link>libservicepoint2.so</Link>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(Configuration)'=='Release'">
|
|
<Content Include="..\..\target\release\libservicepoint2.so" CopyToOutputDirectory="Always">
|
|
<Link>libservicepoint2.so</Link>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
</Project>
|