Add appveyor config

This commit is contained in:
KillzXGaming 2019-03-27 21:05:01 -04:00
parent 9c8bb26a8f
commit d37652aaae
4 changed files with 23 additions and 3 deletions

Binary file not shown.

Binary file not shown.

View file

@ -272,14 +272,17 @@ namespace FirstPlugin
return MessageBox.Show("Does this game support paths ?", "", MessageBoxButtons.YesNo) == DialogResult.Yes;
}
public static void OpenByml(string Filename, BYAML byaml) =>
public static void OpenByml(string Filename, BYAML byaml) {
OpenByml(new FileStream(Filename, FileMode.Open), byaml, Filename);
}
public static void OpenByml(Stream file, BYAML byaml, string FileName = "") =>
public static void OpenByml(Stream file, BYAML byaml, string FileName = "") {
OpenByml(file, byaml, FileName, SupportPaths());
}
public static void OpenByml(Stream file, BYAML byaml, string FileName, bool paths) =>
public static void OpenByml(Stream file, BYAML byaml, string FileName, bool paths) {
OpenByml(file, byaml, FileName, paths, null, false);
}
public static void OpenByml(Stream file, BYAML byaml, string FileName, bool? paths, Stream saveStream, bool AsDialog)
{

17
appveyor.yml Normal file
View file

@ -0,0 +1,17 @@
version: 1.0.{build}
environment:
name: Switch-Toolbox
build:
project: Switch_Toolbox.sln
verbosity: minimal
artifact: Switch-Toolbox-Latest.zip
deploy:
- provider: GitHub
tag: EXPERIMENTAL_v1.0r2,5_BETA
release: Experimental Release
auth_token:
secure: vDPwgMnjU54ZBjDmIfPNaES/JfhJBkj1yZ1kZwNf3ls8IUjPhVEWR2FDBVV0MySO
artifact: Switch_Toolbox_v1.0r2,5_BETA
draft: false
prerelease: true
force_update: true