mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-15 00:12:50 +08:00
21 lines
700 B
XML
21 lines
700 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
|
|
<IsPackable>true</IsPackable>
|
|
<Description>A library that extends Spectre.Console with ImageSharp superpowers.</Description>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<IsAotCompatible Condition="'$(TargetFramework)' != 'netstandard2.0'" >true</IsAotCompatible>
|
|
<PolySharpIncludeRuntimeSupportedAttributes>true</PolySharpIncludeRuntimeSupportedAttributes>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="SixLabors.ImageSharp" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Spectre.Console\Spectre.Console.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|