forked from toddams/RazorLight
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
19 lines (19 loc) · 712 Bytes
/
appveyor.yml
File metadata and controls
19 lines (19 loc) · 712 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
version: '1.0.{build}'
configuration:
- Debug
- Release
platform: Any CPU
environment:
# Don't report back to the mothership
DOTNET_CLI_TELEMETRY_OPTOUT: 1
IS_TESTING_ENVIRONMENT: true
before_build:
- appveyor-retry dotnet restore -v Minimal
build_script:
- dotnet build "src\RazorLight" -c %CONFIGURATION% --no-dependencies
- dotnet build "src\RazorLight.MVC" -c %CONFIGURATION% --no-dependencies
- dotnet build "tests\RazorLight.Tests" -c %CONFIGURATION% --no-dependencies
- dotnet build "tests\RazorLight.MVC.Tests" -c %CONFIGURATION% --no-dependencies
test_script:
- dotnet test "tests\RazorLight.Tests" -c %CONFIGURATION%
- dotnet test "tests\RazorLight.MVC.Tests" -c %CONFIGURATION%