mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 05:27:37 +08:00
e95ee75f80
* 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
20 lines
767 B
XML
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> |