27 lines
596 B
XML
27 lines
596 B
XML
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="webpack.config.js" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="ScriptLoader.razor" />
|
|
<None Include="StylesheetLoader.razor" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<SupportedPlatform Include="browser" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.7" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|