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>
|
|
|
|
|
<Version>0.2.0</Version>
|
|
|
|
|
<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>
|
|
|
|
|
|
2024-05-13 21:39:16 +02:00
|
|
|
|
<Target Name="BuildLibrary" Condition="'$(Configuration)'=='Release'" BeforeTargets="PrepareForBuild">
|
|
|
|
|
<Exec Command="cargo build --manifest-path ../../servicepoint2/Cargo.toml --all-features --release"/>
|
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
|
|
<Target Name="BuildLibrary" Condition="'$(Configuration)'=='Debug'" BeforeTargets="PrepareForBuild">
|
|
|
|
|
<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="PrepareForBuild">
|
|
|
|
|
<Exec Command="cargo build --release"/>
|
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
|
|
<Target Name="BuildBindings" Condition="'$(Configuration)'=='Debug'" BeforeTargets="PrepareForBuild">
|
|
|
|
|
<Exec Command="cargo build"/>
|
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
|
|
<ItemGroup Condition="'$(Configuration)'=='Debug'">
|
|
|
|
|
<Content Include="../../servicepoint2/target/debug/libservicepoint2.so" CopyToOutputDirectory="Always">
|
|
|
|
|
<Link>libservicepoint2.so</Link>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup Condition="'$(Configuration)'=='Release'">
|
|
|
|
|
<Content Include="../../servicepoint2/target/release/libservicepoint2.so" CopyToOutputDirectory="Always">
|
|
|
|
|
<Link>libservicepoint2.so</Link>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-05-13 21:39:16 +02:00
|
|
|
|
<!-- 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>
|
|
|
|
|
|
2024-05-13 21:39:16 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="..\build.rs">
|
|
|
|
|
<Link>build.rs</Link>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-05-13 21:17:20 +02:00
|
|
|
|
</Project>
|