chore: rename base to FruityFoundation
This commit is contained in:
parent
de250a91dd
commit
224b3eb4a3
|
@ -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;
|
||||||
|
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
namespace CommonCore.Base.Extensions;
|
namespace FruityFoundation.Base.Extensions;
|
||||||
|
|
||||||
public static class StringExtensions
|
public static class StringExtensions
|
||||||
{
|
{
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
2
Db/Db.fs
2
Db/Db.fs
|
@ -1,4 +1,4 @@
|
||||||
namespace CommonCore.Db
|
namespace FruityFoundation.Db
|
||||||
|
|
||||||
open System
|
open System
|
||||||
open System.Data
|
open System.Data
|
||||||
|
|
10
Db/Db.fsproj
10
Db/Db.fsproj
|
@ -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>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user