12345678910111213141516171819202122232425262728293031 |
- <Project Sdk="Microsoft.NET.Sdk.Web">
- <PropertyGroup>
- <OutputType Condition="'$(Configuration)' == 'DEBUG'">Exe</OutputType>
- <OutputType Condition="'$(Configuration)' == 'RELEASE'">WinExe</OutputType>
- <TargetFramework>net8.0-windows</TargetFramework>
- <Nullable>enable</Nullable>
- <UseWindowsForms>true</UseWindowsForms>
- <ImplicitUsings>enable</ImplicitUsings>
- <RootNamespace>PCC2</RootNamespace>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Blazorise.Bootstrap5" Version="1.6.2" />
- <PackageReference Include="Blazorise.Icons.FontAwesome" Version="1.6.2" />
- <PackageReference Include="Blazorise.Splitter" Version="1.6.2" />
- <PackageReference Include="CodeBeam.MudBlazor.Extensions" Version="7.0.2" />
- <PackageReference Include="Dapper" Version="2.1.35" />
- <PackageReference Include="Microsoft.AspNetCore.Components.WebView.WindowsForms" Version="8.0.92" />
- <PackageReference Include="Microsoft.Data.Sqlite.Core" Version="8.0.10" />
- <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.10" />
- <PackageReference Include="MudBlazor" Version="7.15.0" />
- <PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Version="2.1.10" />
- <PackageReference Include="System.Text.Json" Version="8.0.5" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\PCC2.Shared\PCC2.Shared.csproj" />
- </ItemGroup>
- </Project>
|