24 lines
		
	
	
		
			885 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			885 B
		
	
	
	
		
			XML
		
	
	
	
	
	
<Project Sdk="Microsoft.NET.Sdk.Web">
 | 
						|
 | 
						|
  <PropertyGroup>
 | 
						|
    <OutputType>Exe</OutputType>
 | 
						|
    <TargetFramework>net9.0</TargetFramework>
 | 
						|
    <ImplicitUsings>disable</ImplicitUsings>
 | 
						|
    <Nullable>enable</Nullable>
 | 
						|
    <RootNamespace>MyUniverse.Platforms.Server</RootNamespace>
 | 
						|
    <AssemblyName>MyUniverse</AssemblyName>
 | 
						|
  </PropertyGroup>
 | 
						|
 | 
						|
  <ItemGroup>
 | 
						|
    <ProjectReference Include="../../Engine/Engine.Integration/Engine.Integration.LiteNetLib/Engine.Integration.LiteNetLib.csproj" />
 | 
						|
    <ProjectReference Include="../../Shared/Shared.csproj" />
 | 
						|
  </ItemGroup>
 | 
						|
 | 
						|
  <ItemGroup>
 | 
						|
    <PackageReference Include="Microsoft.AspNetCore" Version="2.3.0" />
 | 
						|
    <PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks" Version="10.0.0-preview.5.25277.114" />
 | 
						|
    <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.2.1105" />
 | 
						|
  </ItemGroup>
 | 
						|
 | 
						|
</Project>
 |