2023-04-01 14:40:28 +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>
|
|
|
|
|
|
2023-04-02 16:04:50 +04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Remove="nlog.config" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Include="nlog.config">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.4">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2023-04-04 22:42:28 +04:00
|
|
|
|
<PackageReference Include="NLog.Extensions.Logging" Version="5.2.3" />
|
2023-04-02 16:04:50 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-04-04 22:42:28 +04:00
|
|
|
|
<ProjectReference Include="..\CarServiceBusinessLogic\CarServiceBusinessLogic.csproj" />
|
2023-04-02 16:04:50 +04:00
|
|
|
|
<ProjectReference Include="..\CarServiceDatabase\CarServiceDatabase.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-04-06 22:44:17 +04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Update="FormUpdateItemForRepairTest.cs">
|
|
|
|
|
<SubType>Form</SubType>
|
|
|
|
|
</Compile>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-04-01 14:40:28 +04:00
|
|
|
|
</Project>
|