PCC2.Gui.csproj 1.4 KB

12345678910111213141516171819202122232425262728293031
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <OutputType Condition="'$(Configuration)' == 'DEBUG'">Exe</OutputType>
  4. <OutputType Condition="'$(Configuration)' == 'RELEASE'">WinExe</OutputType>
  5. <TargetFramework>net8.0-windows</TargetFramework>
  6. <Nullable>enable</Nullable>
  7. <UseWindowsForms>true</UseWindowsForms>
  8. <ImplicitUsings>enable</ImplicitUsings>
  9. <RootNamespace>PCC2</RootNamespace>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <PackageReference Include="Blazorise.Bootstrap5" Version="1.6.2" />
  13. <PackageReference Include="Blazorise.Icons.FontAwesome" Version="1.6.2" />
  14. <PackageReference Include="Blazorise.Splitter" Version="1.6.2" />
  15. <PackageReference Include="CodeBeam.MudBlazor.Extensions" Version="7.0.2" />
  16. <PackageReference Include="Dapper" Version="2.1.35" />
  17. <PackageReference Include="Microsoft.AspNetCore.Components.WebView.WindowsForms" Version="8.0.92" />
  18. <PackageReference Include="Microsoft.Data.Sqlite.Core" Version="8.0.10" />
  19. <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.10" />
  20. <PackageReference Include="MudBlazor" Version="7.15.0" />
  21. <PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Version="2.1.10" />
  22. <PackageReference Include="System.Text.Json" Version="8.0.5" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <ProjectReference Include="..\PCC2.Shared\PCC2.Shared.csproj" />
  26. </ItemGroup>
  27. </Project>