2023-06-20 23:15:56 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2023-05-21 21:12:32 +02:00
|
|
|
|
|
|
|
<PropertyGroup>
|
2023-06-20 23:15:56 +02:00
|
|
|
<OutputType>Exe</OutputType>
|
2023-05-21 21:12:32 +02:00
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2023-06-20 23:15:56 +02:00
|
|
|
<Nullable>enable</Nullable>
|
2023-05-21 21:12:32 +02:00
|
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<Content Include="..\.dockerignore">
|
|
|
|
<Link>.dockerignore</Link>
|
|
|
|
</Content>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\Tranga\Tranga.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|