Skip to content

Commit 29a7683

Browse files
committed
task: add basic build script
1 parent ed8d680 commit 29a7683

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

appveyor.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
version: 2.0.0.{build}-beta01
2+
configuration: Release
3+
assembly_info:
4+
patch: true
5+
file: '**\AssemblyInfo.*'
6+
assembly_version: '{version}'
7+
assembly_file_version: '{version}'
8+
assembly_informational_version: '{version}'
9+
dotnet_csproj:
10+
patch: true
11+
file: '**\*.csproj'
12+
version: '{version}'
13+
package_version: '{version}'
14+
assembly_version: '{version}'
15+
file_version: '{version}'
16+
informational_version: '{version}'
17+
build_script:
18+
- ps: '& .\build.ps1'
19+
deploy: off

build.ps1

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
dotnet restore
2+
dotnet build -c Release

0 commit comments

Comments
 (0)