servicepoint/servicepoint2-binding-cs/src/ServicePoint2.csproj

71 lines
2.8 KiB
XML
Raw Normal View History

2024-05-13 21:17:20 +02:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DisableFastUpToDateCheck>true</DisableFastUpToDateCheck>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup>
<PackageId>ServicePoint2</PackageId>
2024-05-15 23:17:52 +02:00
<Version>0.3.0</Version>
2024-05-13 21:17:20 +02:00
<Authors>Repository Authors</Authors>
<Company>None</Company>
<Product>ServicePoint2</Product>
<PackageTags>CCCB</PackageTags>
<Description>
C# bindings for the rust crate servicepoint2. You will need a suitable native shared library to use this.
For documentation, see the rust documentation: https://docs.rs/servicepoint2/latest/servicepoint2/.
Note that this library is still in early development. Breaking changes are expected before 1.0 is released.
</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
</PropertyGroup>
<Target Name="BuildLibrary" Condition="'$(Configuration)'=='Release'" BeforeTargets="Build">
<Exec Command="cargo build --manifest-path ../../servicepoint2/Cargo.toml --all-features --release"/>
</Target>
<Target Name="BuildLibrary" Condition="'$(Configuration)'=='Debug'" BeforeTargets="Build">
<Exec Command="cargo build --manifest-path ../../servicepoint2/Cargo.toml --all-features"/>
</Target>
2024-05-13 21:17:20 +02:00
<Target Name="BuildBindings" Condition="'$(Configuration)'=='Release'" BeforeTargets="Build">
2024-05-13 21:17:20 +02:00
<Exec Command="cargo build --release"/>
</Target>
<Target Name="BuildBindings" Condition="'$(Configuration)'=='Debug'" BeforeTargets="Build">
2024-05-13 21:17:20 +02:00
<Exec Command="cargo build"/>
</Target>
<ItemGroup Condition="'$(Configuration)'=='Debug'">
2024-05-16 23:38:35 +02:00
<Content Include="../../target/debug/libservicepoint2.so" CopyToOutputDirectory="Always">
2024-05-13 21:17:20 +02:00
<Link>libservicepoint2.so</Link>
</Content>
</ItemGroup>
<ItemGroup Condition="'$(Configuration)'=='Release'">
2024-05-16 23:38:35 +02:00
<Content Include="../../target/release/libservicepoint2.so" CopyToOutputDirectory="Always">
2024-05-13 21:17:20 +02:00
<Link>libservicepoint2.so</Link>
</Content>
</ItemGroup>
<ItemGroup>
<!-- include link to source code at revision -->
<None Include="../../README.md" Pack="true" PackagePath="\"/>
<!-- add README.md to package -->
2024-05-13 21:17:20 +02:00
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
</ItemGroup>
<ItemGroup>
<Content Include="..\build.rs">
<Link>build.rs</Link>
</Content>
</ItemGroup>
2024-05-13 21:17:20 +02:00
</Project>