-
Notifications
You must be signed in to change notification settings - Fork 1
/
appveyor.yml
44 lines (42 loc) · 1.11 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
version: "1.0.{build}"
image: Visual Studio 2022
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: "{version}"
package_version: "{version}"
assembly_version: "{version}"
file_version: "{version}"
informational_version: "{version}"
pull_requests:
do_not_increment_build_number: true
branches:
only:
- main
init:
# Good practise, because Windows line endings are different from Unix/Linux ones
- cmd: git config --global core.autocrlf true
install:
# Install repo specific stuff here
before_build:
- cmd: dotnet --version
- cmd: dotnet restore src/sphero-sdk.sln --verbosity q
build_script:
- cmd: dotnet build src/sphero-sdk.sln -c Release
after_build:
# For once the build has completed
- cmd: dotnet pack src/sphero-sdk.sln -o packages -c Release
artifacts:
- path: "packages/**/*.nupkg"
name: NugetPackages
clone_depth: 1
test_script:
- cmd: dotnet test src/sphero-sdk.sln
deploy:
- provider: NuGet
api_key:
secure: XwA+GEOxVj/7tZ8Z0GPBLa23lZlrFPRezTWQ3KwjCV+Q87uakfOP8H29sNPJmB7T
skip_symbols: false
artifact: /.*(\.|\.s)nupkg/
on:
branch: main