35 lines
1.8 KiB
XML
Raw Normal View History

2024-02-14 09:06:45 +04:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
2024-04-29 13:44:53 +04:00
<InvariantGlobalization>false</InvariantGlobalization>
2024-02-14 09:06:45 +04:00
</PropertyGroup>
2024-02-27 23:44:38 +04:00
<ItemGroup>
2024-04-29 13:44:53 +04:00
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.17">
2024-03-26 15:23:03 +04:00
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
2024-04-29 13:44:53 +04:00
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.17">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
2024-02-27 23:44:38 +04:00
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" />
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.8" />
2024-04-29 13:44:53 +04:00
<PackageReference Include="ReportViewerCore.WinForms" Version="15.1.19" />
2024-02-27 23:44:38 +04:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SoftwareInstallationBusinessLogic\SoftwareInstallationBusinessLogic.csproj" />
<ProjectReference Include="..\SoftwareInstallationContracts\SoftwareInstallationContracts.csproj" />
2024-03-26 15:23:03 +04:00
<ProjectReference Include="..\SoftwareInstallationDatabaseImplement\SoftwareInstallationDatabaseImplement.csproj" />
2024-03-13 08:34:03 +04:00
<ProjectReference Include="..\SoftwareInstallationFileImplement\SoftwareInstallationFileImplement.csproj" />
2024-02-27 23:44:38 +04:00
<ProjectReference Include="..\SoftwareInstallationListImplement\SoftwareInstallationListImplement.csproj" />
</ItemGroup>
2024-02-14 09:06:45 +04:00
</Project>