17 lines
446 B
XML
17 lines
446 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<UseWPF>true</UseWPF>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AvalonEdit" Version="6.3.0.90" />
|
|
<PackageReference Include="StackExchange.Redis" Version="2.8.16" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|