forked from IoTSharp/IoTSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
37 lines (36 loc) · 1 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
version: 1.5.{build}
image: Visual Studio 2019
configuration: Release
platform: Any CPU
init:
- ps: Install-Product node $env:nodejs_version
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
version_prefix: '{version}'
package_version: '{version}'
assembly_version: '{version}'
file_version: '{version}'
informational_version: '{version}'
environment:
nodejs_version: 11
install:
- cmd: >-
git submodule sync --recursive
git submodule update --init --recursive
build_script:
- cmd: msbuild -r -v:m -t:rebuild -p:Configuration=Release IoTSharp.sln
artifacts:
- path: IoTSharp\bin\Release\*.nupkg
- path: IoTSharp.SDKs\IoTSharp.Sdk.MQTT\bin\Release\*.nupkg
- path: IoTSharp.SDKs\IoTSharp.Sdk.CSharp\bin\Release\*.nupkg
- path: IoTSharp.ClientApp\bin\Release\net5.0\wwwroot
name: IoTSharp.ClientApp
deploy: off