ISEbd-21_Gavrilov_R.A._CarR.../CarRepairShop/CarRepairShopView/CarRepairShopView.csproj
2024-05-23 23:03:27 +04:00

70 lines
2.4 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</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.CodeAnalysis.Common" Version="4.8.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.11" />
<PackageReference Include="ReportViewerCore.WinForms" Version="15.1.19" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CarRepairShopBusinessLogic\CarRepairShopBusinessLogic.csproj" />
<ProjectReference Include="..\CarRepairShopContracts\CarRepairShopContracts.csproj" />
<ProjectReference Include="..\CarRepairShopDatabaseImplement\CarRepairShopDatabaseImplement.csproj" />
<ProjectReference Include="..\CarRepairShopFileImplement\CarRepairShopFileImplement.csproj" />
<ProjectReference Include="..\CarRepairShopListImplement\CarRepairShopListImplement.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="FormRepair.cs">
<SubType>Form</SubType>
</Compile>
<Compile Update="FormRepairComponent.cs">
<SubType>Form</SubType>
</Compile>
<Compile Update="FormRepairs.cs">
<SubType>Form</SubType>
</Compile>
<Compile Update="FormReportOrders.cs">
<SubType>Form</SubType>
</Compile>
<Compile Update="FormReportRepairComponents.cs">
<SubType>Form</SubType>
</Compile>
</ItemGroup>
</Project>