32 lines
959 B
XML
32 lines
959 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Library15Gerimovich" Version="1.0.0" />
|
|
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.2.2" />
|
|
<PackageReference Include="System.Composition" Version="9.0.0" />
|
|
<PackageReference Include="WinFormsLibrary1" Version="1.0.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Library14Petrushin\Library14Petrushin.csproj" />
|
|
<ProjectReference Include="..\Models\Data.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="Forms\ManufacturerForm.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Update="Forms\ProductForm.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
</Project>
|