19 lines
588 B
XML
19 lines
588 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<Platforms>x64</Platforms>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<BaseOutputPath>$(SolutionDir)out</BaseOutputPath>
|
|
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
|
|
<Version>0.16.0</Version>
|
|
<UseWPF>true</UseWPF>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="NLog" Version="5.4.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|