mirror of
https://github.com/microsoft/regorus.git
synced 2026-08-05 02:16:11 +00:00
Update regorus core crate and all language bindings (ffi, java, python, wasm, ruby, csharp) to version 0.10.0. - Centralize C# package version via Directory.Packages.props - Remove redundant C# version suffix properties from project files - Regenerate all binding Cargo.lock files including Ruby - Fix xtask to read/write RegorusPackageVersion from Directory.Packages.props instead of parsing VersionPrefix from the csproj (which now uses an MSBuild property indirection) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
30 lines
851 B
XML
30 lines
851 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<UsePackageReference Condition="'$(UsePackageReference)' == ''">false</UsePackageReference>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Condition="'$(UsePackageReference)' != 'true'">
|
|
<ProjectReference Include="../Regorus/Regorus.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(UsePackageReference)' == 'true'">
|
|
<PackageReference Include="Microsoft.Regorus" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="azure_policy.target.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
</Project>
|