Skip to content

Commit a418238

Browse files
QUnit / Runner: net6 -> net8 (DevExpress#31010)
1 parent 94ee094 commit a418238

File tree

4 files changed

+22
-7
lines changed

4 files changed

+22
-7
lines changed

.github/workflows/build_all.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
build:
12-
runs-on: devextreme-shr2
12+
runs-on: ubuntu-latest
1313

1414
steps:
1515
- name: Get sources
@@ -20,6 +20,11 @@ jobs:
2020
with:
2121
node-version: '20'
2222

23+
- name: Set up .NET
24+
uses: actions/setup-dotnet@v4
25+
with:
26+
dotnet-version: 6.0.x
27+
2328
- uses: pnpm/action-setup@v3
2429
with:
2530
version: 9

.github/workflows/ts_declarations.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
fi
6666
6767
validate-declarations:
68-
runs-on: devextreme-shr2
68+
runs-on: ubuntu-latest
6969
timeout-minutes: 60
7070
steps:
7171
- name: Get sources
@@ -76,6 +76,11 @@ jobs:
7676
with:
7777
node-version: '20'
7878

79+
- name: Set up .NET
80+
uses: actions/setup-dotnet@v4
81+
with:
82+
dotnet-version: 6.0.x
83+
7984
- uses: pnpm/action-setup@v3
8085
with:
8186
version: 9

.github/workflows/wrapper_tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
run: pnpx nx build
5757

5858
check-regenerate:
59-
runs-on: devextreme-shr2
59+
runs-on: ubuntu-latest
6060
timeout-minutes: 10
6161

6262
steps:
@@ -68,6 +68,11 @@ jobs:
6868
with:
6969
node-version: '20'
7070

71+
- name: Set up .NET
72+
uses: actions/setup-dotnet@v4
73+
with:
74+
dotnet-version: 6.0.x
75+
7176
- uses: pnpm/action-setup@v3
7277
with:
7378
version: 9

packages/devextreme/testing/runner/runner.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
<Project Sdk="Microsoft.NET.Sdk.Web" ToolsVersion="15.0">
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<ItemGroup>
4-
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.27" />
5-
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="6.0.27" />
4+
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.19" />
5+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="8.0.19" />
66
</ItemGroup>
77

88
<PropertyGroup>
9-
<TargetFramework>net6</TargetFramework>
9+
<TargetFramework>net8.0</TargetFramework>
1010
<PreserveCompilationContext>true</PreserveCompilationContext>
1111
<StartupObject>Runner.Program</StartupObject>
1212
<OutputType>Exe</OutputType>

0 commit comments

Comments
 (0)