ant-design-blazor/site/AntDesign.Docs/AntDesign.Docs.csproj
Hao Sun bca2414491 chore: support IE and .net6 for server-side (#2119)
* modify AntDesign.Docs.Server project to support IE

* update docs project

* update _Host.cshtml

* add .net6 target framework

* Update _Host.cshtml

* update github actions

* update github actions
2021-12-06 12:31:27 +08:00

32 lines
947 B
XML

<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net5</TargetFrameworks>
<LangVersion>9.0</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AntDesign.Charts" Version="0.2.0" />
<PackageReference Include="System.Net.Http.Json" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<Content Include="$(SolutionDir)docs\**" LinkBase="docs" />
</ItemGroup>
<ItemGroup>
<None Remove="Resources\*.json" />
<EmbeddedResource Include="Resources\*.json" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\Shared\DemoComponent.cs" Link="Services\DemoComponent.cs" />
<Compile Include="..\Shared\DemoMenuItem.cs" Link="Services\DemoMenuItem.cs" />
<Compile Include="..\Shared\DocsFile.cs" Link="Services\DocsFile.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\components\AntDesign.csproj" />
</ItemGroup>
</Project>