23 lines
812 B
XML
23 lines
812 B
XML
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
|
|
<StaticWebAssetProjectMode>Default</StaticWebAssetProjectMode>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="wwwroot\img\postcard1.png" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="kmCommonLibsCore" Version="2.0.0.129" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.0" />
|
|
<PackageReference Include="Telerik.SvgIcons" Version="4.1.0" />
|
|
<PackageReference Include="Telerik.UI.for.Blazor" Version="6.2.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|