Skip to content
This repository was archived by the owner on Mar 5, 2022. It is now read-only.

Commit fbd1060

Browse files
author
Gabriel Weyer
committed
Merge branch 'features/dotnet-3-1'
2 parents 966110b + 8fd7aa3 commit fbd1060

File tree

13 files changed

+278
-109
lines changed

13 files changed

+278
-109
lines changed

README.md

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

1010
| CI | Status | Platform(s) | Framework(s) |
1111
| --- | --- | --- | --- |
12-
| [AppVeyor][app-veyor] | [![Build Status][app-veyor-shield]][app-veyor] | `Windows` | `netcoreapp2.2` |
12+
| [AppVeyor][app-veyor] | [![Build Status][app-veyor-shield]][app-veyor] | `Windows` | `netcoreapp3.1` |
1313

1414
## Installation
1515

appveyor.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
image: Visual Studio 2017
1+
image: Visual Studio 2019
22
init:
33
- git config --global core.autocrlf true
44
branches:
@@ -67,8 +67,8 @@ environment:
6767
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
6868
# `install` will run before `build_script`
6969
install:
70-
# `dotnet-wad-to-csv` is targeting `netcoreapp2.1`, so we can safely install the latest `SDK`
70+
# `dotnet-wad-to-csv` is targeting `netcoreapp3.1`, so we can safely install the LTS `SDK`
7171
# The `SDK` is required to restore, build, publish... a `.NET Core` application
7272
# https://www.microsoft.com/net/download/windows
73-
- ps: .\build\dotnet-install.ps1 -Channel Current
74-
- ps: dotnet tool install --global Cake.Tool --version 0.33.0
73+
- ps: .\build\dotnet-install.ps1
74+
- ps: dotnet tool install --global Cake.Tool --version 0.35.0

bootstrap.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
dotnet tool install Cake.Tool --global --version 0.33.0
1+
dotnet tool install Cake.Tool --global --version 0.35.0
22
dotnet cake build.cake --bootstrap
33
dotnet cake build.cake

bootstrap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
dotnet tool install Cake.Tool --global --version 0.33.0
1+
dotnet tool install Cake.Tool --global --version 0.35.0
22
dotnet cake build.cake --bootstrap
33
dotnet cake build.cake

build.cake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#module nuget:?package=Cake.DotNetTool.Module&version=0.1.0
1+
#module nuget:?package=Cake.DotNetTool.Module&version=0.4.0
22

3-
#tool dotnet:?package=GitVersion.Tool&version=4.0.1-beta1-58
3+
#tool dotnet:?package=GitVersion.Tool&version=5.1.3
44

55
var target = Argument("target", "Default");
66
var configuration = Argument("configuration", "Release");

0 commit comments

Comments
 (0)