Skip to content

Commit 48e39ae

Browse files
committed
Added .NET 6.0 support
+ Updated nodejs to 16.0 in SDK image
1 parent 9169298 commit 48e39ae

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.drone.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: build-test-and-publish
33

44
steps:
55
- name: build-test-and-publish
6-
image: mcr.microsoft.com/dotnet/sdk:5.0
6+
image: mcr.microsoft.com/dotnet/sdk:6.0
77
environment:
88
NUGET_SERVER_ADRESS:
99
from_secret: NUGET_SERVER_ADRESS

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:5.0
1+
FROM mcr.microsoft.com/dotnet/sdk:6.0
22
WORKDIR /app
33

44
ARG SONAR_HOST
@@ -14,7 +14,7 @@ RUN apt-get update
1414
# Next line fix openjdk11 install
1515
RUN mkdir -p /usr/share/man/man1
1616
RUN apt install openjdk-11-jdk jq -y
17-
RUN curl -sL https://deb.nodesource.com/setup_12.x | bash -
17+
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash -
1818
RUN apt-get install -y nodejs
1919

2020
# Build Project

Dysnomia.Common.WebAPIWrapper/Dysnomia.Common.WebAPIWrapper.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-
<TargetFrameworks>netcoreapp3.0;netcoreapp3.1;net5.0</TargetFrameworks>
4+
<TargetFrameworks>netcoreapp3.0;netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
55
<Authors>Axel "Elanis" Soupé</Authors>
66
<Company>Dysnomia</Company>
77
<Description>A C# library to easily get data from Web API. It's used in our Web API wrapper like Steam, Blizzard, etc.</Description>

0 commit comments

Comments
 (0)