Skip to content

Commit 3796165

Browse files
committed
name change to omit 'fluent' and avoid confusion with the FluentMigrator project
1 parent 7407fbf commit 3796165

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+88
-88
lines changed

FluentNoSqlMigrator.Runner/MigrationCommand.cs NoSqlMigrator.Runner/MigrationCommand.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using Couchbase;
33
using Oakton;
44

5-
namespace FluentNoSqlMigrator.Runner;
5+
namespace NoSqlMigrator.Runner;
66

77
public class MigrationCommand : OaktonAsyncCommand<MigrationInput>
88
{

FluentNoSqlMigrator.Runner/MigrationInput.cs NoSqlMigrator.Runner/MigrationInput.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Oakton;
22

3-
namespace FluentNoSqlMigrator.Runner;
3+
namespace NoSqlMigrator.Runner;
44

55
public class MigrationInput
66
{

FluentNoSqlMigrator.Runner/FluentNoSqlMigrator.Runner.csproj NoSqlMigrator.Runner/NoSqlMigrator.Runner.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</ItemGroup>
1414

1515
<ItemGroup>
16-
<ProjectReference Include="..\FluentNoSqlMigrator\FluentNoSqlMigrator.csproj" />
16+
<ProjectReference Include="..\NoSqlMigrator\NoSqlMigrator.csproj" />
1717
</ItemGroup>
1818

1919
</Project>
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using FluentNoSqlMigrator.Runner;
1+
using NoSqlMigrator.Runner;
22
using Oakton;
33

44
return CommandExecutor.ExecuteCommand<MigrationCommand>(args);

FluentNoSqlMigrator.Tests/FluentNoSqlMigrator.Tests.csproj NoSqlMigrator.Tests/NoSqlMigrator.Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
</ItemGroup>
1818

1919
<ItemGroup>
20-
<ProjectReference Include="..\FluentNoSqlMigrator\FluentNoSqlMigrator.csproj" />
20+
<ProjectReference Include="..\NoSqlMigrator\NoSqlMigrator.csproj" />
2121
</ItemGroup>
2222

2323
</Project>

FluentNoSqlMigrator.Tests/TestMigrations.cs NoSqlMigrator.Tests/TestMigrations.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Couchbase.KeyValue;
2-
using FluentNoSqlMigrator.Infrastructure;
2+
using NoSqlMigrator.Infrastructure;
33

4-
namespace FluentNoSqlMigrator.Tests;
4+
namespace NoSqlMigrator.Tests;
55

66
[Migration(1)]
77
public class TestMigration_1 : Migrate

FluentNoSqlMigrator.Tests/TestRunner.cs NoSqlMigrator.Tests/TestRunner.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using Couchbase;
2-
using FluentNoSqlMigrator.Runner;
2+
using NoSqlMigrator.Runner;
33
using NUnit.Framework;
44

5-
namespace FluentNoSqlMigrator.Tests;
5+
namespace NoSqlMigrator.Tests;
66

77
[TestFixture]
88
public class TestRunner
File renamed without changes.

FluentNoSqlMigrator.sln NoSqlMigrator.sln

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FluentNoSqlMigrator", "FluentNoSqlMigrator\FluentNoSqlMigrator.csproj", "{48B33A93-1A4D-4458-8D69-5736606A78C2}"
3+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NoSqlMigrator", "NoSqlMigrator\NoSqlMigrator.csproj", "{48B33A93-1A4D-4458-8D69-5736606A78C2}"
44
EndProject
5-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FluentNoSqlMigrator.Tests", "FluentNoSqlMigrator.Tests\FluentNoSqlMigrator.Tests.csproj", "{FFA55C1E-5602-4255-ACFD-432B362F2B3C}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NoSqlMigrator.Tests", "NoSqlMigrator.Tests\NoSqlMigrator.Tests.csproj", "{FFA55C1E-5602-4255-ACFD-432B362F2B3C}"
66
EndProject
7-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FluentNoSqlMigrator.Runner", "FluentNoSqlMigrator.Runner\FluentNoSqlMigrator.Runner.csproj", "{AB95C30B-6DDE-4200-ADA2-222A3D64EDC8}"
7+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NoSqlMigrator.Runner", "NoSqlMigrator.Runner\NoSqlMigrator.Runner.csproj", "{AB95C30B-6DDE-4200-ADA2-222A3D64EDC8}"
88
EndProject
99
Global
1010
GlobalSection(SolutionConfigurationPlatforms) = preSolution

FluentNoSqlMigrator/Collection/CollectionCreate.cs NoSqlMigrator/Collection/CollectionCreate.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using FluentNoSqlMigrator.Infrastructure;
1+
using NoSqlMigrator.Infrastructure;
22

3-
namespace FluentNoSqlMigrator.Collection;
3+
namespace NoSqlMigrator.Collection;
44

55
public interface ICollectionCreateSettings
66
{

FluentNoSqlMigrator/Collection/CollectionCreateCommand.cs NoSqlMigrator/Collection/CollectionCreateCommand.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using Couchbase;
22
using Couchbase.Management.Collections;
3-
using FluentNoSqlMigrator.Infrastructure;
3+
using NoSqlMigrator.Infrastructure;
44

5-
namespace FluentNoSqlMigrator.Collection;
5+
namespace NoSqlMigrator.Collection;
66

77
internal class CollectionCreateCommand : IMigrateCommand
88
{

FluentNoSqlMigrator/Collection/CollectionDelete.cs NoSqlMigrator/Collection/CollectionDelete.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using FluentNoSqlMigrator.Infrastructure;
1+
using NoSqlMigrator.Infrastructure;
22

3-
namespace FluentNoSqlMigrator.Collection;
3+
namespace NoSqlMigrator.Collection;
44

55
public interface ICollectionSettingsDelete
66
{

FluentNoSqlMigrator/Collection/CollectionDeleteCommand.cs NoSqlMigrator/Collection/CollectionDeleteCommand.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using Couchbase;
22
using Couchbase.Management.Collections;
3-
using FluentNoSqlMigrator.Infrastructure;
3+
using NoSqlMigrator.Infrastructure;
44

5-
namespace FluentNoSqlMigrator.Collection;
5+
namespace NoSqlMigrator.Collection;
66

77
internal class CollectionDeleteCommand : IMigrateCommand
88
{

FluentNoSqlMigrator/Documents/DocumentCreate.cs NoSqlMigrator/Documents/DocumentCreate.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using FluentNoSqlMigrator.Infrastructure;
1+
using NoSqlMigrator.Infrastructure;
22

3-
namespace FluentNoSqlMigrator.Documents;
3+
namespace NoSqlMigrator.Documents;
44

55
public interface IInsertDocumentsScopeSettings
66
{

FluentNoSqlMigrator/Documents/DocumentCreateCommand.cs NoSqlMigrator/Documents/DocumentCreateCommand.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Couchbase;
2-
using FluentNoSqlMigrator.Infrastructure;
2+
using NoSqlMigrator.Infrastructure;
33

4-
namespace FluentNoSqlMigrator.Documents;
4+
namespace NoSqlMigrator.Documents;
55

66
internal class DocumentCreateCommand : IMigrateCommand
77
{

FluentNoSqlMigrator/Documents/DocumentDelete.cs NoSqlMigrator/Documents/DocumentDelete.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using FluentNoSqlMigrator.Infrastructure;
1+
using NoSqlMigrator.Infrastructure;
22

3-
namespace FluentNoSqlMigrator.Documents;
3+
namespace NoSqlMigrator.Documents;
44

55
public interface IDocumentDelete
66
{

FluentNoSqlMigrator/Documents/DocumentDeleteCommand.cs NoSqlMigrator/Documents/DocumentDeleteCommand.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Couchbase;
2-
using FluentNoSqlMigrator.Infrastructure;
2+
using NoSqlMigrator.Infrastructure;
33

4-
namespace FluentNoSqlMigrator.Documents;
4+
namespace NoSqlMigrator.Documents;
55

66
internal class DocumentDeleteCommand : IMigrateCommand
77
{

FluentNoSqlMigrator/Execute/ScriptRun.cs NoSqlMigrator/Execute/ScriptRun.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using FluentNoSqlMigrator.Infrastructure;
1+
using NoSqlMigrator.Infrastructure;
22

3-
namespace FluentNoSqlMigrator.Execute;
3+
namespace NoSqlMigrator.Execute;
44

55
public interface IScriptBuild
66
{

FluentNoSqlMigrator/Execute/ScriptRunCommand.cs NoSqlMigrator/Execute/ScriptRunCommand.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Couchbase;
2-
using FluentNoSqlMigrator.Infrastructure;
2+
using NoSqlMigrator.Infrastructure;
33

4-
namespace FluentNoSqlMigrator.Execute;
4+
namespace NoSqlMigrator.Execute;
55

66
internal class ScriptRunCommand : IMigrateCommand
77
{

FluentNoSqlMigrator/Index/IndexCreate.cs NoSqlMigrator/Index/IndexCreate.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using FluentNoSqlMigrator.Infrastructure;
1+
using NoSqlMigrator.Infrastructure;
22

3-
namespace FluentNoSqlMigrator.Index;
3+
namespace NoSqlMigrator.Index;
44

55
public interface IIndexCreate
66
{

FluentNoSqlMigrator/Index/IndexCreateCommand.cs NoSqlMigrator/Index/IndexCreateCommand.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using System.Text;
22
using Couchbase;
3-
using FluentNoSqlMigrator.Infrastructure;
3+
using NoSqlMigrator.Infrastructure;
44

5-
namespace FluentNoSqlMigrator.Index;
5+
namespace NoSqlMigrator.Index;
66

77
internal class BuildIndexCommandField
88
{

FluentNoSqlMigrator/Index/IndexDelete.cs NoSqlMigrator/Index/IndexDelete.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using FluentNoSqlMigrator.Infrastructure;
1+
using NoSqlMigrator.Infrastructure;
22

3-
namespace FluentNoSqlMigrator.Index;
3+
namespace NoSqlMigrator.Index;
44

55
public interface IIndexDelete
66
{

FluentNoSqlMigrator/Index/IndexDeleteCommand.cs NoSqlMigrator/Index/IndexDeleteCommand.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using Couchbase;
2-
using FluentNoSqlMigrator.Infrastructure;
2+
using NoSqlMigrator.Infrastructure;
33
using DropQueryIndexOptions = Couchbase.Management.Query.DropQueryIndexOptions;
44

5-
namespace FluentNoSqlMigrator.Index;
5+
namespace NoSqlMigrator.Index;
66

77
internal class IndexDeleteCommand : IMigrateCommand
88
{

FluentNoSqlMigrator/Index/PrimaryIndexCreate.cs NoSqlMigrator/Index/PrimaryIndexCreate.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using FluentNoSqlMigrator.Infrastructure;
1+
using NoSqlMigrator.Infrastructure;
22

3-
namespace FluentNoSqlMigrator.Index;
3+
namespace NoSqlMigrator.Index;
44

55
public interface IPrimaryIndexCreate
66
{

FluentNoSqlMigrator/Index/PrimaryIndexCreateCommand.cs NoSqlMigrator/Index/PrimaryIndexCreateCommand.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
using System.Text;
22
using Couchbase;
33
using Couchbase.Management.Query;
4-
using FluentNoSqlMigrator.Infrastructure;
4+
using NoSqlMigrator.Infrastructure;
55

6-
namespace FluentNoSqlMigrator.Index;
6+
namespace NoSqlMigrator.Index;
77

88
internal class PrimaryIndexCreateCommand : IMigrateCommand
99
{

FluentNoSqlMigrator/Index/PrimaryIndexDelete.cs NoSqlMigrator/Index/PrimaryIndexDelete.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using FluentNoSqlMigrator.Infrastructure;
1+
using NoSqlMigrator.Infrastructure;
22

3-
namespace FluentNoSqlMigrator.Index;
3+
namespace NoSqlMigrator.Index;
44

55
public interface IPrimaryIndexDelete
66
{

FluentNoSqlMigrator/Index/PrimaryIndexDeleteCommand.cs NoSqlMigrator/Index/PrimaryIndexDeleteCommand.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
using Couchbase;
22
using Couchbase.KeyValue;
33
using Couchbase.Management.Query;
4-
using FluentNoSqlMigrator.Infrastructure;
4+
using NoSqlMigrator.Infrastructure;
55

6-
namespace FluentNoSqlMigrator.Index;
6+
namespace NoSqlMigrator.Index;
77

88
internal class PrimaryIndexDeleteCommand : IMigrateCommand
99
{

FluentNoSqlMigrator/Infrastructure/CreateBuilder.cs NoSqlMigrator/Infrastructure/CreateBuilder.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
using FluentNoSqlMigrator.Collection;
2-
using FluentNoSqlMigrator.Index;
3-
using FluentNoSqlMigrator.Scope;
1+
using NoSqlMigrator.Collection;
2+
using NoSqlMigrator.Index;
3+
using NoSqlMigrator.Scope;
44

5-
namespace FluentNoSqlMigrator.Infrastructure;
5+
namespace NoSqlMigrator.Infrastructure;
66

77
public class CreateBuilder
88
{

FluentNoSqlMigrator/Infrastructure/DeleteBuilder.cs NoSqlMigrator/Infrastructure/DeleteBuilder.cs

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
using FluentNoSqlMigrator.Collection;
2-
using FluentNoSqlMigrator.Documents;
3-
using FluentNoSqlMigrator.Index;
4-
using FluentNoSqlMigrator.Scope;
1+
using NoSqlMigrator.Collection;
2+
using NoSqlMigrator.Documents;
3+
using NoSqlMigrator.Index;
4+
using NoSqlMigrator.Scope;
55

6-
namespace FluentNoSqlMigrator.Infrastructure;
6+
namespace NoSqlMigrator.Infrastructure;
77

88
public class DeleteBuilder
99
{

FluentNoSqlMigrator/Infrastructure/ExecuteBuilder.cs NoSqlMigrator/Infrastructure/ExecuteBuilder.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using FluentNoSqlMigrator.Execute;
1+
using NoSqlMigrator.Execute;
22

3-
namespace FluentNoSqlMigrator.Infrastructure;
3+
namespace NoSqlMigrator.Infrastructure;
44

55
public class ExecuteBuilder
66
{

FluentNoSqlMigrator/Infrastructure/IBuildCommands.cs NoSqlMigrator/Infrastructure/IBuildCommands.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace FluentNoSqlMigrator.Infrastructure;
1+
namespace NoSqlMigrator.Infrastructure;
22

33
public interface IBuildCommands
44
{

FluentNoSqlMigrator/Infrastructure/Migrate.cs NoSqlMigrator/Infrastructure/Migrate.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using FluentNoSqlMigrator.Documents;
1+
using NoSqlMigrator.Documents;
22

3-
namespace FluentNoSqlMigrator.Infrastructure;
3+
namespace NoSqlMigrator.Infrastructure;
44

55
public abstract class Migrate
66
{

FluentNoSqlMigrator/Infrastructure/Migration.cs NoSqlMigrator/Infrastructure/Migration.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace FluentNoSqlMigrator.Infrastructure;
1+
namespace NoSqlMigrator.Infrastructure;
22

33
public class Migration : Attribute
44
{

FluentNoSqlMigrator/Infrastructure/MigrationContext.cs NoSqlMigrator/Infrastructure/MigrationContext.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Couchbase;
22

3-
namespace FluentNoSqlMigrator.Infrastructure;
3+
namespace NoSqlMigrator.Infrastructure;
44

55
internal static class MigrationContext
66
{

FluentNoSqlMigrator/Infrastructure/UpdateBuilder.cs NoSqlMigrator/Infrastructure/UpdateBuilder.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using FluentNoSqlMigrator.Update;
1+
using NoSqlMigrator.Update;
22

3-
namespace FluentNoSqlMigrator.Infrastructure;
3+
namespace NoSqlMigrator.Infrastructure;
44

55
public class UpdateBuilder
66
{

FluentNoSqlMigrator/Runner/DirectionEnum.cs NoSqlMigrator/Runner/DirectionEnum.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace FluentNoSqlMigrator.Runner;
1+
namespace NoSqlMigrator.Runner;
22

33
public enum DirectionEnum
44
{

FluentNoSqlMigrator/Runner/MigrationHistory.cs NoSqlMigrator/Runner/MigrationHistory.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace FluentNoSqlMigrator.Runner;
1+
namespace NoSqlMigrator.Runner;
22

33
public class MigrationHistory
44
{

FluentNoSqlMigrator/Runner/MigrationRunner.cs NoSqlMigrator/Runner/MigrationRunner.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
using System.Reflection;
22
using Couchbase.Core.Exceptions.KeyValue;
33
using Couchbase.KeyValue;
4-
using FluentNoSqlMigrator.Infrastructure;
4+
using NoSqlMigrator.Infrastructure;
55

6-
namespace FluentNoSqlMigrator.Runner;
6+
namespace NoSqlMigrator.Runner;
77

88
public class MigrationRunner
99
{

FluentNoSqlMigrator/Runner/RunSettings.cs NoSqlMigrator/Runner/RunSettings.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Couchbase;
22

3-
namespace FluentNoSqlMigrator.Runner;
3+
namespace NoSqlMigrator.Runner;
44

55
public class RunSettings
66
{

FluentNoSqlMigrator/Scope/ScopeCreate.cs NoSqlMigrator/Scope/ScopeCreate.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
using FluentNoSqlMigrator.Collection;
2-
using FluentNoSqlMigrator.Infrastructure;
1+
using NoSqlMigrator.Collection;
2+
using NoSqlMigrator.Infrastructure;
33

4-
namespace FluentNoSqlMigrator.Scope;
4+
namespace NoSqlMigrator.Scope;
55

66
public interface IScopeCreateSettings
77
{

FluentNoSqlMigrator/Scope/ScopeCreateCommand.cs NoSqlMigrator/Scope/ScopeCreateCommand.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Couchbase;
2-
using FluentNoSqlMigrator.Infrastructure;
2+
using NoSqlMigrator.Infrastructure;
33

4-
namespace FluentNoSqlMigrator.Scope;
4+
namespace NoSqlMigrator.Scope;
55

66
internal class ScopeCreateCommand : IMigrateCommand
77
{

FluentNoSqlMigrator/Scope/ScopeDelete.cs NoSqlMigrator/Scope/ScopeDelete.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using FluentNoSqlMigrator.Infrastructure;
1+
using NoSqlMigrator.Infrastructure;
22

3-
namespace FluentNoSqlMigrator.Scope;
3+
namespace NoSqlMigrator.Scope;
44

55
public interface IScopeSettingsDelete
66
{

0 commit comments

Comments
 (0)