Katheryne/Frontend/Frontend.csproj

23 lines
858 B
XML
Raw Normal View History

2023-10-17 20:10:28 +08:00
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
2023-10-07 13:27:25 +08:00
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
2023-10-17 23:32:39 +08:00
<RunAOTCompilation>true</RunAOTCompilation>
2023-10-07 13:27:25 +08:00
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AntDesign" Version="0.15.5" />
2023-10-17 23:32:39 +08:00
<PackageReference Include="Blazored.LocalStorage" Version="4.4.0" />
2023-10-14 22:12:19 +08:00
<PackageReference Include="BlazorMonaco" Version="3.1.0" />
2023-10-17 20:10:28 +08:00
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="7.0.11" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="7.0.11" PrivateAssets="all" />
2023-10-07 13:27:25 +08:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Katheryne\Katheryne.csproj" />
</ItemGroup>
2023-10-07 13:27:25 +08:00
</Project>