-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathappveyor.yml
More file actions
27 lines (19 loc) · 797 Bytes
/
appveyor.yml
File metadata and controls
27 lines (19 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
version: 3.0.0.{build}.{branch}
image: Visual Studio 2019
init:
- git config --global core.autocrlf true
before_build:
- cmd: dotnet restore TagHelperSamples\TagHelperSamples.sln
build_script:
- cmd: dotnet build TagHelperSamples\src\TagHelperSamples.Authorization
- cmd: dotnet build TagHelperSamples\src\TagHelperSamples.Bootstrap
- cmd: dotnet build TagHelperSamples\src\TagHelperSamples.Markdown
- cmd: dotnet build TagHelperSamples\src\TagHelperSamples.Markdown.Tests
- cmd: dotnet publish TagHelperSamples\src\TagHelperSamples.Web
artifacts:
- path: '\TagHelperSamples\src\TagHelperSamples.Web\bin\Debug\netcoreapp3.0\publish'
name: WebSite
type: WebDeployPackage
test_script:
- ps: cd .\TagHelperSamples\src\TagHelperSamples.Markdown.Tests
- cmd: dotnet test