diff --git a/GitVersionConfig.yaml b/GitVersionConfig.yaml new file mode 100644 index 0000000..81cad7b --- /dev/null +++ b/GitVersionConfig.yaml @@ -0,0 +1,2 @@ +mode: ContinuousDeployment +branches: {} diff --git a/README.md b/README.md index 266b6ef..db4d4bf 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ -# CR.ViewModels.Core +# PharmaxoScientific.ViewModels.Core A package containing .NET interfaces for reading/writing CQRS ViewModels in a generic way. \ No newline at end of file diff --git a/src/ViewModels.Core.Tests/InMemoryViewModelRepositoryTests.cs b/src/ViewModels.Core.Tests/InMemoryViewModelRepositoryTests.cs index ea5e3f2..7125397 100644 --- a/src/ViewModels.Core.Tests/InMemoryViewModelRepositoryTests.cs +++ b/src/ViewModels.Core.Tests/InMemoryViewModelRepositoryTests.cs @@ -2,10 +2,10 @@ // Copyright (c) Corsham Science. All rights reserved. // -namespace CorshamScience.ViewModels.Core.Tests +namespace PharmaxoScientific.ViewModels.Core.Tests { - using CorshamScience.ViewModels.Core; using NUnit.Framework; + using PharmaxoScientific.ViewModels.Core; /// [TestFixture] diff --git a/src/ViewModels.Core.Tests/TestEntity1.cs b/src/ViewModels.Core.Tests/TestEntity1.cs index 8c47257..29d052b 100644 --- a/src/ViewModels.Core.Tests/TestEntity1.cs +++ b/src/ViewModels.Core.Tests/TestEntity1.cs @@ -2,7 +2,7 @@ // Copyright (c) Corsham Science. All rights reserved. // -namespace CorshamScience.ViewModels.Core.Tests +namespace PharmaxoScientific.ViewModels.Core.Tests { using System; diff --git a/src/ViewModels.Core.Tests/TestEntity2.cs b/src/ViewModels.Core.Tests/TestEntity2.cs index cec61ef..0d6a472 100644 --- a/src/ViewModels.Core.Tests/TestEntity2.cs +++ b/src/ViewModels.Core.Tests/TestEntity2.cs @@ -2,7 +2,7 @@ // Copyright (c) Corsham Science. All rights reserved. // -namespace CorshamScience.ViewModels.Core.Tests +namespace PharmaxoScientific.ViewModels.Core.Tests { using System; diff --git a/src/ViewModels.Core.Tests/ViewModelRepositoryTestFixture.cs b/src/ViewModels.Core.Tests/ViewModelRepositoryTestFixture.cs index 088f601..834ad6a 100644 --- a/src/ViewModels.Core.Tests/ViewModelRepositoryTestFixture.cs +++ b/src/ViewModels.Core.Tests/ViewModelRepositoryTestFixture.cs @@ -2,15 +2,15 @@ // Copyright (c) Corsham Science. All rights reserved. // -namespace CorshamScience.ViewModels.Core.Tests +namespace PharmaxoScientific.ViewModels.Core.Tests { using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; - using CorshamScience.ViewModels.Core; - using CorshamScience.ViewModels.Core.Exceptions; using NUnit.Framework; + using PharmaxoScientific.ViewModels.Core; + using PharmaxoScientific.ViewModels.Core.Exceptions; /// /// A Test Fixture for a View Model Repository. diff --git a/src/ViewModels.Core.Tests/ViewModels.Core.Tests.csproj b/src/ViewModels.Core.Tests/ViewModels.Core.Tests.csproj index 4c81c88..7b8b589 100644 --- a/src/ViewModels.Core.Tests/ViewModels.Core.Tests.csproj +++ b/src/ViewModels.Core.Tests/ViewModels.Core.Tests.csproj @@ -2,7 +2,7 @@ netcoreapp2.0 - CorshamScience.ViewModels.Core.Tests + PharmaxoScientific.ViewModels.Core.Tests diff --git a/src/ViewModels.Core/Exceptions/DuplicateKeyException.cs b/src/ViewModels.Core/Exceptions/DuplicateKeyException.cs index 3672252..4fc5e0f 100644 --- a/src/ViewModels.Core/Exceptions/DuplicateKeyException.cs +++ b/src/ViewModels.Core/Exceptions/DuplicateKeyException.cs @@ -2,7 +2,7 @@ // Copyright (c) Corsham Science. All rights reserved. // -namespace CorshamScience.ViewModels.Core.Exceptions +namespace PharmaxoScientific.ViewModels.Core.Exceptions { using System; using System.Runtime.Serialization; diff --git a/src/ViewModels.Core/Exceptions/EntityNotFoundException.cs b/src/ViewModels.Core/Exceptions/EntityNotFoundException.cs index d94bf78..761cd61 100644 --- a/src/ViewModels.Core/Exceptions/EntityNotFoundException.cs +++ b/src/ViewModels.Core/Exceptions/EntityNotFoundException.cs @@ -2,7 +2,7 @@ // Copyright (c) Corsham Science. All rights reserved. // -namespace CorshamScience.ViewModels.Core.Exceptions +namespace PharmaxoScientific.ViewModels.Core.Exceptions { using System; using System.Runtime.Serialization; diff --git a/src/ViewModels.Core/IViewModelReader.cs b/src/ViewModels.Core/IViewModelReader.cs index 2ae7f0b..125ba65 100644 --- a/src/ViewModels.Core/IViewModelReader.cs +++ b/src/ViewModels.Core/IViewModelReader.cs @@ -2,7 +2,7 @@ // Copyright (c) Corsham Science. All rights reserved. // -namespace CorshamScience.ViewModels.Core +namespace PharmaxoScientific.ViewModels.Core { using System; using System.Linq; diff --git a/src/ViewModels.Core/IViewModelWriter.cs b/src/ViewModels.Core/IViewModelWriter.cs index 2ca4734..5d341f8 100644 --- a/src/ViewModels.Core/IViewModelWriter.cs +++ b/src/ViewModels.Core/IViewModelWriter.cs @@ -2,11 +2,11 @@ // Copyright (c) Corsham Science. All rights reserved. // -namespace CorshamScience.ViewModels.Core +namespace PharmaxoScientific.ViewModels.Core { using System; using System.Linq.Expressions; - using CorshamScience.ViewModels.Core.Exceptions; + using PharmaxoScientific.ViewModels.Core.Exceptions; /// /// An interface that will be extended by any class that allows for writing view models. diff --git a/src/ViewModels.Core/InMemoryViewModelRepository.cs b/src/ViewModels.Core/InMemoryViewModelRepository.cs index 3b28f10..4ba2021 100644 --- a/src/ViewModels.Core/InMemoryViewModelRepository.cs +++ b/src/ViewModels.Core/InMemoryViewModelRepository.cs @@ -2,14 +2,14 @@ // Copyright (c) Corsham Science. All rights reserved. // -namespace CorshamScience.ViewModels.Core +namespace PharmaxoScientific.ViewModels.Core { using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; - using CorshamScience.ViewModels.Core.Exceptions; + using PharmaxoScientific.ViewModels.Core.Exceptions; /// /// diff --git a/src/ViewModels.Core/ViewModels.Core.csproj b/src/ViewModels.Core/ViewModels.Core.csproj index dd170a1..633a33d 100644 --- a/src/ViewModels.Core/ViewModels.Core.csproj +++ b/src/ViewModels.Core/ViewModels.Core.csproj @@ -3,13 +3,13 @@ netstandard2.0 - CorshamScience.ViewModels.Core - CorshamScience.ViewModels.Core - CorshamScience.ViewModels.Core - Corsham Science - Corsham Science + PharmaxoScientific.ViewModels.Core + PharmaxoScientific.ViewModels.Core + PharmaxoScientific.ViewModels.Core + Pharmaxo Scientific + Pharmaxo Scientific CorshamScience.ViewModels - Corsham Science 2019 + Pharmaxo Scientific 2025 A package containing .NET interfaces for reading/writing CQRS ViewModels in a generic way. https://github.com/qphl/ViewModels.Core https://raw.githubusercontent.com/qphl/ViewModels.Core/master/logo.png @@ -21,13 +21,13 @@ - bin\Debug\netstandard2.0\CorshamScience.ViewModels.Core.xml + bin\Debug\netstandard2.0\PharmaxoScientific.ViewModels.Core.xml true - bin\Release\netstandard2.0\CorshamScience.ViewModels.Core.xml + bin\Release\netstandard2.0\PharmaxoScientific.ViewModels.Core.xml