-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathappveyor.yml
29 lines (29 loc) · 1.32 KB
/
appveyor.yml
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
28
29
################################################################
# Auto-generated 2024-05-04 10:42:36.291 #
# ANY CHANGES TO THIS DOCUMENT WILL BE LOST UPON RE-GENERATION #
################################################################
#
# git commit: c94261c5816f150e0db43bd84555b6af69cd3a15
version: 0.12.2466.8669
image: Visual Studio 2022
configuration: Release
install:
- ps: Invoke-WebRequest "https://dotnet.microsoft.com/download/dotnet/scripts/v1/dotnet-install.ps1" -OutFile ".\lib\install-dotnet.ps1"
- ps: $env:DOTNET_INSTALL_DIR = "$pwd\.dotnetcli"
- ps: '.\lib\install-dotnet.ps1 -Channel Preview -Version "9.0.100-preview.2.24157.14" -InstallDir "$env:DOTNET_INSTALL_DIR" -NoPath'
- ps: $env:Path += ";$env:DOTNET_INSTALL_DIR"
before_build:
#- cmd: nuget restore "AutoItInterpreter.sln"
- cmd: dotnet --info
- cmd: echo %PATH%
- cmd: dotnet clean
- cmd: dotnet restore
#- cmd: dotnet build --configuration Release
build:
project: "AutoItInterpreter.sln"
verbosity: minimal
notifications:
- provider: GitHubPullRequest
#auth_token:
# secure: ""
template: "{{#passed}}:white_check_mark:{{/passed}}{{#failed}}:x:{{/failed}} [Build {{&projectName}} {{buildVersion}} {{status}}]({{buildUrl}}) (commit {{commitUrl}} by @{{&commitAuthorUsername}})"