29 lines
857 B
XML
29 lines
857 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0-windows7.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
|
|
<PackageReference Include="NLog" Version="5.3.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="FormComponent.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Update="FormMain.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Update="FormPackageComponent.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
</Project> |