Skip to content

Commit

Permalink
Revert custom namespace for abstractions
Browse files Browse the repository at this point in the history
  • Loading branch information
glucaci committed Oct 2, 2023
1 parent 83bd9c9 commit 51c8a64
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Session.Abstractions/ISession.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Threading;
using System.Threading.Tasks;

namespace MongoDB.Extensions.Session.Abstractions;
namespace MongoDB.Extensions.Session;

public interface ISession : IDisposable
{
Expand Down
2 changes: 1 addition & 1 deletion src/Session.Abstractions/ISessionProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Threading.Tasks;
using MongoDB.Extensions.Context;

namespace MongoDB.Extensions.Session.Abstractions;
namespace MongoDB.Extensions.Session;

public interface ISessionProvider<TContext>
where TContext : IMongoDbContext
Expand Down
2 changes: 1 addition & 1 deletion src/Session.Abstractions/ITransactionSession.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Threading.Tasks;

namespace MongoDB.Extensions.Session.Abstractions;
namespace MongoDB.Extensions.Session;

public interface ITransactionSession : IDisposable
{
Expand Down
2 changes: 1 addition & 1 deletion src/Session.Abstractions/Session.Abstractions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<PropertyGroup>
<AssemblyName>MongoDB.Extensions.Session.Abstractions</AssemblyName>
<RootNamespace>MongoDB.Extensions.Session.Abstractions</RootNamespace>
<RootNamespace>MongoDB.Extensions.Session</RootNamespace>
<PackageId>MongoDB.Extensions.Session.Abstractions</PackageId>
</PropertyGroup>

Expand Down

0 comments on commit 51c8a64

Please sign in to comment.