29 lines
1.0 KiB
XML
29 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<LangVersion>preview</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" />
|
|
<PackageReference Include="Newtonsoft.Json" />
|
|
<PackageReference Include="NJsonSchema" />
|
|
<PackageReference Include="NJsonSchema.CodeGeneration.CSharp" />
|
|
<PackageReference Include="NJsonSchema.NewtonsoftJson" />
|
|
<PackageReference Include="System.CommandLine" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<InternalsVisibleTo Include="StellaOps.Policy.Tools.Tests" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Policy\__Libraries\StellaOps.Policy\StellaOps.Policy.csproj" />
|
|
<ProjectReference Include="..\..\JobEngine\StellaOps.Scheduler.__Libraries\StellaOps.Scheduler.Models\StellaOps.Scheduler.Models.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|