File tree Expand file tree Collapse file tree 9 files changed +25
-18
lines changed Expand file tree Collapse file tree 9 files changed +25
-18
lines changed Original file line number Diff line number Diff line change 10
10
"rollForward" : false
11
11
},
12
12
"docfx" : {
13
- "version" : " 2.76 .0" ,
13
+ "version" : " 2.77 .0" ,
14
14
"commands" : [
15
15
" docfx"
16
16
],
17
17
"rollForward" : false
18
18
},
19
19
"dotnet-dump" : {
20
- "version" : " 8 .0.547301 " ,
20
+ "version" : " 9 .0.553101 " ,
21
21
"commands" : [
22
22
" dotnet-dump"
23
23
],
24
24
"rollForward" : false
25
25
}
26
26
}
27
- }
27
+ }
Original file line number Diff line number Diff line change @@ -163,8 +163,11 @@ jobs:
163
163
with :
164
164
fetch-depth : 0 # Get all history to allow automatic versioning using MinVer
165
165
166
- - name : Setup .NET
166
+ - name : ⚙️ Setup dotnet
167
167
uses : actions/setup-dotnet@v4
168
+ with :
169
+ dotnet-version : |
170
+ 9.0.x
168
171
169
172
- uses : actions/download-artifact@v4
170
173
with :
Original file line number Diff line number Diff line change @@ -102,7 +102,8 @@ jobs:
102
102
dotnet pack src/bunit/ -c Release --property:PackageOutputPath=${GITHUB_WORKSPACE}/packages -p:ContinuousIntegrationBuild=true -p:publicrelease=true
103
103
dotnet pack src/bunit.core/ -c Release --property:PackageOutputPath=${GITHUB_WORKSPACE}/packages -p:ContinuousIntegrationBuild=true -p:publicrelease=true
104
104
dotnet pack src/bunit.web/ -c Release --property:PackageOutputPath=${GITHUB_WORKSPACE}/packages -p:ContinuousIntegrationBuild=true -p:publicrelease=true
105
- dotnet pack src/bunit.template/ -c Release --property:PackageOutputPath=${GITHUB_WORKSPACE}/packages -p:ContinuousIntegrationBuild=true -p:publicrelease=true
105
+ dotnet pack src/bunit.generators/ -c Release --property:PackageOutputPath=${GITHUB_WORKSPACE}/packages -p:ContinuousIntegrationBuild=true -p:publicrelease=true
106
+ dotnet pack src/bunit.web.query/ -c Release --property:PackageOutputPath=${GITHUB_WORKSPACE}/packages -p:ContinuousIntegrationBuild=true -p:publicrelease=true
106
107
107
108
- name : 🛠️ Upload library to NuGet.org repository
108
109
run : |
Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ All notable changes to **bUnit** will be documented in this file. The project ad
6
6
7
7
## [ Unreleased]
8
8
9
+ ### Added
10
+ - Extension packages (` bunit.generators ` and ` bunit.web.query ` ) are flagged as stable.
11
+
9
12
## [ 1.34.0] - 2024-11-01
10
13
11
14
### Fixed
Original file line number Diff line number Diff line change 23
23
</ItemGroup >
24
24
25
25
<ItemGroup Label =" Package Versioning" >
26
- <PackageVersion Include =" Microsoft.SourceLink.GitHub" Version =" 8.0.0" />
27
26
<PackageVersion Include =" Nerdbank.GitVersioning" Version =" 3.6.146" />
28
27
</ItemGroup >
29
28
Original file line number Diff line number Diff line change @@ -60,10 +60,6 @@ See the full changelog at https://github.com/bUnit-dev/bUnit/releases
60
60
</ItemGroup >
61
61
62
62
<ItemGroup >
63
- <PackageReference Include =" Microsoft.SourceLink.GitHub" >
64
- <PrivateAssets >all</PrivateAssets >
65
- <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
66
- </PackageReference >
67
63
<PackageReference Include =" Nerdbank.GitVersioning" >
68
64
<PrivateAssets >all</PrivateAssets >
69
65
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
Original file line number Diff line number Diff line change 82
82
"description" : " The target framework sdk for the project." ,
83
83
"displayName" : " Target framework sdk" ,
84
84
"datatype" : " choice" ,
85
- "defaultValue" : " net7 .0" ,
85
+ "defaultValue" : " net9 .0" ,
86
86
"replaces" : " targetSdk" ,
87
87
"choices" : [
88
88
{
99
99
"choice" : " net8.0" ,
100
100
"description" : " .net 8.0" ,
101
101
"displayName" : " .net 8.0"
102
+ },
103
+ {
104
+ "choice" : " net9.0" ,
105
+ "description" : " .net 9.0" ,
106
+ "displayName" : " .net 9.0"
102
107
}
103
108
]
104
109
}
Original file line number Diff line number Diff line change 25
25
</ItemGroup >
26
26
27
27
<ItemGroup Condition =" '$(testFramework_xunit)' == 'true'" >
28
- <PackageReference Include =" xunit" Version =" 2.9.0 " />
29
- <PackageReference Include =" xunit.runner.visualstudio" Version =" 2.5.4 " >
28
+ <PackageReference Include =" xunit" Version =" 2.9.2 " />
29
+ <PackageReference Include =" xunit.runner.visualstudio" Version =" 2.8.2 " >
30
30
<PrivateAssets >all</PrivateAssets >
31
31
<IncludeAssets >runtime; build; native; contentfiles; analyzers</IncludeAssets >
32
32
</PackageReference >
33
33
</ItemGroup >
34
34
35
35
<ItemGroup Condition =" '$(testFramework_nunit)' == 'true'" >
36
- <PackageReference Include =" NUnit" Version =" 3.14.0 " />
37
- <PackageReference Include =" NUnit3TestAdapter" Version =" 4.5 .0" />
36
+ <PackageReference Include =" NUnit" Version =" 4.2.2 " />
37
+ <PackageReference Include =" NUnit3TestAdapter" Version =" 4.6 .0" />
38
38
</ItemGroup >
39
39
40
40
<ItemGroup Condition =" '$(testFramework_mstest)' == 'true'" >
41
- <PackageReference Include =" MSTest.TestAdapter" Version =" 3.1.1 " />
42
- <PackageReference Include =" MSTest.TestFramework" Version =" 3.1.1 " />
41
+ <PackageReference Include =" MSTest.TestAdapter" Version =" 3.6.2 " />
42
+ <PackageReference Include =" MSTest.TestFramework" Version =" 3.6.2 " />
43
43
</ItemGroup >
44
44
45
45
</Project >
Original file line number Diff line number Diff line change 1
1
{
2
2
"$schema" : " https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/main/src/NerdBank.GitVersioning/version.schema.json" ,
3
- "version" : " 1.34 " ,
3
+ "version" : " 1.35 " ,
4
4
"assemblyVersion" : {
5
5
"precision" : " revision"
6
6
},
You can’t perform that action at this time.
0 commit comments