| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net8.0-windows</TargetFramework>
- <UseWindowsForms>true</UseWindowsForms>
- <Nullable>enable</Nullable>
- <ImplicitUsings>enable</ImplicitUsings>
- <ApplicationIcon>Images\icon.ico</ApplicationIcon>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.Data.SqlClient" Version="6.1.3" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="Images\**\*.*">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- <ItemGroup>
- <Compile Update="LoginForm.Designer.cs">
- <DependentUpon>LoginForm.cs</DependentUpon>
- </Compile>
- <Compile Update="ProductListForm.Designer.cs">
- <DependentUpon>ProductListForm.cs</DependentUpon>
- </Compile>
- <Compile Update="ProductDetailsForm.Designer.cs">
- <DependentUpon>ProductDetailsForm.cs</DependentUpon>
- </Compile>
- <Compile Update="ProductEditForm.Designer.cs">
- <DependentUpon>ProductEditForm.cs</DependentUpon>
- </Compile>
- <Compile Update="OrderListForm.Designer.cs">
- <DependentUpon>OrderListForm.cs</DependentUpon>
- </Compile>
- <Compile Update="OrderDetailsForm.Designer.cs">
- <DependentUpon>OrderDetailsForm.cs</DependentUpon>
- </Compile>
- <Compile Update="OrderEditForm.Designer.cs">
- <DependentUpon>OrderEditForm.cs</DependentUpon>
- </Compile>
- </ItemGroup>
- </Project>
|