File tree 3 files changed +16
-8
lines changed
src/bunit.template/template
3 files changed +16
-8
lines changed 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 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 >
You can’t perform that action at this time.
0 commit comments