SapientGuardian / mysql-connector-net-netstandard

ADO.NET driver for MySQL targeted against netstandard 1.3
GNU General Public License v2.0
46 stars 15 forks source link

Add AppVeyor CI configuration #2

Closed IntelOrca closed 8 years ago

IntelOrca commented 8 years ago

Adds an AppVeyor configuration file to build and package MySql.Data. All you need to do is create an AppVeyor account (or use your existing one) and add a project for this repo. You also probably need to add AppVeyor as an integration if its not automatic.

If you want it to automatically deploy to NuGet, you can add the following to the config.

deploy:
  provider: NuGet
  api_key:
    secure: aE6G5fDE3fFgMOis/rnef8IdMj16aR57tn7wxh3XenV0rEOI4YqJdNQV9lKV+s07
  artifact: /.*\.nupkg/
  on:
    branch: master
    appveyor_repo_tag: true

where secure is your NuGet key encrypted using your AppVeyor account and branch being your deploy branch rather than develop branch.