diff --git a/README.MD b/README.MD index 0e76a239..107a2986 100644 --- a/README.MD +++ b/README.MD @@ -72,6 +72,8 @@ An in-progress tool that will try to act as a C# port of the Go-based [Romba](ht In the most technical sense, the best way to get the newest version is to build it yourself. There's no guarantee that I will release intermediate builds based on incremental code updates. Combined with the fact that I don't know how to set up a continuous build system, we get an odd situation for those users who want the bleeding edge releases. For the time being, you can find all test and intermediate builds at [this link](https://mega.nz/#F!8JUhWZxT!h4DnCsgcBsMH3RRDKv27CA). +For a limited time, I'm trying out AppVeyor: [![Build status](https://ci.appveyor.com/api/projects/status/c3hsfpmqhg40al35/branch/master?svg=true)](https://ci.appveyor.com/project/mnadareski/sabretools/branch/master) + ### Some Things to Note I have to say these because I know how some users are. diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 00000000..1407f114 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,23 @@ +version: 0.9.9-test_{build} +image: Visual Studio 2017 +environment: + EnableNuGetPackageRestore: true +platform: +- x64 +- Mono +configuration: +- Debug +install: +- ps: appveyor DownloadFile https://dist.nuget.org/win-x86-commandline/latest/nuget.exe +before_build: +- ps: nuget restore +build: + verbosity: minimal +after_build: +- ps: 7z a sabretools_debug-x64.zip C:\projects\Debug-x64\* +- ps: 7z a sabretools_debug-mono-x64.zip C:\projects\Debug-mono-x64\* +artifacts: +- path: sabretools_debug-x64.zip + name: SabreTools (x64) +- path: sabretools_debug-mono-x64.zip + name: SabreTooks (Mono x64) \ No newline at end of file