Skip to content

Commit

Permalink
renaming stuff to have better namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
dlebee committed Apr 12, 2024
1 parent 3c0f42e commit 8d45eb4
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Nethereum.Postgres.Npgsql\Nethereum.Postgres.Npgsql.csproj" />
<ProjectReference Include="..\Nethereum.Npgsql\Nethereum.Npgsql.csproj" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
using Microsoft.EntityFrameworkCore.Infrastructure;
using Npgsql;
using Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure;
using Nethereum.Postgres.Npgsql;

namespace Nethereum.Postgres.EntityFrameworkCore;
namespace Nethereum.Npgsql.EntityFrameworkCore;

public static class NpgsqlBigDecimalDbContextOptionsBuilderExtensions
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using Microsoft.EntityFrameworkCore.Storage;
using Microsoft.Extensions.DependencyInjection;

namespace Nethereum.Postgres.EntityFrameworkCore;
namespace Nethereum.Npgsql.EntityFrameworkCore;

/// <summary>
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using Microsoft.EntityFrameworkCore.Storage;
using Microsoft.Extensions.DependencyInjection;

namespace Nethereum.Postgres.EntityFrameworkCore;
namespace Nethereum.Npgsql.EntityFrameworkCore;


public static class NpgsqlBigDecimalServiceCollectionExtensions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.Mapping;
using NpgsqlTypes;

namespace Nethereum.Postgres.EntityFrameworkCore;
namespace Nethereum.Npgsql.EntityFrameworkCore;

/// <summary>
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using Microsoft.EntityFrameworkCore.Storage;
using Nethereum.Util;

namespace Nethereum.Postgres.EntityFrameworkCore;
namespace Nethereum.Npgsql.EntityFrameworkCore;

/// <summary>
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Nethereum.Util;

namespace Nethereum.Postgres.Npgsql.Test;
namespace Nethereum.Npgsql.Test;

[TestClass]
public class BigDecimalDriverTests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Nethereum.Postgres.Npgsql\Nethereum.Postgres.Npgsql.csproj" />
<ProjectReference Include="..\Nethereum.Npgsql\Nethereum.Npgsql.csproj" />
</ItemGroup>
</Project>
6 changes: 3 additions & 3 deletions Nethereum.Postgres.sln → Nethereum.Npgsql.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nethereum.Postgres.Npgsql", "Nethereum.Postgres.Npgsql\Nethereum.Postgres.Npgsql.csproj", "{920A45ED-90DF-4A34-A7DA-5B4EEEE84030}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nethereum.Npgsql", "Nethereum.Npgsql\Nethereum.Npgsql.csproj", "{920A45ED-90DF-4A34-A7DA-5B4EEEE84030}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nethereum.Postgres.EntityFrameworkCore", "Nethereum.Postgres.EntityFrameworkCore\Nethereum.Postgres.EntityFrameworkCore.csproj", "{38DD1A2C-9FF7-4036-8931-3455B1C76DC1}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nethereum.EntityFrameworkCore", "Nethereum.Npgsql.EntityFrameworkCore\Nethereum.Npgsql.EntityFrameworkCore.csproj", "{38DD1A2C-9FF7-4036-8931-3455B1C76DC1}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nethereum.Postgres.Npgsql.Test", "Nethereum.Postgres.Npgsql.Test\Nethereum.Postgres.Npgsql.Test.csproj", "{D0B81FBA-396B-4F2E-ACFD-2334C5433425}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nethereum.Npgsql.Test", "Nethereum.Npgsql.Test\Nethereum.Npgsql.Test.csproj", "{D0B81FBA-396B-4F2E-ACFD-2334C5433425}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using Nethereum.Util;
using Npgsql.Internal;

namespace Nethereum.Postgres.Npgsql;
namespace Nethereum.Npgsql;

public sealed class BigDecimalConverter : PgBufferedConverter<Nethereum.Util.BigDecimal>
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using Npgsql.Internal;
using Npgsql.Internal.Postgres;

namespace Nethereum.Postgres.Npgsql;
namespace Nethereum.Npgsql;

internal class BigDecimalTypeInfoResolverFactory : PgTypeInfoResolverFactory
{
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Npgsql.TypeMapping;

namespace Nethereum.Postgres.Npgsql;
namespace Nethereum.Npgsql;

public static class NpgsqlBigDecimalExtensions
{
Expand Down

0 comments on commit 8d45eb4

Please sign in to comment.