forked from overtools/TACTLib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
27 lines (27 loc) · 787 Bytes
/
appveyor.yml
File metadata and controls
27 lines (27 loc) · 787 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: 1.0.{build}
image: Visual Studio 2019
configuration: Release
platform: Any CPU
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
assembly_version: '{version}'
file_version: '{version}'
informational_version: $(appveyor_repo_commit)
before_build:
- cmd: git submodule update --init --recursive
- cmd: dotnet --version
- cmd: dotnet restore TACTLib.sln --verbosity m
build_script:
- cmd: dotnet publish -f net5.0 --configuration Release -r win7-x64 --self-contained false -o dist/Release
- cmd: dotnet publish -f net5.0 --configuration Debug -r win7-x64 --self-contained false -o dist/Debug
branches:
only:
- master
artifacts:
- path: dist/Release
name: TACTLib-Release
- path: dist/Debug
name: TACTLib-Debug
deploy: false