28 lines
		
	
	
		
			880 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			880 B
		
	
	
	
		
			XML
		
	
	
	
	
	
| <Project Sdk="Microsoft.NET.Sdk.Web">
 | |
| 
 | |
|   <PropertyGroup>
 | |
|     <TargetFramework>net8.0</TargetFramework>
 | |
|     <Nullable>enable</Nullable>
 | |
|     <ImplicitUsings>enable</ImplicitUsings>
 | |
|     <GenerateDocumentationFile>True</GenerateDocumentationFile>
 | |
|   </PropertyGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <Compile Remove="Constants\**" />
 | |
|     <Content Remove="Constants\**" />
 | |
|     <EmbeddedResource Remove="Constants\**" />
 | |
|     <None Remove="Constants\**" />
 | |
|   </ItemGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <PackageReference Include="Blueprint.Logging" Version="0.0.1" />
 | |
|     <PackageReference Include="Microsoft.Extensions.Configuration.AzureAppConfiguration" Version="8.0.0" />
 | |
|   </ItemGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <ProjectReference Include="..\Core.Cerberos.Domain\Core.Cerberos.Domain.csproj" />
 | |
|     <ProjectReference Include="..\Core.Cerberos.Provider\Core.Cerberos.Provider.csproj" />
 | |
|   </ItemGroup>
 | |
| 
 | |
| </Project>
 | 
