Skip to content

Commit 9617286

Browse files
committed
Update runtime and packages
1 parent a9f23ad commit 9617286

File tree

5 files changed

+38
-30
lines changed

5 files changed

+38
-30
lines changed

.config/dotnet-tools.json

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,18 @@
33
"isRoot": true,
44
"tools": {
55
"husky": {
6-
"version": "0.7.1",
6+
"version": "0.7.2",
77
"commands": [
88
"husky"
9-
]
9+
],
10+
"rollForward": false
1011
},
1112
"csharpier": {
12-
"version": "0.29.2",
13+
"version": "1.0.2",
1314
"commands": [
14-
"dotnet-csharpier"
15-
]
15+
"csharpier"
16+
],
17+
"rollForward": false
1618
}
1719
}
1820
}

.husky/task-runner.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
{
44
"name": "Run csharpier on staged files",
55
"group": "pre-commit",
6-
"command": "dotnet",
7-
"args": ["csharpier", "${staged}"],
6+
"command": "csharpier",
7+
"args": ["format", "${staged}"],
88
"include": ["**/*.cs"]
99
},
1010
{
1111
"name": "Check csharpier on entire repository",
1212
"group": "verify",
13-
"command": "dotnet",
14-
"args": ["csharpier", "."],
13+
"command": "csharpier",
14+
"args": ["format", "."],
1515
"include": ["**/*.cs"]
1616
}
1717
]

.nuke/build.schema.json

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,5 @@
11
{
22
"$schema": "http://json-schema.org/draft-04/schema#",
3-
"properties": {
4-
"Configuration": {
5-
"type": "string",
6-
"description": "Configuration to build - Default is 'Debug' (local) or 'Release' (server)",
7-
"enum": [
8-
"Debug",
9-
"Release"
10-
]
11-
},
12-
"Solution": {
13-
"type": "string",
14-
"description": "Path to a solution file that is automatically loaded"
15-
}
16-
},
173
"definitions": {
184
"Host": {
195
"type": "string",
@@ -114,5 +100,25 @@
114100
}
115101
}
116102
},
117-
"$ref": "#/definitions/NukeBuild"
103+
"allOf": [
104+
{
105+
"properties": {
106+
"Configuration": {
107+
"type": "string",
108+
"description": "Configuration to build - Default is 'Debug' (local) or 'Release' (server)",
109+
"enum": [
110+
"Debug",
111+
"Release"
112+
]
113+
},
114+
"Solution": {
115+
"type": "string",
116+
"description": "Path to a solution file that is automatically loaded"
117+
}
118+
}
119+
},
120+
{
121+
"$ref": "#/definitions/NukeBuild"
122+
}
123+
]
118124
}

Geo.Tests/Geo.Tests.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
11-
<PackageReference Include="xunit" Version="2.9.2" />
12-
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
10+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
11+
<PackageReference Include="xunit" Version="2.9.3" />
12+
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.1">
1313
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1414
<PrivateAssets>all</PrivateAssets>
1515
</PackageReference>
16-
<PackageReference Include="coverlet.collector" Version="6.0.2">
16+
<PackageReference Include="coverlet.collector" Version="6.0.4">
1717
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1818
<PrivateAssets>all</PrivateAssets>
1919
</PackageReference>

build/_build.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net6.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<RootNamespace></RootNamespace>
77
<NoWarn>CS0649;CS0169;CA1050;CA1822;CA2211;IDE1006</NoWarn>
88
<NukeRootDirectory>..</NukeRootDirectory>
@@ -12,7 +12,7 @@
1212
</PropertyGroup>
1313

1414
<ItemGroup>
15-
<PackageReference Include="Nuke.Common" Version="8.1.0" />
15+
<PackageReference Include="Nuke.Common" Version="9.0.4" />
1616
</ItemGroup>
1717

1818
</Project>

0 commit comments

Comments
 (0)