mirror of
https://github.com/microsoft/regorus.git
synced 2026-08-05 02:16:11 +00:00
Bump up the versions to 0.9.0 to match the C# binding version. Also use central version management for C# projects Also fix clippy lint errors Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
27 lines
936 B
XML
27 lines
936 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFrameworks>net8.0</TargetFrameworks>
|
|
<RootNamespace>TestApp</RootNamespace>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<LangVersion>10.0</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<!-- Allow CI to append the version suffix for locally built packages -->
|
|
<RegorusPackageVersionSuffix Condition="'$(VersionSuffix)' != ''">-$(VersionSuffix)</RegorusPackageVersionSuffix>
|
|
<UseLocalRegorus Condition="'$(UseLocalRegorus)' == ''">false</UseLocalRegorus>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Condition="'$(UseLocalRegorus)' == 'true'">
|
|
<ProjectReference Include="../Regorus/Regorus.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(UseLocalRegorus)' != 'true'">
|
|
<PackageReference Include="Regorus" />
|
|
</ItemGroup>
|
|
</Project>
|