23 lines
594 B
XML
23 lines
594 B
XML
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<SupportedPlatform Include="browser" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Egw.Window.Data" />
|
|
<PackageReference Include="EgwCoreLib.Razor" />
|
|
<PackageReference Include="EgwCoreLib.Utils" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.Web" />
|
|
<PackageReference Include="Newtonsoft.Json" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|