49 lines
2.1 KiB
XML
49 lines
2.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<LangVersion>11</LangVersion>
|
|
<Version>3.0.0-alpha</Version>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="CertificateManager" Version="1.0.8" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.2" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.2">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="7.0.3" />
|
|
<PackageReference Include="Serilog.AspNetCore" Version="6.1.1-dev-00293" />
|
|
<PackageReference Include="Serilog.Expressions" Version="3.4.2-dev-00119" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
|
|
<PackageReference Include="System.Security.Cryptography.X509Certificates" Version="4.3.2" />
|
|
<PackageReference Include="Throw" Version="1.3.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Remove="Configurations\database.json" />
|
|
<None Include="Configurations\database.json" />
|
|
<Content Remove="Configurations\events.json" />
|
|
<None Include="Configurations\events.json" />
|
|
<Content Remove="Configurations\game.json" />
|
|
<None Include="Configurations\game.json" />
|
|
<Content Remove="Configurations\logging.json" />
|
|
<None Include="Configurations\logging.json" />
|
|
<Content Remove="Configurations\matching.json" />
|
|
<None Include="Configurations\matching.json" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Infrastructure\Infrastructure.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Controllers\API" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|