mirror of
https://github.com/microsoft/regorus.git
synced 2026-08-05 02:16:11 +00:00
- add Azure RBAC condition interpreter and builtin evaluation in core (expressions, parser updates, evaluator, and test harness) - introduce comprehensive RBAC YAML test suites and coverage for i - action/suboperation - strings - numbers - bools - IP - GUID - dates - times - lists - quantifiers (ForAnyOfAnyValues, ForAllOfAllValues) - expose RBAC evaluation through FFI with an `rbac` feature flag enabled by default - add C# `RbacEngine` wrapper + P/Invoke entrypoint and document usage in C# README - expand C# tests to execute all RBAC YAML cases with per-case logging - wire test assets into C# test output and centralize YAML dependency versions Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
16 lines
698 B
XML
16 lines
698 B
XML
<Project>
|
|
<PropertyGroup>
|
|
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
|
|
<RegorusPackageVersion>0.9.1</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" />
|
|
<PackageVersion Include="YamlDotNet" Version="13.7.0" />
|
|
</ItemGroup>
|
|
</Project>
|