Skip to content

Commit af30683

Browse files
committed
switch to dotnet 8.0
1 parent 59f1c42 commit af30683

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/Release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
with:
1818
fetch-depth: 0
1919
- name: setup dotnet
20-
uses: actions/setup-dotnet@v1
20+
uses: actions/setup-dotnet@v4
2121
with:
22-
dotnet-version: '6.0.x'
22+
dotnet-version: '8.0.x'
2323
include-prerelease: true
2424
- name: restore packages
2525
run: dotnet restore

.github/workflows/SeleniumProjectTests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v3
1818
- name: Setup .NET
19-
uses: actions/setup-dotnet@v2
19+
uses: actions/setup-dotnet@v4
2020
with:
21-
dotnet-version: '6.0.x'
21+
dotnet-version: '8.0.x'
2222
- name: Restore dependencies
2323
run: dotnet restore
2424
- name: Build

Behavioral.Automation.Selenium/Behavioral.Automation.Template/Behavioral.Automation.Template.Bindings/Behavioral.Automation.Template.Bindings.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<IsPackable>false</IsPackable>
66
<Authors>Quantori Inc.</Authors>
77
<Description>Demo project that can be used as example of test configuration.</Description>

Behavioral.Automation.Selenium/Behavioral.Automation.Template/Behavioral.Automation.Template.Scenarios/Behavioral.Automation.Template.Scenarios.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<Authors>Quantori Inc.</Authors>
66
<Description>Specflow scenarios for demonstration of Behavioral.Automation framework features and testing.</Description>
77
<Copyright>Quantori Inc.</Copyright>

0 commit comments

Comments
 (0)