19 lines
458 B
XML
Raw Normal View History

2024-11-17 19:59:57 +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>
2024-11-17 20:55:39 +04:00
<ItemGroup>
<PackageReference Include="LibraryPlugin" Version="1.0.0" />
</ItemGroup>
2024-11-17 19:59:57 +04:00
<ItemGroup>
<Compile Update="FormMain.cs" />
</ItemGroup>
</Project>