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>
15 lines
637 B
XML
15 lines
637 B
XML
<Project>
|
|
<PropertyGroup>
|
|
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
|
|
<RegorusPackageVersion>0.9.0</RegorusPackageVersion>
|
|
<RegorusPackageVersionSuffix Condition="'$(VersionSuffix)' != ''">-$(VersionSuffix)</RegorusPackageVersionSuffix>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- Centralize Regorus package version with optional CI suffix -->
|
|
<PackageVersion Include="Regorus" Version="$(RegorusPackageVersion)$(RegorusPackageVersionSuffix)" />
|
|
<PackageVersion Include="MSTest" Version="3.8.2" />
|
|
<PackageVersion Include="System.Text.Json" Version="8.0.5" />
|
|
</ItemGroup>
|
|
</Project>
|