ant-design-blazor/site/AntDesign.Docs.WebApp/AntDesign.Docs.WebApp.csproj
James Yeung 7399d0d0a9
docs: remove wasm hosted and webapp client (#3689)
* docs: remove wasm hosted and webapp client

* fix httpclient disposed exception

* fix project reference
2024-02-20 22:01:02 +08:00

22 lines
536 B
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="8.0.1" />
</ItemGroup>
<ItemGroup>
<Watch Include="$(SolutionDir)**\*.razor" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AntDesign.Docs.Wasm\AntDesign.Docs.Wasm.csproj" />
</ItemGroup>
</Project>