mirror of
https://github.com/CyberL1/MyMcRealms.git
synced 2024-11-14 10:28:21 -05:00
24 lines
984 B
XML
24 lines
984 B
XML
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>net8.0</TargetFramework>
|
||
|
<Nullable>enable</Nullable>
|
||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
<InvariantGlobalization>true</InvariantGlobalization>
|
||
|
<RootNamespace>Minecraft_Realms_Emulator</RootNamespace>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="DotNetEnv" Version="3.0.0" />
|
||
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.4" />
|
||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.4">
|
||
|
<PrivateAssets>all</PrivateAssets>
|
||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||
|
</PackageReference>
|
||
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
||
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.2" />
|
||
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|