chore: rename base to FruityFoundation
This commit is contained in:
parent
de250a91dd
commit
224b3eb4a3
|
@ -1,5 +1,5 @@
|
|||
using CommonCore.Base.Extensions;
|
||||
using CommonCore.Base.Structures;
|
||||
using FruityFoundation.Base.Extensions;
|
||||
using FruityFoundation.Base.Structures;
|
||||
using Microsoft.FSharp.Core;
|
||||
using NUnit.Framework;
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
using System;
|
||||
using CommonCore.Base.Extensions;
|
||||
using CommonCore.Base.Structures;
|
||||
using FruityFoundation.Base.Extensions;
|
||||
using FruityFoundation.Base.Structures;
|
||||
using NUnit.Framework;
|
||||
|
||||
namespace Base.Tests.Extensions;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
using CommonCore.Base.Extensions;
|
||||
using CommonCore.Base.Structures;
|
||||
using FruityFoundation.Base.Extensions;
|
||||
using FruityFoundation.Base.Structures;
|
||||
using NUnit.Framework;
|
||||
|
||||
namespace Base.Tests.Extensions;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
using CommonCore.Base.Extensions;
|
||||
using CommonCore.Base.Structures;
|
||||
using FruityFoundation.Base.Extensions;
|
||||
using FruityFoundation.Base.Structures;
|
||||
using NUnit.Framework;
|
||||
|
||||
namespace Base.Tests.Extensions;
|
||||
|
|
|
@ -4,14 +4,14 @@
|
|||
<TargetFramework>net6.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<RootNamespace>CommonCore.Base</RootNamespace>
|
||||
<RootNamespace>FruityFoundation.Base</RootNamespace>
|
||||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
||||
<PackageId>CommonCore.Base</PackageId>
|
||||
<PackageId>FruityFoundation.Base</PackageId>
|
||||
<Authors>Kyle Ratti</Authors>
|
||||
<Company />
|
||||
<Product>CommonCore.Base</Product>
|
||||
<RepositoryUrl>https://github.com/kyleratti/CommonCore</RepositoryUrl>
|
||||
<PackageVersion>1.0.6</PackageVersion>
|
||||
<Product>FruityFoundation.Base</Product>
|
||||
<RepositoryUrl>https://github.com/kyleratti/FruityFoundation</RepositoryUrl>
|
||||
<PackageVersion>1.0.7</PackageVersion>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
using CommonCore.Base.Structures;
|
||||
using FruityFoundation.Base.Structures;
|
||||
using Microsoft.FSharp.Core;
|
||||
|
||||
namespace CommonCore.Base.Extensions;
|
||||
namespace FruityFoundation.Base.Extensions;
|
||||
|
||||
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
|
||||
{
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
namespace CommonCore.Base.Extensions;
|
||||
namespace FruityFoundation.Base.Extensions;
|
||||
|
||||
public static class StringExtensions
|
||||
{
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// 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.
|
||||
#pragma warning disable CS8601
|
||||
namespace CommonCore.Base.Structures;
|
||||
namespace FruityFoundation.Base.Structures;
|
||||
|
||||
[Serializable]
|
||||
public struct Maybe<T>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
using Microsoft.FSharp.Core;
|
||||
|
||||
namespace CommonCore.Base.Structures;
|
||||
namespace FruityFoundation.Base.Structures;
|
||||
|
||||
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.Data
|
||||
|
|
10
Db/Db.fsproj
10
Db/Db.fsproj
|
@ -3,15 +3,15 @@
|
|||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||
<RootNamespace>CommonCore.Db</RootNamespace>
|
||||
<RootNamespace>FruityFoundation.Db</RootNamespace>
|
||||
<LangVersion>6.0</LangVersion>
|
||||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
||||
<PackageId>CommonCore.Db</PackageId>
|
||||
<PackageId>FruityFoundation.Db</PackageId>
|
||||
<Authors>Kyle Ratti</Authors>
|
||||
<Company />
|
||||
<Product>CommonCore.Db</Product>
|
||||
<RepositoryUrl>https://github.com/kyleratti/CommonCore</RepositoryUrl>
|
||||
<PackageVersion>1.0.4</PackageVersion>
|
||||
<Product>FruityFoudnation.Db</Product>
|
||||
<RepositoryUrl>https://github.com/kyleratti/FruityFoundation</RepositoryUrl>
|
||||
<PackageVersion>1.0.5</PackageVersion>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
|
Loading…
Reference in New Issue
Block a user