Skip to content

Commit 5c537a2

Browse files
committed
Update to .NET 7
1 parent a4e724c commit 5c537a2

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/checkout@v3
1111
- uses: actions/setup-dotnet@v3
1212
with:
13-
dotnet-version: 6.0.x
13+
dotnet-version: 7.0.x
1414
- run: dotnet pack
1515
- run: dotnet nuget push 'ScipDotnet/bin/Debug/*.nupkg' --source 'nuget.org' --api-key '${{ secrets.NUGET_APIKEY }}' --skip-duplicate
1616

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v3
1515
- uses: actions/setup-dotnet@v3
1616
with:
17-
dotnet-version: 6.0.x
17+
dotnet-version: 7.0.x
1818
- run: dotnet format --verify-no-changes
1919
- run: dotnet format --verify-no-changes
2020
working-directory: snapshots/input/syntax
@@ -29,5 +29,5 @@ jobs:
2929
- uses: actions/checkout@v3
3030
- uses: actions/setup-dotnet@v3
3131
with:
32-
dotnet-version: 6.0.x
32+
dotnet-version: 7.0.x
3333
- run: dotnet test

ScipDotnet.Tests/ScipDotnet.Tests.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>net7.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<IsPackable>false</IsPackable>

ScipDotnet/ScipDotnet.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net6.0</TargetFramework>
5+
<TargetFramework>net7.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
<Version>0.1.4-beta</Version>

0 commit comments

Comments
 (0)