27 lines
597 B
YAML
27 lines
597 B
YAML
version: 1.0.{build}
|
|
image: Visual Studio 2022
|
|
configuration:
|
|
- Release
|
|
install:
|
|
- cmd: git submodule -q update --init
|
|
dotnet_csproj:
|
|
patch: true
|
|
file: '**\*.csproj'
|
|
version: '{version}'
|
|
package_version: '{version}'
|
|
assembly_version: '{version}'
|
|
file_version: '{version}'
|
|
informational_version: '{version}'
|
|
before_build:
|
|
- nuget restore
|
|
build:
|
|
project: $(APPVEYOR_BUILD_FOLDER)\$(APPVEYOR_PROJECT_NAME).sln
|
|
test: off
|
|
artifacts:
|
|
- path: '$(APPVEYOR_PROJECT_NAME)\bin\**\*.nupkg'
|
|
deploy:
|
|
- provider: Environment
|
|
name: nuget.org
|
|
on:
|
|
branch: master
|
|
appveyor_repo_tag: true |