- Added Program.cs to set up the web application with Serilog for logging, health check endpoints, and a placeholder admission endpoint. - Configured Kestrel server to use TLS 1.3 and handle client certificates appropriately. - Created StellaOps.Zastava.Webhook.csproj with necessary dependencies including Serilog and Polly. - Documented tasks in TASKS.md for the Zastava Webhook project, outlining current work and exit criteria for each task.
		
			
				
	
	
		
			30 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<Project Sdk="Microsoft.NET.Sdk.Web">
 | 
						|
  <PropertyGroup>
 | 
						|
    <TargetFramework>net10.0</TargetFramework>
 | 
						|
    <LangVersion>preview</LangVersion>
 | 
						|
    <Nullable>enable</Nullable>
 | 
						|
    <ImplicitUsings>enable</ImplicitUsings>
 | 
						|
    <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
 | 
						|
  </PropertyGroup>
 | 
						|
  <ItemGroup>
 | 
						|
    <PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.8" />
 | 
						|
    <PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.12.0" />
 | 
						|
    <PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.12.0" />
 | 
						|
    <PackageReference Include="OpenTelemetry.Instrumentation.Http" Version="1.12.0" />
 | 
						|
    <PackageReference Include="OpenTelemetry.Instrumentation.Runtime" Version="1.12.0" />
 | 
						|
    <PackageReference Include="Serilog.AspNetCore" Version="8.0.1" />
 | 
						|
    <PackageReference Include="Serilog.Sinks.Console" Version="5.0.1" />
 | 
						|
    <PackageReference Include="StackExchange.Redis" Version="2.8.24" />
 | 
						|
  </ItemGroup>
 | 
						|
  <ItemGroup>
 | 
						|
    <ProjectReference Include="..\StellaOps.Signer.Core\StellaOps.Signer.Core.csproj" />
 | 
						|
    <ProjectReference Include="..\StellaOps.Signer.Infrastructure\StellaOps.Signer.Infrastructure.csproj" />
 | 
						|
    <ProjectReference Include="..\..\StellaOps.Configuration\StellaOps.Configuration.csproj" />
 | 
						|
    <ProjectReference Include="..\..\StellaOps.DependencyInjection\StellaOps.DependencyInjection.csproj" />
 | 
						|
    <ProjectReference Include="..\..\StellaOps.Cryptography\StellaOps.Cryptography.csproj" />
 | 
						|
    <ProjectReference Include="..\..\StellaOps.Authority\StellaOps.Auth.Abstractions\StellaOps.Auth.Abstractions.csproj" />
 | 
						|
    <ProjectReference Include="..\..\StellaOps.Authority\StellaOps.Auth.Client\StellaOps.Auth.Client.csproj" />
 | 
						|
    <ProjectReference Include="..\..\StellaOps.Authority\StellaOps.Auth.ServerIntegration\StellaOps.Auth.ServerIntegration.csproj" />
 | 
						|
  </ItemGroup>
 | 
						|
</Project>
 |