Skip to content

Commit

Permalink
Use VS 2019 and .NET Core 3.1 as build engine. (bchavez#273)
Browse files Browse the repository at this point in the history
Unbelievable, it worked on the first commit.
  • Loading branch information
bchavez authored Dec 25, 2019
1 parent 49a3efe commit a90cc0d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
12 changes: 12 additions & 0 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"version": 1,
"isRoot": true,
"tools": {
"fake-cli": {
"version": "5.19.0",
"commands": [
"fake"
]
}
}
}
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
version: '{build}'
image: Visual Studio 2017
image: Visual Studio 2019

environment:
FAKE_DETAILED_ERRORS: true
Expand Down
16 changes: 2 additions & 14 deletions build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,6 @@ cls

SET BUILDER=Source\Builder

IF NOT EXIST "%BUILDER%\fake.exe" (
dotnet tool install fake-cli ^
--tool-path ./%BUILDER% ^
--version 5.13.5
)
dotnet tool restore

if errorlevel 1 (
exit /b %errorlevel%
)

"%BUILDER%/fake.exe" run %BUILDER%\build.fsx target %1

if errorlevel 1 (
exit /b %errorlevel%
)
dotnet fake run %BUILDER%\build.fsx target %1

0 comments on commit a90cc0d

Please sign in to comment.