ToyStoreApp.csproj 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <UseWindowsForms>true</UseWindowsForms>
  6. <Nullable>enable</Nullable>
  7. <ImplicitUsings>enable</ImplicitUsings>
  8. <ApplicationIcon>Images\icon.ico</ApplicationIcon>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <PackageReference Include="Microsoft.Data.SqlClient" Version="6.1.3" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <Content Include="Images\**\*.*">
  15. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  16. </Content>
  17. </ItemGroup>
  18. <ItemGroup>
  19. <Compile Update="LoginForm.Designer.cs">
  20. <DependentUpon>LoginForm.cs</DependentUpon>
  21. </Compile>
  22. <Compile Update="ProductListForm.Designer.cs">
  23. <DependentUpon>ProductListForm.cs</DependentUpon>
  24. </Compile>
  25. <Compile Update="ProductDetailsForm.Designer.cs">
  26. <DependentUpon>ProductDetailsForm.cs</DependentUpon>
  27. </Compile>
  28. <Compile Update="ProductEditForm.Designer.cs">
  29. <DependentUpon>ProductEditForm.cs</DependentUpon>
  30. </Compile>
  31. <Compile Update="OrderListForm.Designer.cs">
  32. <DependentUpon>OrderListForm.cs</DependentUpon>
  33. </Compile>
  34. <Compile Update="OrderDetailsForm.Designer.cs">
  35. <DependentUpon>OrderDetailsForm.cs</DependentUpon>
  36. </Compile>
  37. <Compile Update="OrderEditForm.Designer.cs">
  38. <DependentUpon>OrderEditForm.cs</DependentUpon>
  39. </Compile>
  40. </ItemGroup>
  41. </Project>