mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-16 00:42:51 +08:00
24 lines
752 B
XML
24 lines
752 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net8.0;net7.0;net6.0</TargetFrameworks>
|
|
<Nullable>enable</Nullable>
|
|
<IsPackable>true</IsPackable>
|
|
<Description>A library that extends Spectre.Console with ImageSharp superpowers.</Description>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<AdditionalFiles Include="..\stylecop.json" Link="Properties/stylecop.json" />
|
|
<None Include="../../resources/gfx/small-logo.png" Pack="true" PackagePath="\" Link="Properties/small-logo.png" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.5" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Spectre.Console\Spectre.Console.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|