ant-design-blazor/site/AntDesign.Docs.Build.CLI/AntDesign.Docs.Build.CLI.csproj
Huei Feng e672e4f363 chore: add .NET 5 target framework to all projects (#758)
Co-authored-by: ElderJames <shunjiey@hotmail.com>
2020-11-14 23:44:48 +08:00

20 lines
781 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net5</TargetFrameworks>
<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="5.0.0" />
<PackageReference Include="YamlDotnet" Version="8.1.2" />
<PackageReference Include="Markdig" Version="0.22.0" />
</ItemGroup>
</Project>