2023-11-30 21:05:37 +04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2023-12-01 00:26:39 +04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="System.Text.Encoding.CodePages" Version="7.0.0" />
|
|
|
|
|
<PackageReference Include="System.Text.Encodings.Web" Version="7.0.0" />
|
|
|
|
|
<PackageReference Include="System.Text.Json" Version="7.0.3" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\PluginsConventionLibrary\PluginsConventionLibrary.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-11-30 21:05:37 +04:00
|
|
|
|
</Project>
|