CtrEditor/CtrEditor.csproj

18 lines
530 B
XML
Raw Normal View History

2024-05-01 14:45:20 -03:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
2024-05-03 05:13:25 -03:00
<TargetFramework>net8.0-windows8.0</TargetFramework>
2024-05-01 14:45:20 -03:00
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
</PropertyGroup>
2024-05-02 11:06:45 -03:00
<ItemGroup>
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.77" />
2024-05-02 11:06:45 -03:00
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Ookii.Dialogs.Wpf" Version="5.0.1" />
</ItemGroup>
2024-05-01 14:45:20 -03:00
</Project>