Skip to content

Commit

Permalink
First try at appveyor! :)
Browse files Browse the repository at this point in the history
  • Loading branch information
AeonLucid committed Jul 23, 2016
1 parent da8860d commit dafe8cb
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<package >
<metadata>
<id>POGOLib</id>
<version>$version$</version>
<authors>AeonLucid (@aeonlucid)</authors>
<licenseUrl>https://github.com/AeonLucid/POGOLib/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/AeonLucid/POGOLib</projectUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<description>POGOLib is written in C# and aims to be a community-driven PokémonGo API.</description>
<copyright>Copyright 2016 AeonLucid</copyright>
<tags>pokemon go api library</tags>
</metadata>
<files>
<file src="POGOLib\bin\Release\POGOLib.dll" target="net46" />
</files>
</package>
27 changes: 27 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
version: 0.1.{build}

branches:
only:
- master

assembly_info:
patch: true
file: AssemblyInfo.*
assembly_version: "{version}"
assembly_file_version: "{version}"
assembly_informational_version: "{version}"

configuration: Release

before_build:
- cmd: nuget restore

build:
project: POGOLib\POGOLib.csproj
publish_nuget: true
verbosity: minimal

artifacts:
- path: POGOLib\bin\Release\POGOLib.dll
name: POGOLib.dll
- path: '**\*.nupkg'

0 comments on commit dafe8cb

Please sign in to comment.