Skip to content

Commit

Permalink
Upgrade dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nihlus committed Nov 20, 2023
1 parent 1a6f569 commit 6a1e754
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 10 deletions.
1 change: 1 addition & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Build
run: |
Expand Down
12 changes: 12 additions & 0 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<Project>
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<ItemGroup>
<PackageVersion Include="Remora.Rest.Core" Version="2.2.1" />
<PackageVersion Include="Humanizer.Core" Version="2.14.1" />
<PackageVersion Include="Remora.Rest.Xunit" Version="3.0.3" />
<PackageVersion Include="Xunit.SkippableFact" Version="1.4.13" />
<PackageVersion Include="Remora.Rest" Version="3.3.2" />
</ItemGroup>
</Project>
6 changes: 3 additions & 3 deletions Remora.OAuth2.Abstractions/Remora.OAuth2.Abstractions.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<Project Sdk="Remora.Sdk/2.0.1">
<Project Sdk="Remora.Sdk">
<PropertyGroup>
<VersionPrefix>1.0.0-alpha2</VersionPrefix>
<VersionPrefix>1.0.0-alpha3</VersionPrefix>
<Description>Remora.OAuth2's implementation of OAuth2's API objects</Description>
<PackageReleaseNotes>
Initial release.
</PackageReleaseNotes>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Remora.Rest.Core" Version="2.0.5" />
<PackageReference Include="Remora.Rest.Core" />
</ItemGroup>
</Project>
1 change: 1 addition & 0 deletions Remora.OAuth2.sln
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "metadata", "metadata", "{3E
ProjectSection(SolutionItems) = preProject
Directory.Build.props = Directory.Build.props
README.md = README.md
Directory.Packages.props = Directory.Packages.props
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{D7E69F6B-49D5-4412-83E5-CA7913154058}"
Expand Down
6 changes: 3 additions & 3 deletions Remora.OAuth2/Remora.OAuth2.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Remora.Sdk/2.0.1">
<Project Sdk="Remora.Sdk">
<PropertyGroup>
<VersionPrefix>1.0.0-alpha2</VersionPrefix>
<VersionPrefix>1.0.0-alpha3</VersionPrefix>
<Description>Remora.OAuth2's implementation of OAuth2's API objects</Description>
<PackageReleaseNotes>
Initial release.
Expand All @@ -12,6 +12,6 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Remora.Rest" Version="3.1.1" />
<PackageReference Include="Remora.Rest" />
</ItemGroup>
</Project>
8 changes: 4 additions & 4 deletions Tests/Remora.OAuth.Tests/Remora.OAuth.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<Project Sdk="Remora.Tests.Sdk/2.0.2">
<Project Sdk="Remora.Tests.Sdk">
<ItemGroup>
<ProjectReference Include="..\..\Remora.OAuth2\Remora.OAuth2.csproj" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Humanizer.Core" Version="2.14.1" />
<PackageReference Include="Remora.Rest.Xunit" Version="2.0.1" />
<PackageReference Include="Xunit.SkippableFact" Version="1.4.13" />
<PackageReference Include="Humanizer.Core" />
<PackageReference Include="Remora.Rest.Xunit" />
<PackageReference Include="Xunit.SkippableFact" />
</ItemGroup>

<ItemGroup>
Expand Down
6 changes: 6 additions & 0 deletions global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"msbuild-sdks": {
"Remora.Sdk": "3.0.1",
"Remora.Tests.Sdk": "3.0.1"
}
}

0 comments on commit 6a1e754

Please sign in to comment.