refactor namespace

This commit is contained in:
FH 2022-02-24 11:40:38 +01:00
parent 73c0fa12c5
commit d0211cb29e
13 changed files with 35 additions and 35 deletions

View file

@ -4,7 +4,7 @@
// Created : 27-08-2016 // Created : 27-08-2016
// //
// Last Modified By : Frede H. // Last Modified By : Frede H.
// Last Modified On : 12-31-2021 // Last Modified On : 02-24-2022
// *********************************************************************** // ***********************************************************************
// <copyright file="ExtensionsEx.cs" company="FCS"> // <copyright file="ExtensionsEx.cs" company="FCS">
// Copyright (C) 2022 FCS Frede's Computer Services. // Copyright (C) 2022 FCS Frede's Computer Services.
@ -19,7 +19,7 @@
// GNU Affero General Public License for more details. // GNU Affero General Public License for more details.
// //
// You should have received a copy of the GNU Affero General Public License // You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/> // along with this program. If not, see [https://www.gnu.org/licenses]
// </copyright> // </copyright>
// <summary></summary> // <summary></summary>
// *********************************************************************** // ***********************************************************************
@ -27,7 +27,7 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
namespace FCS.Lib namespace FCS.Lib.Utility
{ {
/// <summary> /// <summary>
/// Class ExtensionsEx. /// Class ExtensionsEx.

View file

@ -10,8 +10,8 @@
<ProjectGuid>{1F1FECFD-E07E-4B5C-A7F9-67FB89EE94A3}</ProjectGuid> <ProjectGuid>{1F1FECFD-E07E-4B5C-A7F9-67FB89EE94A3}</ProjectGuid>
<OutputType>Library</OutputType> <OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder> <AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>FCS.Lib</RootNamespace> <RootNamespace>FCS.Lib.Utility</RootNamespace>
<AssemblyName>FCS.Lib</AssemblyName> <AssemblyName>FCS.Lib.Utility</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion> <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment> <FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic> <Deterministic>true</Deterministic>

View file

@ -4,7 +4,7 @@
// Created : 2020-07-01 // Created : 2020-07-01
// //
// Last Modified By : FH // Last Modified By : FH
// Last Modified On : 01-09-2022 // Last Modified On : 02-24-2022
// *********************************************************************** // ***********************************************************************
// <copyright file="Generators.cs" company="FCS"> // <copyright file="Generators.cs" company="FCS">
// Copyright (C) 2022 FCS Frede's Computer Services. // Copyright (C) 2022 FCS Frede's Computer Services.
@ -19,7 +19,7 @@
// GNU Affero General Public License for more details. // GNU Affero General Public License for more details.
// //
// You should have received a copy of the GNU Affero General Public License // You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/> // along with this program. If not, see [https://www.gnu.org/licenses]
// </copyright> // </copyright>
// <summary></summary> // <summary></summary>
// *********************************************************************** // ***********************************************************************
@ -29,7 +29,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Security.Cryptography; using System.Security.Cryptography;
namespace FCS.Lib namespace FCS.Lib.Utility
{ {
/// <summary> /// <summary>
/// Class Generators /// Class Generators

View file

@ -4,7 +4,7 @@
// Created : 03-10-2015 // Created : 03-10-2015
// //
// Last Modified By : FH // Last Modified By : FH
// Last Modified On : 12-31-2021 // Last Modified On : 02-24-2022
// *********************************************************************** // ***********************************************************************
// <copyright file="IAsyncReadonlyRepo.cs" company="FCS"> // <copyright file="IAsyncReadonlyRepo.cs" company="FCS">
// Copyright (C) 2022 FCS Frede's Computer Services. // Copyright (C) 2022 FCS Frede's Computer Services.
@ -19,7 +19,7 @@
// GNU Affero General Public License for more details. // GNU Affero General Public License for more details.
// //
// You should have received a copy of the GNU Affero General Public License // You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/> // along with this program. If not, see [https://www.gnu.org/licenses]
// </copyright> // </copyright>
// <summary></summary> // <summary></summary>
// *********************************************************************** // ***********************************************************************
@ -30,7 +30,7 @@ using System.Linq;
using System.Linq.Expressions; using System.Linq.Expressions;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace FCS.Lib namespace FCS.Lib.Utility
{ {
/// <summary> /// <summary>
/// Interface IRepositoryAsync /// Interface IRepositoryAsync

View file

@ -4,7 +4,7 @@
// Created : 05-13-2020 // Created : 05-13-2020
// //
// Last Modified By : FH // Last Modified By : FH
// Last Modified On : 12-31-2021 // Last Modified On : 02-24-2022
// *********************************************************************** // ***********************************************************************
// <copyright file="IRepository.cs" company="FCS"> // <copyright file="IRepository.cs" company="FCS">
// Copyright (C) 2022 FCS Frede's Computer Services. // Copyright (C) 2022 FCS Frede's Computer Services.
@ -19,12 +19,12 @@
// GNU Affero General Public License for more details. // GNU Affero General Public License for more details.
// //
// You should have received a copy of the GNU Affero General Public License // You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/> // along with this program. If not, see [https://www.gnu.org/licenses]
// </copyright> // </copyright>
// <summary></summary> // <summary></summary>
// *********************************************************************** // ***********************************************************************
namespace FCS.Lib namespace FCS.Lib.Utility
{ {
/// <summary> /// <summary>
/// Interface IRepository /// Interface IRepository

View file

@ -4,7 +4,7 @@
// Created : 03-10-2015 // Created : 03-10-2015
// //
// Last Modified By : FH // Last Modified By : FH
// Last Modified On : 12-31-2021 // Last Modified On : 02-24-2022
// *********************************************************************** // ***********************************************************************
// <copyright file="IRepositoryEx.cs" company="FCS"> // <copyright file="IRepositoryEx.cs" company="FCS">
// Copyright (C) 2022 FCS Frede's Computer Services. // Copyright (C) 2022 FCS Frede's Computer Services.
@ -19,7 +19,7 @@
// GNU Affero General Public License for more details. // GNU Affero General Public License for more details.
// //
// You should have received a copy of the GNU Affero General Public License // You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/> // along with this program. If not, see [https://www.gnu.org/licenses]
// </copyright> // </copyright>
// <summary></summary> // <summary></summary>
// *********************************************************************** // ***********************************************************************
@ -29,7 +29,7 @@ using System.Linq;
using System.Linq.Expressions; using System.Linq.Expressions;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace FCS.Lib namespace FCS.Lib.Utility
{ {
/// <summary> /// <summary>
/// Interface IRepositoryEx /// Interface IRepositoryEx

View file

@ -641,7 +641,7 @@ the exclusion of warranty; and each file should have at least the
GNU Affero General Public License for more details. GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see [https://www.gnu.org/licenses].
Also add information on how to contact you by electronic and paper Also add information on how to contact you by electronic and paper
mail. mail.
@ -657,4 +657,4 @@ the specific requirements.
You should also get your employer (if you work as a programmer) or You should also get your employer (if you work as a programmer) or
school, if any, to sign a "copyright disclaimer" for the program, if school, if any, to sign a "copyright disclaimer" for the program, if
necessary. For more information on this, and how to apply and follow necessary. For more information on this, and how to apply and follow
the GNU AGPL, see <https://www.gnu.org/licenses/>. the GNU AGPL, see [https://www.gnu.org/licenses].

View file

@ -4,7 +4,7 @@
// Created : 27-08-2016 // Created : 27-08-2016
// //
// Last Modified By : Frede H. // Last Modified By : Frede H.
// Last Modified On : 12-31-2021 // Last Modified On : 02-24-2022
// *********************************************************************** // ***********************************************************************
// <copyright file="Mogrifiers.cs" company="FCS"> // <copyright file="Mogrifiers.cs" company="FCS">
// Copyright (C) 2022 FCS Frede's Computer Services. // Copyright (C) 2022 FCS Frede's Computer Services.
@ -19,7 +19,7 @@
// GNU Affero General Public License for more details. // GNU Affero General Public License for more details.
// //
// You should have received a copy of the GNU Affero General Public License // You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/> // along with this program. If not, see [https://www.gnu.org/licenses]
// </copyright> // </copyright>
// <summary></summary> // <summary></summary>
// *********************************************************************** // ***********************************************************************
@ -33,7 +33,7 @@ using System.Linq;
using System.Text; using System.Text;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
namespace FCS.Lib namespace FCS.Lib.Utility
{ {
/// <summary> /// <summary>
/// Class Converters /// Class Converters

View file

@ -16,5 +16,5 @@ using System.Runtime.InteropServices;
[assembly: ComVisible(false)] [assembly: ComVisible(false)]
[assembly: Guid("aaf08873-14e5-411d-8ec8-629782ac8f03")] [assembly: Guid("aaf08873-14e5-411d-8ec8-629782ac8f03")]
[assembly: AssemblyVersion("2.1.21313.1042")] [assembly: AssemblyVersion("2.1.22055.1136")]
[assembly: AssemblyFileVersion("2.1.21313.1042")] [assembly: AssemblyFileVersion("2.1.22055.1136")]

View file

@ -4,9 +4,9 @@
// Created : 01-01-2022 // Created : 01-01-2022
// //
// Last Modified By : FH // Last Modified By : FH
// Last Modified On : 12-31-2021 // Last Modified On : 02-24-2022
// *********************************************************************** // ***********************************************************************
// <copyright file="QueryHelper.cs" company=""> // <copyright file="QueryHelper.cs" company="Frede Hundewadt">
// Copyright (C) 2022 FCS Frede's Computer Services. // Copyright (C) 2022 FCS Frede's Computer Services.
// This program is free software: you can redistribute it and/or modify // This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as // it under the terms of the GNU Affero General Public License as
@ -19,7 +19,7 @@
// GNU Affero General Public License for more details. // GNU Affero General Public License for more details.
// //
// You should have received a copy of the GNU Affero General Public License // You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/> // along with this program. If not, see [https://www.gnu.org/licenses]
// </copyright> // </copyright>
// <summary></summary> // <summary></summary>
// *********************************************************************** // ***********************************************************************
@ -29,7 +29,7 @@ using System.Linq;
using System.Linq.Expressions; using System.Linq.Expressions;
using System.Reflection; using System.Reflection;
namespace FCS.Lib namespace FCS.Lib.Utility
{ {
/// <summary> /// <summary>
/// Class QueryHelper. /// Class QueryHelper.

View file

@ -4,7 +4,7 @@
// Created : 2020-07-01 // Created : 2020-07-01
// //
// Last Modified By : FH // Last Modified By : FH
// Last Modified On : 01-09-2022 // Last Modified On : 02-24-2022
// *********************************************************************** // ***********************************************************************
// <copyright file="Squid.cs" company="FCS"> // <copyright file="Squid.cs" company="FCS">
// Copyright (C) 2022 FCS Frede's Computer Services. // Copyright (C) 2022 FCS Frede's Computer Services.
@ -19,7 +19,7 @@
// GNU Affero General Public License for more details. // GNU Affero General Public License for more details.
// //
// You should have received a copy of the GNU Affero General Public License // You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/> // along with this program. If not, see [https://www.gnu.org/licenses]
// </copyright> // </copyright>
// <summary>Derived from https:github.com/csharpvitamins/CSharpVitamins.ShortGuid</summary> // <summary>Derived from https:github.com/csharpvitamins/CSharpVitamins.ShortGuid</summary>
// *********************************************************************** // ***********************************************************************
@ -27,7 +27,7 @@
using System; using System;
using System.Diagnostics; using System.Diagnostics;
namespace FCS.Lib namespace FCS.Lib.Utility
{ {
/// <summary> /// <summary>
/// A wrapper for handling URL-safe Base64 encoded globally unique identifiers (GUID). /// A wrapper for handling URL-safe Base64 encoded globally unique identifiers (GUID).

View file

@ -4,7 +4,7 @@
// Created : 2020-09-09 // Created : 2020-09-09
// //
// Last Modified By : FH // Last Modified By : FH
// Last Modified On : 01-09-2022 // Last Modified On : 02-24-2022
// *********************************************************************** // ***********************************************************************
// <copyright file="StringOptions.cs" company="FCS"> // <copyright file="StringOptions.cs" company="FCS">
// Copyright (C) 2022 FCS Frede's Computer Services. // Copyright (C) 2022 FCS Frede's Computer Services.
@ -19,12 +19,12 @@
// GNU Affero General Public License for more details. // GNU Affero General Public License for more details.
// //
// You should have received a copy of the GNU Affero General Public License // You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/> // along with this program. If not, see [https://www.gnu.org/licenses]
// </copyright> // </copyright>
// <summary></summary> // <summary></summary>
// *********************************************************************** // ***********************************************************************
namespace FCS.Lib namespace FCS.Lib.Utility
{ {
/// <summary> /// <summary>
/// Class StringOptions. /// Class StringOptions.