We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d21cf9f commit 51a7e44Copy full SHA for 51a7e44
1 file changed
appveyor.yml
@@ -1,5 +1,11 @@
1
-os:
2
- - "Visual Studio 2015"
+environment:
+ matrix:
3
+ - APPVEYOR_BUILD_WORKER_IMAGE: WMF 5
4
+ PowerShellEdition: Desktop
5
+ BuildConfiguration: Release
6
+ - APPVEYOR_BUILD_WORKER_IMAGE: WMF 4
7
8
+ BuildConfiguration: PSv3Release
9
10
# clone directory
11
clone_folder: c:\projects\psscriptanalyzer
@@ -15,9 +21,10 @@ install:
15
21
16
22
build_script:
17
23
- ps: |
24
+ $PSVersionTable
18
25
Push-Location C:\projects\psscriptanalyzer
19
26
dotnet restore
20
- C:\projects\psscriptanalyzer\buildCoreClr.ps1 -Framework net451 -Configuration Release -Build
27
+ C:\projects\psscriptanalyzer\buildCoreClr.ps1 -Framework net451 -Configuration $env:BuildConfiguration -Build
28
C:\projects\psscriptanalyzer\build.ps1 -BuildDocs
29
Pop-Location
30
0 commit comments