Some checks failed
		
		
	
	Docs CI / lint-and-preview (push) Has been cancelled
				
			- Implemented PolicyDslValidator with command-line options for strict mode and JSON output. - Created PolicySchemaExporter to generate JSON schemas for policy-related models. - Developed PolicySimulationSmoke tool to validate policy simulations against expected outcomes. - Added project files and necessary dependencies for each tool. - Ensured proper error handling and usage instructions across tools.
		
			
				
	
	
		
			29 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <Project Sdk="Microsoft.NET.Sdk">
 | |
|   <PropertyGroup>
 | |
|     <TargetFramework>net10.0</TargetFramework>
 | |
|     <Nullable>enable</Nullable>
 | |
|     <ImplicitUsings>enable</ImplicitUsings>
 | |
|     <LangVersion>preview</LangVersion>
 | |
|     <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
 | |
|     <UseConcelierTestInfra>false</UseConcelierTestInfra>
 | |
|   </PropertyGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.0" />
 | |
|     <PackageReference Include="xunit" Version="2.9.2" />
 | |
|     <PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
 | |
|       <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
 | |
|       <PrivateAssets>all</PrivateAssets>
 | |
|     </PackageReference>
 | |
|     <PackageReference Include="coverlet.collector" Version="6.0.4">
 | |
|       <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
 | |
|       <PrivateAssets>all</PrivateAssets>
 | |
|     </PackageReference>
 | |
|     <PackageReference Include="EphemeralMongo" Version="3.0.0" />
 | |
|   </ItemGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <ProjectReference Include="..\StellaOps.Bench.LinkNotMerge\StellaOps.Bench.LinkNotMerge.csproj" />
 | |
|   </ItemGroup>
 | |
| </Project>
 |