-
Notifications
You must be signed in to change notification settings - Fork 75
/
appveyor.yml
39 lines (30 loc) · 1.14 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
branches:
only:
- master
- develop
assembly_info:
patch: false
configuration: Release
platform: Any CPU
environment:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
# Install .NET Core SDK 1.0 rc4 build 004771
init:
- ps: (new-object net.webclient).DownloadFile('https://go.microsoft.com/fwlink/?linkid=841686', "c:/dotnet-install.exe")
- ps: Start-Process c:\dotnet-install.exe -ArgumentList "/install","/quiet" -Wait
build_script:
- ps: dotnet restore --no-cache
- ps: dotnet build .\POGOLib.Official\POGOLib.Official.csproj -c Release
- ps: dotnet build .\POGOLib.Official.Google\POGOLib.Official.Google.csproj -c Release
- ps: dotnet build .\POGOLib.Official.Demo.ConsoleApp\POGOLib.Official.Demo.ConsoleApp.csproj -c Release
after_build:
- ps: dotnet pack .\POGOLib.Official\POGOLib.Official.csproj -c Release --no-build -o artifacts
- ps: dotnet pack .\POGOLib.Official.Google\POGOLib.Official.Google.csproj -c Release --no-build -o artifacts
artifacts:
- path: .\**\artifacts\*.nupkg
#deploy:
# - provider: NuGet
# api_key:
# secure: Y/AgjrCeBdDo/UpZoyVLIV61fC3YNdmAgMQ1yHE6lMxs0ArlO5NDCmu2cUpcXR/Y
# on:
# branch: master