Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

- uses: actions/[email protected]
with:
dotnet-version: 2.1.815
dotnet-version: 6.0.x

- uses: actions/[email protected]
env:
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
- name: setup dotnet
uses: actions/[email protected]
with:
dotnet-version: 3.1
dotnet-version: 6.0.x
source-url: https://nuget.pkg.github.com/linked-data-dotnet/index.json
env:
NUGET_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -105,7 +105,7 @@ jobs:

- uses: actions/[email protected]
with:
dotnet-version: 2.1.401
dotnet-version: 6.0.x
source-url: https://api.nuget.org/v3/index.json
env:
NUGET_AUTH_TOKEN: ${{ secrets.NUGET_API_KEY }}
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
#> docker build -t json-ld.net .
#> docker run --rm json-ld.net dotnet test -v normal

# .NET Core 2.1 on Ubuntu 18.04 LTS
FROM mcr.microsoft.com/dotnet/core/sdk:2.1-bionic
# .NET Core 6.0 on Ubuntu 20.04 LTS
FROM mcr.microsoft.com/dotnet/sdk:6.0-focal

WORKDIR /App

Expand Down
2 changes: 1 addition & 1 deletion test/json-ld.net.tests/json-ld.net.tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netcoreapp2.1</TargetFrameworks>
<TargetFramework>net6.0</TargetFramework>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
Expand Down