19 lines
756 B
XML
19 lines
756 B
XML
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<WasmBuildNative>true</WasmBuildNative>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.4" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.4" PrivateAssets="all" />
|
|
<PackageReference Include="SqliteWasmHelper" Version="1.0.43-beta-g31b50d1f54" />
|
|
<PackageReference Include="Radzen.Blazor" Version="3.18.15" />
|
|
<PackageReference Include="sqlite-helper" Version="1.3.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|