-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
29 lines (29 loc) · 734 Bytes
/
appveyor.yml
File metadata and controls
29 lines (29 loc) · 734 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
28
29
environment:
base_version: '4.1.0'
version_suffix: ''
version: $(base_version).{build}
image: Visual Studio 2022
configuration: Release
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '$(base_version)$(version_suffix)'
package_version: '$(base_version)$(version_suffix)'
assembly_version: '{version}'
file_version: '{version}'
informational_version: '$(base_version)$(version_suffix)'
before_build:
- ps: dotnet restore
after_build:
- ps: dotnet pack -c release
build:
verbosity: minimal
publish_nuget: true
test_script:
- ps: dotnet test .\Stringification.Tests\Stringification.Tests.csproj
nuget:
account_feed: false
project_feed: true
disable_publish_on_pr: true
artifacts:
- path: '**\*.nupkg'