chore: rename base to FruityFoundation

This commit is contained in:
Kyle Ratti 2022-02-24 19:11:28 -05:00
parent de250a91dd
commit 224b3eb4a3
No known key found for this signature in database
GPG Key ID: 321BA8EB09CD93F4
15 changed files with 27 additions and 28 deletions

View File

@ -1,5 +1,5 @@
using CommonCore.Base.Extensions; using FruityFoundation.Base.Extensions;
using CommonCore.Base.Structures; using FruityFoundation.Base.Structures;
using Microsoft.FSharp.Core; using Microsoft.FSharp.Core;
using NUnit.Framework; using NUnit.Framework;

View File

@ -1,6 +1,6 @@
using System; using System;
using CommonCore.Base.Extensions; using FruityFoundation.Base.Extensions;
using CommonCore.Base.Structures; using FruityFoundation.Base.Structures;
using NUnit.Framework; using NUnit.Framework;
namespace Base.Tests.Extensions; namespace Base.Tests.Extensions;

View File

@ -1,5 +1,5 @@
using CommonCore.Base.Extensions; using FruityFoundation.Base.Extensions;
using CommonCore.Base.Structures; using FruityFoundation.Base.Structures;
using NUnit.Framework; using NUnit.Framework;
namespace Base.Tests.Extensions; namespace Base.Tests.Extensions;

View File

@ -1,5 +1,5 @@
using CommonCore.Base.Extensions; using FruityFoundation.Base.Extensions;
using CommonCore.Base.Structures; using FruityFoundation.Base.Structures;
using NUnit.Framework; using NUnit.Framework;
namespace Base.Tests.Extensions; namespace Base.Tests.Extensions;

View File

@ -4,14 +4,14 @@
<TargetFramework>net6.0</TargetFramework> <TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<RootNamespace>CommonCore.Base</RootNamespace> <RootNamespace>FruityFoundation.Base</RootNamespace>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>CommonCore.Base</PackageId> <PackageId>FruityFoundation.Base</PackageId>
<Authors>Kyle Ratti</Authors> <Authors>Kyle Ratti</Authors>
<Company /> <Company />
<Product>CommonCore.Base</Product> <Product>FruityFoundation.Base</Product>
<RepositoryUrl>https://github.com/kyleratti/CommonCore</RepositoryUrl> <RepositoryUrl>https://github.com/kyleratti/FruityFoundation</RepositoryUrl>
<PackageVersion>1.0.6</PackageVersion> <PackageVersion>1.0.7</PackageVersion>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

View File

@ -1,7 +1,7 @@
using CommonCore.Base.Structures; using FruityFoundation.Base.Structures;
using Microsoft.FSharp.Core; using Microsoft.FSharp.Core;
namespace CommonCore.Base.Extensions; namespace FruityFoundation.Base.Extensions;
public static class FSharpExtensions public static class FSharpExtensions
{ {

View File

@ -1,6 +1,6 @@
using CommonCore.Base.Structures; using FruityFoundation.Base.Structures;
namespace CommonCore.Base.Extensions; namespace FruityFoundation.Base.Extensions;
public static class NullableExtensions public static class NullableExtensions
{ {

View File

@ -1,4 +1,4 @@
namespace CommonCore.Base.Extensions; namespace FruityFoundation.Base.Extensions;
public static class StringExtensions public static class StringExtensions
{ {

View File

@ -1,7 +1,7 @@
// 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.
#pragma warning disable CS8601 #pragma warning disable CS8601
namespace CommonCore.Base.Structures; namespace FruityFoundation.Base.Structures;
[Serializable] [Serializable]
public struct Maybe<T> public struct Maybe<T>

View File

@ -1,6 +1,6 @@
using Microsoft.FSharp.Core; using Microsoft.FSharp.Core;
namespace CommonCore.Base.Structures; namespace FruityFoundation.Base.Structures;
public static class MaybeExtensions public static class MaybeExtensions
{ {

View File

@ -1,4 +1,4 @@
namespace CommonCore.Db namespace FruityFoundation.Db
open System open System
open System.Data open System.Data

View File

@ -3,15 +3,15 @@
<PropertyGroup> <PropertyGroup>
<TargetFramework>net6.0</TargetFramework> <TargetFramework>net6.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile> <GenerateDocumentationFile>true</GenerateDocumentationFile>
<RootNamespace>CommonCore.Db</RootNamespace> <RootNamespace>FruityFoundation.Db</RootNamespace>
<LangVersion>6.0</LangVersion> <LangVersion>6.0</LangVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>CommonCore.Db</PackageId> <PackageId>FruityFoundation.Db</PackageId>
<Authors>Kyle Ratti</Authors> <Authors>Kyle Ratti</Authors>
<Company /> <Company />
<Product>CommonCore.Db</Product> <Product>FruityFoudnation.Db</Product>
<RepositoryUrl>https://github.com/kyleratti/CommonCore</RepositoryUrl> <RepositoryUrl>https://github.com/kyleratti/FruityFoundation</RepositoryUrl>
<PackageVersion>1.0.4</PackageVersion> <PackageVersion>1.0.5</PackageVersion>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

View File

@ -1,2 +1 @@
# CommonCore # FruityFoundation