Skip to content

Commit 720e1f5

Browse files
committed
Package updates
1 parent 4dfbeab commit 720e1f5

File tree

7 files changed

+10
-9
lines changed

7 files changed

+10
-9
lines changed

.config/dotnet-tools.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
"isRoot": true,
44
"tools": {
55
"jetbrains.resharper.globaltools": {
6-
"version": "2023.1.0",
6+
"version": "2023.1.2",
77
"commands": [
88
"jb"
99
]
1010
},
1111
"regitlint": {
12-
"version": "6.3.10",
12+
"version": "6.3.11",
1313
"commands": [
1414
"regitlint"
1515
]
@@ -21,13 +21,13 @@
2121
]
2222
},
2323
"dotnet-reportgenerator-globaltool": {
24-
"version": "5.1.19",
24+
"version": "5.1.20",
2525
"commands": [
2626
"reportgenerator"
2727
]
2828
},
2929
"docfx": {
30-
"version": "2.62.2",
30+
"version": "2.67.1",
3131
"commands": [
3232
"docfx"
3333
]

Directory.Build.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@
3535
<PropertyGroup>
3636
<CoverletVersion>3.2.*</CoverletVersion>
3737
<MoqVersion>4.18.*</MoqVersion>
38-
<TestSdkVersion>17.5.*</TestSdkVersion>
38+
<TestSdkVersion>17.6.*</TestSdkVersion>
3939
</PropertyGroup>
4040
</Project>

docs/build-dev.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ if (-Not $NoBuild -Or -Not (Test-Path -Path _site)) {
3737
Invoke-Expression ./generate-examples.ps1
3838
}
3939

40+
dotnet tool restore
41+
VerifySuccessExitCode
42+
4043
dotnet docfx ./docfx.json
4144
VerifySuccessExitCode
4245

docs/docfx.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"dest": "_site",
4141
"globalMetadataFiles": [],
4242
"fileMetadataFiles": [],
43-
"template": [ "default" ],
43+
"template": [ "default", "modern" ],
4444
"postProcessors": [],
4545
"noLangKeyword": false,
4646
"keepFileLink": false,

src/JsonApiDotNetCore.Annotations/JsonApiDotNetCore.Annotations.csproj

-1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,5 @@
4848

4949
<ItemGroup>
5050
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
51-
<PackageReference Include="SauceControl.InheritDoc" Version="1.3.0" PrivateAssets="All" />
5251
</ItemGroup>
5352
</Project>

src/JsonApiDotNetCore/JsonApiDotNetCore.csproj

-1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,5 @@
4242
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.0" />
4343
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.0" />
4444
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
45-
<PackageReference Include="SauceControl.InheritDoc" Version="1.3.0" PrivateAssets="All" />
4645
</ItemGroup>
4746
</Project>

test/TestBuildingBlocks/TestBuildingBlocks.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<ItemGroup>
1111
<PackageReference Include="Bogus" Version="34.0.2" />
1212
<PackageReference Include="coverlet.collector" Version="$(CoverletVersion)" PrivateAssets="All" />
13-
<PackageReference Include="FluentAssertions" Version="6.10.0" />
13+
<PackageReference Include="FluentAssertions" Version="6.11.0" />
1414
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="$(AspNetVersion)" />
1515
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="$(EFCoreVersion)" />
1616
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(TestSdkVersion)" />

0 commit comments

Comments
 (0)