From 6babbb5a8c02e34231a2e29e3c49730b563bedbe Mon Sep 17 00:00:00 2001 From: Skyth <19259897+blueskythlikesclouds@users.noreply.github.com> Date: Wed, 22 May 2019 19:10:03 +0300 Subject: [PATCH] Add appveyor.yml and update licenses --- COPYRIGHT => COPYRIGHT.md | 11 ++++------- LICENSE => LICENSE.md | 4 ++-- README.md | 2 +- appveyor.yml | 18 ++++++++++++++++++ 4 files changed, 25 insertions(+), 10 deletions(-) rename COPYRIGHT => COPYRIGHT.md (97%) rename LICENSE => LICENSE.md (96%) create mode 100644 appveyor.yml diff --git a/COPYRIGHT b/COPYRIGHT.md similarity index 97% rename from COPYRIGHT rename to COPYRIGHT.md index 2a51ee6..fba8593 100644 --- a/COPYRIGHT +++ b/COPYRIGHT.md @@ -1,8 +1,6 @@ -Dependency Copyright Notices: +# Dependency Copyright Notices -====== -NAudio -====== +## NAudio Microsoft Public License (Ms-PL) @@ -36,9 +34,8 @@ A "contributor" is any person that distributes its contribution under this licen (E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement. -========= -vgmstream -========= + +## vgmstream Copyright (c) 2008-2010 Adam Gashlin, Fastelbja, Ronny Elfert diff --git a/LICENSE b/LICENSE.md similarity index 96% rename from LICENSE rename to LICENSE.md index 7ac8e60..c956537 100644 --- a/LICENSE +++ b/LICENSE.md @@ -1,6 +1,6 @@ -MIT License +# MIT License -Copyright (c) 2016 Skyth +Copyright (c) 2019 Skyth Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 7154529..0d7da37 100644 --- a/README.md +++ b/README.md @@ -34,4 +34,4 @@ This tool allows you to edit the audio content of a CSB file. It works like ACB Editor, and it is a lot simpler to use than CSB Builder. # License -See [LICENSE](https://github.com/blueskythlikesclouds/SonicAudioTools/blob/master/LICENSE) for details. +See [LICENSE.md](https://github.com/blueskythlikesclouds/SonicAudioTools/blob/master/LICENSE.md) for details. diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..bda6209 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,18 @@ +image: Visual Studio 2017 +configuration: Release + +assembly_info: + patch: true + +before_build: + - cmd: nuget restore + +build: + project: SonicAudioTools.sln + +after_build: + - 7z a -t7z -m0=lzma2 -mx=9 -mfb=64 -md=1024m -ms=on SonicAudioTools.7z ./Release/* + +artifacts: + - path: SonicAudioTools.7z + name: SonicAudioTools