chore: dual-target Base to .NET Standard 2.0

This commit is contained in:
Kyle Ratti 2022-12-23 12:38:51 -05:00
parent d7fe778c1e
commit 3aab47e9c6
No known key found for this signature in database
GPG Key ID: 4D429B6287C68DD9
7 changed files with 24 additions and 9 deletions

View File

@ -1,8 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFramework>net6.0</TargetFramework> <TargetFrameworks>net6.0;netstandard2.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings> <LangVersion>10</LangVersion>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<RootNamespace>FruityFoundation.Base</RootNamespace> <RootNamespace>FruityFoundation.Base</RootNamespace>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
@ -15,7 +16,6 @@
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageLicenseFile>LICENSE</PackageLicenseFile> <PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<None Include="..\LICENSE" Pack="true" PackagePath="" /> <None Include="..\LICENSE" Pack="true" PackagePath="" />
</ItemGroup> </ItemGroup>

View File

@ -1,4 +1,5 @@
using System.Data; using System;
using System.Data;
using FruityFoundation.Base.Structures; using FruityFoundation.Base.Structures;
namespace FruityFoundation.Base.Extensions; namespace FruityFoundation.Base.Extensions;

View File

@ -1,4 +1,8 @@
namespace FruityFoundation.Base.Extensions; using System;
using System.Collections.Generic;
using System.Linq;
namespace FruityFoundation.Base.Extensions;
public static class EnumerableExtensions public static class EnumerableExtensions
{ {

View File

@ -1,4 +1,6 @@
namespace FruityFoundation.Base.Extensions; using System;
namespace FruityFoundation.Base.Extensions;
public static class StringExtensions public static class StringExtensions
{ {
@ -14,5 +16,5 @@ public static class StringExtensions
/// <param name="str"></param> /// <param name="str"></param>
/// <param name="maxLength">The maximum number of characters. If <paramref name="str"/> has fewer characters, it will be truncated to the length of <paramref name="str"/>.</param> /// <param name="maxLength">The maximum number of characters. If <paramref name="str"/> has fewer characters, it will be truncated to the length of <paramref name="str"/>.</param>
public static string Truncate(this string str, int maxLength) => public static string Truncate(this string str, int maxLength) =>
str[..Math.Min(str.Length, maxLength)]; str.Substring(0, Math.Min(str.Length, maxLength));
} }

View File

@ -1,5 +1,8 @@
// Normally we wouldn't want to disable Nullable references, but in this case we want to. // Normally we wouldn't want to disable Nullable references, but in this case we want to.
// We're assuming that if you're following Maybe conventions, you won't be hitting null ref exceptions. // We're assuming that if you're following Maybe conventions, you won't be hitting null ref exceptions.
using System;
#pragma warning disable CS8601 #pragma warning disable CS8601
namespace FruityFoundation.Base.Structures; namespace FruityFoundation.Base.Structures;

View File

@ -1,4 +1,7 @@
namespace FruityFoundation.Base.Structures; using System;
using System.Collections.Generic;
namespace FruityFoundation.Base.Structures;
public static class MaybeExtensions public static class MaybeExtensions
{ {

View File

@ -1,4 +1,6 @@
namespace FruityFoundation.Base.Structures; using System;
namespace FruityFoundation.Base.Structures;
public class OneOf<T1, T2> public class OneOf<T1, T2>
{ {