Skip to content

Commit

Permalink
Fix appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthiee committed Sep 2, 2018
1 parent 76e2161 commit c7e39b7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
2 changes: 2 additions & 0 deletions VCDiff.Core.sln
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
.gitignore = .gitignore
appveyor.yml = appveyor.yml
build.cake = build.cake
build.ps1 = build.ps1
build.sh = build.sh
LICENSE = LICENSE
README.md = README.md
EndProjectSection
Expand Down
4 changes: 3 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# Operating system (build VM template)
os: Visual Studio 2017

version: 0.1.{build}

# Build script
build_script:
- ps: .\build.ps1 --target="AppVeyor" --verbosity=Verbose
- ps: .\build.ps1 --target="AppVeyor" --verbosity=Verbose

# Tests
test: off
Expand Down
9 changes: 1 addition & 8 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,7 @@ Task("Build")
DotNetCoreBuild(solution,
new DotNetCoreBuildSettings
{
NoRestore = true,
Configuration = configuration
});

DotNetCoreBuild(solution,
new DotNetCoreBuildSettings
{
NoRestore = true,
NoRestore = false,
Configuration = configuration
});
});
Expand Down

0 comments on commit c7e39b7

Please sign in to comment.