 4bd71a5889
			
		
	
	4bd71a5889
	
	
	
		
			
			* rework server to send download ready back via signalr * adjust queue handling for removal * adjust api to main Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com>
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.4 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="Grpc.AspNetCore" Version="2.50.0" />
 | |
|     <PackageReference Include="Grpc.Net.Client" Version="2.50.0" />
 | |
|     <PackageReference Include="Meziantou.Analyzer" Version="1.0.757">
 | |
|       <PrivateAssets>all</PrivateAssets>
 | |
|       <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
 | |
|     </PackageReference>
 | |
|     <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="7.0.1" />
 | |
|     <PackageReference Include="Microsoft.AspNetCore.SignalR.StackExchangeRedis" Version="7.0.2" />
 | |
|     <PackageReference Include="Microsoft.Extensions.Hosting.Systemd" Version="7.0.0" />
 | |
|     <PackageReference Include="prometheus-net.AspNetCore" Version="7.0.0" />
 | |
|   </ItemGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <ProjectReference Include="..\..\MareAPI\MareSynchronosAPI\MareSynchronos.API.csproj" />
 | |
|     <ProjectReference Include="..\MareSynchronosShared\MareSynchronosShared.csproj" />
 | |
|   </ItemGroup>
 | |
| 
 | |
| </Project>
 |