Skip to content

Commit a0cde36

Browse files
Olivier LefebvreOlivier Lefebvre
Olivier Lefebvre
authored and
Olivier Lefebvre
committed
style: update copyright year to 2025 and clean up code
This commit updates the copyright year from 2021 to 2025 in multiple source files, reflecting the current maintenance status of the code. Affected files include `IdentityBuilderExtensions.cs`, `RoleData.cs`, `UserData.cs`, `RoleStore.cs`, `UserStoreBase.cs`, `UserOnlyStore.cs`, `UserStore.cs`, `RavenDbTestFixture.cs`, `TestLogger.cs`, `TestLoggerProvider.cs`, `TestRole.cs`, `TestUser.cs`, and `UserStoreTest.cs`. Additionally, some unnecessary using directives have been removed, such as `using Raven.Embedded;` in `RavenDbTestFixture.cs`, indicating potential refactoring or dependency updates.
1 parent dda9250 commit a0cde36

File tree

13 files changed

+13
-14
lines changed

13 files changed

+13
-14
lines changed

src/Aguacongas.Identity.RavenDb/IdentityBuilderExtensions.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Project: Aguafrommars/Identity.RavenDb
2-
// Copyright (c) 2021 Olivier Lefebvre
2+
// Copyright (c) 2025 Olivier Lefebvre
33
using Aguacongas.Identity.RavenDb;
44
using Microsoft.AspNetCore.Identity;
55
using Microsoft.Extensions.DependencyInjection.Extensions;

src/Aguacongas.Identity.RavenDb/Models/RoleData.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Project: Aguafrommars/Identity.RavenDb
2-
// Copyright (c) 2021 Olivier Lefebvre
2+
// Copyright (c) 2025 Olivier Lefebvre
33
using System.Collections.Generic;
44

55
namespace Aguacongas.Identity.RavenDb

src/Aguacongas.Identity.RavenDb/Models/UserData.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Project: Aguafrommars/Identity.RavenDb
2-
// Copyright (c) 2021 Olivier Lefebvre
2+
// Copyright (c) 2025 Olivier Lefebvre
33
using System.Collections.Generic;
44

55
namespace Aguacongas.Identity.RavenDb

src/Aguacongas.Identity.RavenDb/RoleStore.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Project: Aguafrommars/Identity.RavenDb
2-
// Copyright (c) 2021 Olivier Lefebvre
2+
// Copyright (c) 2025 Olivier Lefebvre
33
using Microsoft.AspNetCore.Identity;
44
using Raven.Client.Documents;
55
using Raven.Client.Documents.Session;

src/Aguacongas.Identity.RavenDb/Stores/UserStoreBase.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Project: Aguafrommars/Identity.RavenDb
2-
// Copyright (c) 2021 Olivier Lefebvre
2+
// Copyright (c) 2025 Olivier Lefebvre
33
using Microsoft.AspNetCore.Identity;
44
using System;
55
using System.Collections.Generic;

src/Aguacongas.Identity.RavenDb/UserOnlyStore.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Project: Aguafrommars/Identity.RavenDb
2-
// Copyright (c) 2021 Olivier Lefebvre
2+
// Copyright (c) 2025 Olivier Lefebvre
33
using Microsoft.AspNetCore.Identity;
44
using Raven.Client.Documents;
55
using Raven.Client.Documents.Session;

src/Aguacongas.Identity.RavenDb/UserStore.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Project: Aguafrommars/Identity.RavenDb
2-
// Copyright (c) 2021 Olivier Lefebvre
2+
// Copyright (c) 2025 Olivier Lefebvre
33
using Microsoft.AspNetCore.Identity;
44
using Raven.Client.Documents.Session;
55
using System;

test/Aguacongas.Identity.RavenDb.IntegrationTest/RavenDbTestFixture.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// Project: Aguafrommars/Identity.RavenDb
2-
// Copyright (c) 2021 Olivier Lefebvre
2+
// Copyright (c) 2025 Olivier Lefebvre
33
using Raven.Client.Documents;
4-
using Raven.Embedded;
54
using Raven.TestDriver;
65
using System.Runtime.CompilerServices;
76

test/Aguacongas.Identity.RavenDb.IntegrationTest/TestLogger.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Project: Aguafrommars/Identity.RavenDb
2-
// Copyright (c) 2021 Olivier Lefebvre
2+
// Copyright (c) 2025 Olivier Lefebvre
33
using Microsoft.Extensions.Logging;
44
using System;
55
using Xunit.Abstractions;

test/Aguacongas.Identity.RavenDb.IntegrationTest/TestLoggerProvider.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Project: Aguafrommars/Identity.RavenDb
2-
// Copyright (c) 2021 Olivier Lefebvre
2+
// Copyright (c) 2025 Olivier Lefebvre
33
using Microsoft.Extensions.Logging;
44
using System.Diagnostics.CodeAnalysis;
55
using Xunit.Abstractions;

test/Aguacongas.Identity.RavenDb.IntegrationTest/TestRole.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Project: Aguafrommars/Identity.RavenDb
2-
// Copyright (c) 2021 Olivier Lefebvre
2+
// Copyright (c) 2025 Olivier Lefebvre
33
using Microsoft.AspNetCore.Identity;
44

55
namespace Aguacongas.Identity.RavenDb.IntegrationTest

test/Aguacongas.Identity.RavenDb.IntegrationTest/TestUser.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Project: Aguafrommars/Identity.RavenDb
2-
// Copyright (c) 2021 Olivier Lefebvre
2+
// Copyright (c) 2025 Olivier Lefebvre
33
using Microsoft.AspNetCore.Identity;
44

55
namespace Aguacongas.Identity.RavenDb.IntegrationTest

test/Aguacongas.Identity.RavenDb.IntegrationTest/UserStoreTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Project: Aguafrommars/Identity.RavenDb
2-
// Copyright (c) 2021 Olivier Lefebvre
2+
// Copyright (c) 2025 Olivier Lefebvre
33
using Microsoft.AspNetCore.Identity;
44
using Microsoft.AspNetCore.Identity.Test;
55
using Microsoft.Extensions.DependencyInjection;

0 commit comments

Comments
 (0)