Skip to content

Commit

Permalink
Merge pull request #6 from xztaityozx/upgrade/dotnet-sdk-7.0.x
Browse files Browse the repository at this point in the history
upgdade target sdk version
  • Loading branch information
xztaityozx authored Apr 24, 2023
2 parents c9934c1 + 357ed1a commit 8849105
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
dotnet-version: [3.1]
dotnet-version: [7.0.x]
env:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
NUGET_XMLDOC_MODE: skip

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/cache@v1
with:
path: ${{ github.workspace }}/.nuget/packages
Expand All @@ -37,7 +37,7 @@ jobs:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macOS-latest]
dotnet-version: [3.1]
dotnet-version: [7.0.x]
runs-on: ${{ matrix.os }}
env:
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
Expand All @@ -52,9 +52,9 @@ jobs:
env:
TAG_REF_NAME: ${{ github.ref }}

- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: actions/cache@v1
- uses: actions/cache@v2
with:
path: ${{ github.workspace }}/.nuget/packages
key: nuget-${{ matrix.os }}-${{ matrix.dotnet-version }}
Expand Down
2 changes: 1 addition & 1 deletion noc/Test/Test.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net7.0</TargetFramework>

<IsPackable>false</IsPackable>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion noc/noc/noc.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
<Version>1.2</Version>
<PackageLicenseUrl />
Expand Down

0 comments on commit 8849105

Please sign in to comment.