mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-21 23:42:45 +01:00
30 lines
1010 B
XML
30 lines
1010 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<UserSecretsId>aspnet-Phantom.Server.Web-DF4010C9-78FB-43F0-89AE-24296A3DAEF7</UserSecretsId>
|
|
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Serilog.AspNetCore" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Phantom.Server.Database\Phantom.Server.Database.csproj" />
|
|
<ProjectReference Include="..\Phantom.Server.Services\Phantom.Server.Services.csproj" />
|
|
<ProjectReference Include="..\Phantom.Server.Web.Components\Phantom.Server.Web.Components.csproj" />
|
|
<ProjectReference Include="..\Phantom.Server.Web.Identity\Phantom.Server.Web.Identity.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|