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.
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <Project Sdk="Microsoft.NET.Sdk">
 | |
| 
 | |
|   <PropertyGroup>
 | |
|     <TargetFramework>net10.0</TargetFramework>
 | |
|     <LangVersion>preview</LangVersion>
 | |
|     <ImplicitUsings>enable</ImplicitUsings>
 | |
|     <Nullable>enable</Nullable>
 | |
|     <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
 | |
|     <OutputType>Exe</OutputType>
 | |
|     <IsPackable>false</IsPackable>
 | |
|     <UseConcelierTestInfra>false</UseConcelierTestInfra>
 | |
| 
 | |
|     <!-- To enable Microsoft.Testing.Platform, uncomment the following line. -->
 | |
|     <!-- <UseMicrosoftTestingPlatformRunner>true</UseMicrosoftTestingPlatformRunner> -->
 | |
|     <!-- Note: to use Microsoft.Testing.Platform correctly with dotnet test: -->
 | |
|     <!-- 1. You must add dotnet.config specifying the test runner to be Microsoft.Testing.Platform -->
 | |
|     <!-- 2. You must use .NET 10 SDK or later -->
 | |
|     <!-- For more information, see https://aka.ms/dotnet-test/mtp and https://xunit.net/docs/getting-started/v3/microsoft-testing-platform -->
 | |
|     <!-- To enable code coverage with Microsoft.Testing.Platform, add a package reference to Microsoft.Testing.Extensions.CodeCoverage -->
 | |
|     <!-- https://learn.microsoft.comdotnet/core/testing/microsoft-testing-platform-extensions-code-coverage -->
 | |
|   </PropertyGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
 | |
|     <PackageReference Include="xunit.v3" Version="3.0.0" />
 | |
|     <PackageReference Include="xunit.runner.visualstudio" Version="3.1.3" />
 | |
|   </ItemGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <Content Include="xunit.runner.json" CopyToOutputDirectory="PreserveNewest" />
 | |
|   </ItemGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <Using Include="Xunit" />
 | |
|   </ItemGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <ProjectReference Include="..\StellaOps.Aoc\StellaOps.Aoc.csproj" />
 | |
|   </ItemGroup>
 | |
| 
 | |
| </Project>
 |