You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
run: make fs-compat-test fw=net8.0 # Always run compatibility tests on the latest framework
178
-
180
+
run: make fs-compat-test
181
+
179
182
Visual_Basic_Compatibility:
180
-
runs-on: windows-2022
183
+
runs-on: windows-latest
181
184
steps:
182
-
183
-
- uses: actions/checkout@v3
185
+
- uses: actions/checkout@v4
184
186
with:
185
187
submodules: true
186
188
187
189
- name: Install .NET SDK
188
-
uses: actions/setup-dotnet@v3
190
+
uses: actions/setup-dotnet@v4
189
191
with:
190
192
dotnet-version: 9.x.x
191
193
192
194
- name: Setup MSBuild
193
-
uses: microsoft/setup-msbuild@v1.1.2
195
+
uses: microsoft/setup-msbuild@v2
194
196
195
197
- name: Setup Nuget
196
-
uses: NuGet/setup-nuget@v1.1.1
198
+
uses: NuGet/setup-nuget@v2
197
199
198
200
- name: Setup VSTest
199
-
uses: darenm/Setup-VSTest@v1.2
201
+
uses: darenm/Setup-VSTest@v1.3
200
202
201
203
- name: Restore NuGet Packages
202
204
run: make restore
@@ -207,8 +209,7 @@ jobs:
207
209
208
210
# Build the test project
209
211
- name: Build Solution
210
-
run: make vb-compat-test fw=net8.0 # Always run compatibility tests on the latest framework
211
-
212
+
run: make vb-compat-test
212
213
# .NET Standard notes:
213
214
# - NET Standard 2.0 is compatible with minimum .NET Framework 4.6.1: https://docs.microsoft.com/en-us/dotnet/standard/net-standard?tabs=net-standard-2-0
214
215
# - NET Framework 4.6.1 is EOL after April 26, 2022, due to its security concerns (was affected by the SHA-1 crack): https://dotnet.microsoft.com/en-us/platform/support/policy/dotnet-framework
0 commit comments