2024-08-05 08:00:16 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<InvariantGlobalization>true</InvariantGlobalization>
|
|
|
|
<UserSecretsId>5272047f-41e7-4ae3-9da8-375d50b43476</UserSecretsId>
|
|
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
|
|
|
<DockerfileContext>.</DockerfileContext>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-08-12 09:18:19 +01:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.0-preview.6.24327.4" />
|
2024-08-05 08:00:16 +01:00
|
|
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.19.5" />
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|