Skip to content

Commit 4c2057c

Browse files
committed
Bugfixes in v2.0
1 parent 704c648 commit 4c2057c

File tree

118 files changed

+265
-194
lines changed

Some content is hidden

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

118 files changed

+265
-194
lines changed

src/Server/Coderr.Server.App/Coderr.Server.App.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,5 @@
2222
<ProjectReference Include="..\Coderr.Server.Domain\Coderr.Server.Domain.csproj" />
2323
<ProjectReference Include="..\Coderr.Server.Infrastructure\Coderr.Server.Infrastructure.csproj" />
2424
<ProjectReference Include="..\Coderr.Server.Abstractions\Coderr.Server.Abstractions.csproj" />
25-
<ProjectReference Include="..\Coderr.Server.ReportAnalyzer.Abstractions\Coderr.Server.ReportAnalyzer.Abstractions.csproj" />
2625
</ItemGroup>
2726
</Project>

src/Server/Coderr.Server.App/Core/Accounts/AccountService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
using Coderr.Server.Domain.Core.Account;
1313
using Coderr.Server.Domain.Core.Applications;
1414
using Coderr.Server.Infrastructure.Security;
15-
using Coderr.Server.ReportAnalyzer.Abstractions;
15+
1616
using DotNetCqs;
1717
using log4net;
1818

src/Server/Coderr.Server.App/Core/Accounts/CommandHandlers/RegisterAccountHandler.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
using Coderr.Server.Domain.Core.Account;
99
using Coderr.Server.Infrastructure.Configuration;
1010
using DotNetCqs;
11-
using Coderr.Server.ReportAnalyzer.Abstractions;
1211
using log4net;
1312

1413
namespace Coderr.Server.App.Core.Accounts.CommandHandlers

src/Server/Coderr.Server.App/Core/Accounts/CommandHandlers/RegisterSimpleHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
using Coderr.Server.Domain.Core.Account;
1010
using Coderr.Server.Infrastructure.Configuration;
1111
using DotNetCqs;
12-
using Coderr.Server.ReportAnalyzer.Abstractions;
12+
1313
using log4net;
1414

1515
namespace Coderr.Server.App.Core.Accounts.CommandHandlers

src/Server/Coderr.Server.App/Core/Accounts/CommandHandlers/RequestPasswordResetHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using Coderr.Server.Domain.Core.Account;
66
using Coderr.Server.Infrastructure.Configuration;
77
using DotNetCqs;
8-
using Coderr.Server.ReportAnalyzer.Abstractions;
8+
99
using log4net;
1010

1111
namespace Coderr.Server.App.Core.Accounts.CommandHandlers

src/Server/Coderr.Server.App/Core/Accounts/Queries/FindAccountByUserNameHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using Coderr.Server.Api.Core.Accounts.Queries;
44
using Coderr.Server.Domain.Core.Account;
55
using DotNetCqs;
6-
using Coderr.Server.ReportAnalyzer.Abstractions;
6+
77

88
namespace Coderr.Server.App.Core.Accounts.Queries
99
{

src/Server/Coderr.Server.App/Core/Accounts/Queries/GetAccountQueryHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using Coderr.Server.Api.Core.Accounts.Queries;
44
using Coderr.Server.Domain.Core.Account;
55
using DotNetCqs;
6-
using Coderr.Server.ReportAnalyzer.Abstractions;
6+
77

88
namespace Coderr.Server.App.Core.Accounts.Queries
99
{

src/Server/Coderr.Server.App/Core/ApiKeys/Events/ApplicationDeletedHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Threading.Tasks;
33
using Coderr.Server.Api.Core.Applications.Events;
44
using DotNetCqs;
5-
using Coderr.Server.ReportAnalyzer.Abstractions;
5+
66

77
namespace Coderr.Server.App.Core.ApiKeys.Events
88
{

src/Server/Coderr.Server.App/Core/Applications/CommandHandlers/CreateApplicationHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using Coderr.Server.Domain.Core.Applications;
66
using Coderr.Server.Domain.Core.User;
77
using DotNetCqs;
8-
using Coderr.Server.ReportAnalyzer.Abstractions;
8+
99

1010
namespace Coderr.Server.App.Core.Applications.CommandHandlers
1111
{

src/Server/Coderr.Server.App/Core/Applications/CommandHandlers/DeleteApplicationHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using Coderr.Server.Domain.Core.Applications;
66
using Coderr.Server.Infrastructure.Security;
77
using DotNetCqs;
8-
using Coderr.Server.ReportAnalyzer.Abstractions;
8+
99

1010
namespace Coderr.Server.App.Core.Applications.CommandHandlers
1111
{

0 commit comments

Comments
 (0)