This repository has been archived by the owner on Apr 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* adding tests to appveyor's execution * add build related files to the solution tree strying to restore everything prior to running to see if it helps strying PS approach
- Loading branch information
1 parent
9e652d1
commit b257c1b
Showing
2 changed files
with
26 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,28 @@ | ||
image: Visual Studio 2017 | ||
|
||
init: | ||
- git config --global core.autocrlf input | ||
- '"C:\Program Files (x86)\Microsoft Visual Studio\Installer\vswhere.exe"' | ||
|
||
clone_depth: 10 | ||
|
||
before_build: | ||
- cmd: dotnet restore .\SourceLink.sln | ||
|
||
build_script: | ||
- ps: | | ||
dotnet --version | ||
.\build.ps1 | ||
if ($lastexitcode -ne 0){ exit $lastexitcode } | ||
test: off | ||
test: | ||
assemblies: | ||
only: | ||
- '**\Tests.dll' | ||
|
||
|
||
test_script: | ||
- ps: dotnet test .\Tests\Tests.csproj | ||
|
||
artifacts: | ||
- path: bin\*.nupkg |