oliverbooth.dev/OliverBooth/OliverBooth.csproj

25 lines
656 B
XML
Raw Normal View History

2023-05-26 18:05:44 +00:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
</PropertyGroup>
<ItemGroup>
2023-08-03 23:38:15 +00:00
<Content Include="..\.dockerignore">
<Link>.dockerignore</Link>
</Content>
2023-05-26 18:05:44 +00:00
</ItemGroup>
2023-08-05 19:55:42 +00:00
<ItemGroup>
2023-08-06 14:56:08 +00:00
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.3"/>
2023-08-05 19:55:42 +00:00
</ItemGroup>
<ItemGroup>
2023-08-12 19:30:10 +00:00
<ProjectReference Include="..\OliverBooth.Common\OliverBooth.Common.csproj"/>
</ItemGroup>
2023-05-26 18:05:44 +00:00
</Project>