diff --git a/README.md b/README.md index 705a68a..ab48f57 100644 --- a/README.md +++ b/README.md @@ -21,3 +21,9 @@ var t = new Repository().Get(ts, "tparnell"); ``` + + +## Contributing + +* There are no special instructions, submit pull requests against the master branch. +* Releases to nuget occur on successful master branch builds diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..60696e8 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,23 @@ +version: 0.1.{build} +configuration: Release +assembly_info: + patch: true + file: '**\AssemblyInfo.*' + assembly_version: '{version}' + assembly_file_version: '{version}' + assembly_informational_version: '{version}' +nuget: + disable_publish_on_pr: true +before_build: +- nuget restore +build: + publish_nuget: true + publish_nuget_symbols: true + include_nuget_references: true + verbosity: normal +deploy: +- provider: NuGet + api_key: + secure: fGNwXOtebe3kxu5SrB90CrbaCxVxuzuCQh3Ipcc0G/3cutoNZf7d7G6AaQ4fRv2l + on: + branch: master \ No newline at end of file