58 lines
1.8 KiB
XML
58 lines
1.8 KiB
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>
|
|||
|
<None Remove="nlog.config" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Content Include="nlog.config">
|
|||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|||
|
</Content>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
|
|||
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
|
|||
|
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.12" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\SoftwareInstallationBusinessLogic\SoftwareInstallationBusinessLogic.csproj" />
|
|||
|
<ProjectReference Include="..\SoftwareInstallationContracts\SoftwareInstallationContracts.csproj" />
|
|||
|
<ProjectReference Include="..\SoftwareInstallationDataModel\SoftwareInstallationDataModel.csproj" />
|
|||
|
<ProjectReference Include="..\SoftwareInstallationListImplement\SoftwareInstallationListImplement.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Compile Update="FormComponent.cs">
|
|||
|
<SubType>Form</SubType>
|
|||
|
</Compile>
|
|||
|
<Compile Update="FormComponents.cs">
|
|||
|
<SubType>Form</SubType>
|
|||
|
</Compile>
|
|||
|
<Compile Update="FormCreateOrder.cs">
|
|||
|
<SubType>Form</SubType>
|
|||
|
</Compile>
|
|||
|
<Compile Update="FormMain.cs">
|
|||
|
<SubType>Form</SubType>
|
|||
|
</Compile>
|
|||
|
<Compile Update="FormPackage.cs">
|
|||
|
<SubType>Form</SubType>
|
|||
|
</Compile>
|
|||
|
<Compile Update="FormPackageComponent.cs">
|
|||
|
<SubType>Form</SubType>
|
|||
|
</Compile>
|
|||
|
<Compile Update="FormPackages.cs">
|
|||
|
<SubType>Form</SubType>
|
|||
|
</Compile>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|