ant-design-blazor/site/AntDesign.Docs.WebApp/AntDesign.Docs.WebApp.csproj
James Yeung 21a90da9ff
Update to .NET 9 GA (#4330)
* Update to .NET 9 GA

* update doc

* update deps
2024-11-14 22:28:42 +08:00

22 lines
536 B
XML

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