2022-08-19 20:27:49 -05:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2022-08-19 20:46:45 -05:00
|
|
|
<Nullable>disable</Nullable>
|
2022-08-19 20:27:49 -05:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.2" />
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.2" PrivateAssets="all" />
|
|
|
|
<PackageReference Include="Radzen.Blazor" Version="3.20.4" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2022-08-21 09:55:34 -05:00
|
|
|
<ItemGroup>
|
|
|
|
<Content Update="wwwroot\appsettings.json">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</Content>
|
|
|
|
</ItemGroup>
|
|
|
|
|
2022-08-19 20:27:49 -05:00
|
|
|
</Project>
|