ant-design-blazor/site/AntDesign.Docs.Build.CLI/AntDesign.Docs.Build.CLI.csproj
James Yeung e95ee75f80 chore: update the docs project to .net 5 rc1 (#612)
* chore: update the docs project to .net 5 rc1

* chore: update dotnet sdk for pr check actions

* chore: update cli to .net5

* fix: cli output path

* fix: also should install 3.1

* fix: switch installation sequence

* chore: update test to .net 5
2020-09-17 15:03:25 +08:00

20 lines
767 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<OutputType>Exe</OutputType>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\Shared\DemoComponent.cs" Link="Shared\DemoComponent.cs" />
<Compile Include="..\Shared\DemoMenuItem.cs" Link="Shared\DemoMenuItem.cs" />
<Compile Include="..\Shared\DocsFile.cs" Link="Shared\DocsFile.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.CommandLineUtils" Version="1.1.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.5" />
<PackageReference Include="YamlDotnet" Version="8.1.2" />
<PackageReference Include="Markdig" Version="0.20.0" />
</ItemGroup>
</Project>