From b7b1cab39c24cca3a61bbcc1ed46c39e2aacbd2e Mon Sep 17 00:00:00 2001 From: jct Date: Tue, 19 Oct 2021 08:55:02 +0000 Subject: [PATCH 1/3] Change to .NET6 --- .drone.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index a2db58e..6e98d3a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -2,6 +2,6 @@ kind: pipeline name: default steps: - name: build - image: mono + image: mcr.microsoft.com/dotnet/sdk:6.0 commands: - - msbuild Tidstagning.sln \ No newline at end of file + - dotnet publish -c release -o out -r win-x64 --self-contained true \ No newline at end of file From bc9a13f69ffa593c70d1ce48b1b90c3b8b1b221e Mon Sep 17 00:00:00 2001 From: jct Date: Tue, 19 Oct 2021 08:58:19 +0000 Subject: [PATCH 2/3] Debug build and x86 --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 6e98d3a..a13720b 100644 --- a/.drone.yml +++ b/.drone.yml @@ -4,4 +4,4 @@ steps: - name: build image: mcr.microsoft.com/dotnet/sdk:6.0 commands: - - dotnet publish -c release -o out -r win-x64 --self-contained true \ No newline at end of file + - dotnet publish -c Debug -o out -r win-x86 --self-contained true \ No newline at end of file From af0bd10ce7c3456f4ffd21e09f63e8743a30052b Mon Sep 17 00:00:00 2001 From: Jens Christian True Date: Mon, 2 May 2022 10:20:08 +0200 Subject: [PATCH 3/3] WinForm Apps can not be built under linux --- .drone.yml | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index a13720b..0000000 --- a/.drone.yml +++ /dev/null @@ -1,7 +0,0 @@ -kind: pipeline -name: default -steps: -- name: build - image: mcr.microsoft.com/dotnet/sdk:6.0 - commands: - - dotnet publish -c Debug -o out -r win-x86 --self-contained true \ No newline at end of file