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

Commit

Permalink
Migrate to .NET Core 3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Weyer committed Dec 29, 2019
1 parent 966110b commit 8fd7aa3
Show file tree
Hide file tree
Showing 13 changed files with 278 additions and 109 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

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

## Installation

Expand Down
8 changes: 4 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
image: Visual Studio 2017
image: Visual Studio 2019
init:
- git config --global core.autocrlf true
branches:
Expand Down Expand Up @@ -67,8 +67,8 @@ environment:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
# `install` will run before `build_script`
install:
# `dotnet-wad-to-csv` is targeting `netcoreapp2.1`, so we can safely install the latest `SDK`
# `dotnet-wad-to-csv` is targeting `netcoreapp3.1`, so we can safely install the LTS `SDK`
# The `SDK` is required to restore, build, publish... a `.NET Core` application
# https://www.microsoft.com/net/download/windows
- ps: .\build\dotnet-install.ps1 -Channel Current
- ps: dotnet tool install --global Cake.Tool --version 0.33.0
- ps: .\build\dotnet-install.ps1
- ps: dotnet tool install --global Cake.Tool --version 0.35.0
2 changes: 1 addition & 1 deletion bootstrap.ps1
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
dotnet tool install Cake.Tool --global --version 0.33.0
dotnet tool install Cake.Tool --global --version 0.35.0
dotnet cake build.cake --bootstrap
dotnet cake build.cake
2 changes: 1 addition & 1 deletion bootstrap.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
dotnet tool install Cake.Tool --global --version 0.33.0
dotnet tool install Cake.Tool --global --version 0.35.0
dotnet cake build.cake --bootstrap
dotnet cake build.cake
4 changes: 2 additions & 2 deletions build.cake
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#module nuget:?package=Cake.DotNetTool.Module&version=0.1.0
#module nuget:?package=Cake.DotNetTool.Module&version=0.4.0

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

var target = Argument("target", "Default");
var configuration = Argument("configuration", "Release");
Expand Down
Loading

0 comments on commit 8fd7aa3

Please sign in to comment.