Use NetStandard instead of explicit versions.

This commit is contained in:
Tony Valenti
2023-07-12 08:43:34 -05:00
parent d8bd1ce612
commit 6c9a2904a6
3 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net480;net60;net70</TargetFrameworks>
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0" />

View File

@@ -1,4 +1,4 @@
#if NET6_0_OR_GREATER
#if NETSTANDARD2_1_OR_GREATER
using System;
using System.Collections.Generic;

View File

@@ -2,7 +2,7 @@
<PropertyGroup>
<Authors>Tommy Parnell</Authors>
<TargetFrameworks>net480;net60;net70</TargetFrameworks>
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
<AssemblyName>UriBuilder.Fluent</AssemblyName>
<PackageId>UriBuilder.Fluent</PackageId>
<PackageTags>Url building;Uri;Uri building;fluent;extension</PackageTags>