Skip to content

Commit 24e1afe

Browse files
authored
Merge pull request #111 from Aguafrommars/fix/dependencies
update packages
2 parents 8eefa3d + a0cde36 commit 24e1afe

18 files changed

+44
-46
lines changed

GitVersion.yml

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
mode: ContinuousDelivery
22
branches:
33
master:
4-
tag: ci
5-
is-mainline: false
4+
regex: master
5+
label: ci
6+
is-main-branch: false
67
release:
7-
regex: release?[/-]
8-
tag: ''
9-
is-mainline: true
8+
regex: release/
9+
label: ''
10+
is-main-branch: true
1011
preview:
11-
regex: preview?[/-]
12-
tag: 'preview'
13-
is-mainline: true
12+
regex: preview/
13+
label: 'preview'
14+
is-main-branch: true
1415
source-branches: ['master']
1516
ignore:
16-
sha: []
17+
sha: []

appveyor.yml

+2-12
Original file line numberDiff line numberDiff line change
@@ -9,27 +9,17 @@ branches:
99
- /preview*/
1010
- /release*/
1111
image:
12-
- Ubuntu2004
1312
- Visual Studio 2022
1413
environment:
1514
GH_TOKEN:
1615
secure: /o9VAhx5ewGmdLR9qcgFJMzBaCuzOmGlsXAHu7khUJLdQzsv4gJzLUfYDghcRPHd
17-
donetsdk: 8.0.204
16+
donetsdk: 9.0.101
1817
JAVA_HOME: C:\Program Files\Java\jdk14
1918
init:
2019
- cmd: git config --global core.autocrlf true
2120
install:
2221
- ps: if ($isWindows) { Install-Product node '' }
23-
- sh: wget -q https://packages.microsoft.com/config/ubuntu/16.04/packages-microsoft-prod.deb
24-
- sh: sudo dpkg -i packages-microsoft-prod.deb
25-
- sh: sudo apt-get -y install apt-transport-https
26-
- sh: sudo apt-get update
27-
- sh: sudo chmod +x ./dotnet-install.sh
28-
- sh: sudo ./dotnet-install.sh -Channel Current -Version $donetsdk -InstallDir ./dotnetsdk -NoPath
29-
- sh: export PATH=/home/appveyor/projects/identity-ravendb/dotnetsdk:$PATH
30-
- sh: sudo ./dotnet-install.sh -Channel Current -Version 7.0.404 -InstallDir ./dotnetsdk -NoPath
31-
- sh: sudo apt -y install nuget
32-
- cmd: pwsh .\dotnet-install.ps1 -Version 7.0.404
22+
- cmd: pwsh .\dotnet-install.ps1 -Version 8.0.404
3323
- ps: dotnet tool install --global GitVersion.Tool
3424
- ps: dotnet gitversion /l console /output buildserver
3525
- ps: if ($isWindows) { .\dotnet-install.ps1 -Version $env:donetsdk }

samples/IdentitySample/IdentitySample.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<UserSecretsId>aspnet-IdentitySample-53059465-1594-4172-B15F-87EB53E1391B</UserSecretsId>
66
<EnablePreviewFeatures>True</EnablePreviewFeatures>
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="8.0.6" />
10+
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="9.0.0" />
1111
</ItemGroup>
1212

1313
<ItemGroup>

src/Aguacongas.Identity.RavenDb/Aguacongas.Identity.RavenDb.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
</ItemGroup>
2626

2727
<ItemGroup>
28-
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.1" />
29-
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="8.0.6" />
30-
<PackageReference Include="RavenDB.Client" Version="6.0.103" />
28+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.0" />
29+
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="9.0.0" />
30+
<PackageReference Include="RavenDB.Client" Version="6.2.2" />
3131
</ItemGroup>
3232
</Project>

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/Aguacongas.Identity.RavenDb.IntegrationTest.csproj

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55

66
<IsPackable>false</IsPackable>
77
<EnablePreviewFeatures>True</EnablePreviewFeatures>
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="coverlet.collector" Version="6.0.2">
11+
<PackageReference Include="coverlet.collector" Version="6.0.3">
1212
<PrivateAssets>all</PrivateAssets>
1313
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1414
</PackageReference>
1515
<PackageReference Include="Microsoft.AspNetCore.Identity.Specification.Tests" Version="5.0.17" />
16-
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="8.0.0" />
17-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
18-
<PackageReference Include="RavenDB.TestDriver" Version="6.0.103" />
19-
<PackageReference Include="xunit" Version="2.8.1" />
20-
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.1">
16+
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="9.0.0" />
17+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
18+
<PackageReference Include="RavenDB.TestDriver" Version="6.2.2" />
19+
<PackageReference Include="xunit" Version="2.9.2" />
20+
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.0">
2121
<PrivateAssets>all</PrivateAssets>
2222
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
2323
</PackageReference>

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

+8-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 Raven.Client.Documents;
44
using Raven.TestDriver;
55
using System.Runtime.CompilerServices;
@@ -19,6 +19,13 @@ public RavenDbTestFixture()
1919

2020
class RavenDbTestDriverWrapper : RavenTestDriver
2121
{
22+
static RavenDbTestDriverWrapper()
23+
{
24+
var testServerOptions = new TestServerOptions();
25+
testServerOptions.Licensing.ThrowOnInvalidOrMissingLicense = false;
26+
ConfigureServer(testServerOptions);
27+
}
28+
2229
public new IDocumentStore GetDocumentStore(GetDocumentStoreOptions options = null, [CallerMemberName] string database = null)
2330
=> base.GetDocumentStore(options, database);
2431

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)