mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-12 11:55:24 +08:00
bca2414491
* 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
32 lines
947 B
XML
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> |