35 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <Project Sdk="Microsoft.NET.Sdk.Web">
 | |
| 
 | |
|   <PropertyGroup>
 | |
|     <TargetFramework>net7.0</TargetFramework>
 | |
|     <ImplicitUsings>enable</ImplicitUsings>
 | |
|   </PropertyGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <Content Remove="appsettings.Development.json" />
 | |
|     <Content Remove="appsettings.json" />
 | |
|   </ItemGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <None Include="appsettings.Development.json" />
 | |
|     <None Include="appsettings.json">
 | |
|       <CopyToOutputDirectory>Never</CopyToOutputDirectory>
 | |
|     </None>
 | |
|   </ItemGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <PackageReference Include="lz4net" Version="1.0.15.93" />
 | |
|     <PackageReference Include="Meziantou.Analyzer" Version="2.0.49">
 | |
|       <PrivateAssets>all</PrivateAssets>
 | |
|       <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
 | |
|     </PackageReference>
 | |
|     <PackageReference Include="Microsoft.Extensions.Hosting.Systemd" Version="7.0.0" />
 | |
|   </ItemGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <ProjectReference Include="..\..\MareAPI\MareSynchronosAPI\MareSynchronos.API.csproj" />
 | |
|     <ProjectReference Include="..\MareSynchronosShared\MareSynchronosShared.csproj" />
 | |
|   </ItemGroup>
 | |
| 
 | |
| </Project>
 | 
