Skip to content

Commit

Permalink
Merge pull request #4 from idubnori/update-packages
Browse files Browse the repository at this point in the history
Update .NET Core version and NuGet reference packages.
  • Loading branch information
idubnori authored Sep 13, 2018
2 parents 2d4b46d + 63ab93f commit 24cc95c
Show file tree
Hide file tree
Showing 13 changed files with 652 additions and 26 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.

[Tt]ools/

# User-specific files
*.suo
*.user
Expand Down
4 changes: 4 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
### New in 0.2 (not released yet)

* Updated reference packages to the latest
* Updated example apps to .NET Core 2.1.4
1 change: 1 addition & 0 deletions TrackInfoReader.sln
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{71E752BD-0
ProjectSection(SolutionItems) = preProject
LICENSE = LICENSE
README.md = README.md
RELEASE_NOTES.md = RELEASE_NOTES.md
EndProjectSection
EndProject
Global
Expand Down
49 changes: 49 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
version: 0.2.{build}

image: Visual Studio 2017

configuration: Release
platform: Any CPU

skip_tags: true

build_script:
- cmd: powershell -NoProfile -ExecutionPolicy unrestricted -Command .\build.ps1 -Target "All"

after_build:
- cmd: >-
dotnet publish -c Release -r linux-arm %APPVEYOR_BUILD_FOLDER%\examples\ConsoleViewer\ConsoleViewer.csproj -o .\publish\console-viewer
dotnet publish -c Release -r linux-arm %APPVEYOR_BUILD_FOLDER%\examples\WebViewer\WebViewer.csproj -o .\publish\web-viewer
7z a examples-linux-arm.zip "%APPVEYOR_BUILD_FOLDER%\examples\ConsoleViewer\publish\console-viewer" "%APPVEYOR_BUILD_FOLDER%\examples\WebViewer\publish\web-viewer"
test: off

artifacts:
- path: '*.zip'
name: Release
- path: 'Build\Packages\*.nupkg'
name: NuGet

nuget:
account_feed: false
project_feed: false
disable_publish_on_pr: true

deploy:
- provider: NuGet
api_key:
secure: 6yUDJeVKsTVTweUBj3nGGvH+DCi4oGIHjxPJCIK/nxkgJi2DbRdXZfvyq3b2X2J5
skip_symbols: false
on:
branch: master
- provider: GitHub
artifact: /.*\.(nupkg|zip)/
auth_token:
secure: VbjLFMcw/pLm4Ol7Sl5shMPkMCIdeFSH1peOj+aWSY3ljKjMWcPtntREG6Fe9QGS
tag: v$(appveyor_build_version)
draft: true
prerelease: false
on:
branch: master
Loading

0 comments on commit 24cc95c

Please sign in to comment.