28 lines
		
	
	
		
			893 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			893 B
		
	
	
	
		
			XML
		
	
	
	
	
	
| <Project Sdk="Microsoft.NET.Sdk.Web">
 | |
| 
 | |
|   <PropertyGroup>
 | |
|     <TargetFramework>net8.0</TargetFramework>
 | |
|     <Nullable>enable</Nullable>
 | |
|     <ImplicitUsings>enable</ImplicitUsings>
 | |
|     <GenerateDocumentationFile>True</GenerateDocumentationFile>
 | |
|   </PropertyGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <PackageReference Include="Core.Cerberos.Adapters" Version="0.3.0-alpha0042" />
 | |
|   </ItemGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <ProjectReference Include="..\Core.Cerberos.Application\Core.Cerberos.Application.csproj" />
 | |
|     <ProjectReference Include="..\Core.Cerberos.External\Core.Cerberos.External.csproj" />
 | |
|   </ItemGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <Content Update="appsettings.Local.json">
 | |
|       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
 | |
|       <ExcludeFromSingleFile>true</ExcludeFromSingleFile>
 | |
|       <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
 | |
|     </Content>
 | |
|   </ItemGroup>
 | |
| 
 | |
| </Project>
 | 
