ComputerSalesApp.csproj 551 B

12345678910111213141516
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <UseWindowsForms>true</UseWindowsForms>
  6. <ImplicitUsings>enable</ImplicitUsings>
  7. <Nullable>disable</Nullable>
  8. <AssemblyName>ComputerSalesApp</AssemblyName>
  9. <RootNamespace>ComputerSalesApp</RootNamespace>
  10. <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <PackageReference Include="Npgsql" Version="8.0.5" />
  14. </ItemGroup>
  15. </Project>