16 lines
502 B
XML
16 lines
502 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>annotations</Nullable>
|
|
<Platforms>x64</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Dependencies\Xorog.Logger\Xorog.Logger.csproj" />
|
|
<ProjectReference Include="..\..\Dependencies\Xorog.UniversalExtensions\Xorog.UniversalExtensions.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|