Target netstandard 2.0 as well as net5.0

This commit is contained in:
Patrik Svensson 2021-04-05 23:38:03 +02:00
Родитель 634a5ab0ed
Коммит 2287b4dc6e
2 изменённых файлов: 17 добавлений и 12 удалений

Просмотреть файл

@ -16,10 +16,9 @@
<Description>A .NET library to read binary terminfo files.</Description> <Description>A .NET library to read binary terminfo files.</Description>
<Authors>Patrik Svensson, Phil Scott</Authors> <Authors>Patrik Svensson, Phil Scott</Authors>
<RepositoryType>git</RepositoryType> <RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/spectreconsole/wcwidth</RepositoryUrl> <RepositoryUrl>https://github.com/spectreconsole/terminfo</RepositoryUrl>
<PackageProjectUrl>https://github.com/spectreconsole/wcwidth</PackageProjectUrl> <PackageProjectUrl>https://github.com/spectreconsole/terminfo</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression> <PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReleaseNotes>https://github.com/spectreconsole/wcwidth/releases</PackageReleaseNotes>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Label="Source Link"> <PropertyGroup Label="Source Link">

Просмотреть файл

@ -1,20 +1,26 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFramework>net5.0</TargetFramework> <TargetFrameworks>net5.0;netstandard2.0</TargetFrameworks>
<PackageId>TermInfo</PackageId>
<Authors>Patrik Svensson, Phil Scott</Authors>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<Product>TermInfo</Product>
<Description>A library to read binary terminfo files.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/spectreconsole/terminfo</PackageProjectUrl>
<RepositoryUrl>https://github.com/spectreconsole/terminfo</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<AdditionalFiles Include="..\stylecop.json" Link="Properties/stylecop.json" /> <AdditionalFiles Include="..\stylecop.json" Link="Properties/stylecop.json" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<PackageReference Include="TunnelVisionLabs.ReferenceAssemblyAnnotator" Version="1.0.0-alpha.160" PrivateAssets="all" />
<PackageDownload Include="Microsoft.NETCore.App.Ref" Version="[$(AnnotatedReferenceAssemblyVersion)]" />
<PackageReference Include="Nullable" Version="1.3.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<PropertyGroup>
<AnnotatedReferenceAssemblyVersion>3.0.0</AnnotatedReferenceAssemblyVersion>
<GenerateNullableAttributes>False</GenerateNullableAttributes>
</PropertyGroup>
</Project> </Project>