From 90da5d1a7ea58e5b25fcf89e9eeae1f1583641f8 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 4 Oct 2023 15:50:56 -0400 Subject: [PATCH] Fix errant space in variable name --- CHANGELIST.md | 1 + MPF.Check/Program.cs | 9 +++++ appveyor.yml | 80 ++++++++++++++++++++++---------------------- 3 files changed, 50 insertions(+), 40 deletions(-) diff --git a/CHANGELIST.md b/CHANGELIST.md index 7996dee5..27ba035a 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -5,6 +5,7 @@ - Add note about git being required - Try out using version number in AppVeyor - Job number not build ID +- Fix errant space in variable name ### 2.6.6 (2023-10-04) diff --git a/MPF.Check/Program.cs b/MPF.Check/Program.cs index de89c4f7..c7568a99 100644 --- a/MPF.Check/Program.cs +++ b/MPF.Check/Program.cs @@ -14,6 +14,15 @@ namespace MPF.Check { public static void Main(string[] args) { + // TEMP SHIT CODE + + Drive drive = Drive.Create(InternalDriveType.Optical, "D:\\"); + byte[] data = drive.ReadSector(0); + Console.WriteLine(data); + + // END TEMP SHIT CODE + + // Try processing the standalone arguments if (ProcessStandaloneArguments(args)) return; diff --git a/appveyor.yml b/appveyor.yml index e26b88ee..1b199f4e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -88,51 +88,51 @@ after_build: # Create MPF Debug archives - cd %APPVEYOR_BUILD_FOLDER%\MPF\bin\Debug\net48\publish\ -- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF_%APPVEYOR_JOB_NUMBER %_net48_debug.zip * +- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF_%APPVEYOR_JOB_NUMBER%_net48_debug.zip * - cd %APPVEYOR_BUILD_FOLDER%\MPF\bin\Debug\net6.0-windows\win-x64\publish\ -- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF_%APPVEYOR_JOB_NUMBER %_net6.0_win-x64_debug.zip * +- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF_%APPVEYOR_JOB_NUMBER%_net6.0_win-x64_debug.zip * - cd %APPVEYOR_BUILD_FOLDER%\MPF\bin\Debug\net7.0-windows\win-x64\publish\ -- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF_%APPVEYOR_JOB_NUMBER %_net7.0_win-x64_debug.zip * +- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF_%APPVEYOR_JOB_NUMBER%_net7.0_win-x64_debug.zip * # # Create MPF Release archives # - cd %APPVEYOR_BUILD_FOLDER%\MPF\bin\Release\net48\publish\ -# - 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF_%APPVEYOR_JOB_NUMBER %_net48_release.zip * +# - 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF_%APPVEYOR_JOB_NUMBER%_net48_release.zip * # - cd %APPVEYOR_BUILD_FOLDER%\MPF\bin\Release\net6.0-windows\win-x64\publish\ -# - 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF_%APPVEYOR_JOB_NUMBER %_net6.0_win-x64_release.zip * +# - 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF_%APPVEYOR_JOB_NUMBER%_net6.0_win-x64_release.zip * # - cd %APPVEYOR_BUILD_FOLDER%\MPF\bin\Release\net7.0-windows\win-x64\publish\ -# - 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF_%APPVEYOR_JOB_NUMBER %_net7.0_win-x64_release.zip * +# - 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF_%APPVEYOR_JOB_NUMBER%_net7.0_win-x64_release.zip * # Create MPF.Check Debug archives - cd %APPVEYOR_BUILD_FOLDER%\MPF.Check\bin\Debug\net48\publish\ -- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_%APPVEYOR_JOB_NUMBER %_net48_debug.zip * +- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_%APPVEYOR_JOB_NUMBER%_net48_debug.zip * - cd %APPVEYOR_BUILD_FOLDER%\MPF.Check\bin\Debug\net6.0\win-x64\publish\ -- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_%APPVEYOR_JOB_NUMBER %_net6.0_win-x64_debug.zip * +- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_%APPVEYOR_JOB_NUMBER%_net6.0_win-x64_debug.zip * - cd %APPVEYOR_BUILD_FOLDER%\MPF.Check\bin\Debug\net6.0\linux-x64\publish\ -- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_%APPVEYOR_JOB_NUMBER %_net6.0_linux-x64_debug.zip * +- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_%APPVEYOR_JOB_NUMBER%_net6.0_linux-x64_debug.zip * - cd %APPVEYOR_BUILD_FOLDER%\MPF.Check\bin\Debug\net6.0\osx-x64\publish\ -- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_%APPVEYOR_JOB_NUMBER %_net6.0_osx-x64_debug.zip * +- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_%APPVEYOR_JOB_NUMBER%_net6.0_osx-x64_debug.zip * - cd %APPVEYOR_BUILD_FOLDER%\MPF.Check\bin\Debug\net7.0\win-x64\publish\ -- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_%APPVEYOR_JOB_NUMBER %_net7.0_win-x64_debug.zip * +- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_%APPVEYOR_JOB_NUMBER%_net7.0_win-x64_debug.zip * - cd %APPVEYOR_BUILD_FOLDER%\MPF.Check\bin\Debug\net7.0\linux-x64\publish\ -- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_%APPVEYOR_JOB_NUMBER %_net7.0_linux-x64_debug.zip * +- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_%APPVEYOR_JOB_NUMBER%_net7.0_linux-x64_debug.zip * - cd %APPVEYOR_BUILD_FOLDER%\MPF.Check\bin\Debug\net7.0\osx-x64\publish\ -- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_%APPVEYOR_JOB_NUMBER %_net7.0_osx-x64_debug.zip * +- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_%APPVEYOR_JOB_NUMBER%_net7.0_osx-x64_debug.zip * # # Create MPF.Check Release archives # - cd %APPVEYOR_BUILD_FOLDER%\MPF.Check\bin\Release\net48\publish\ -# - 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_%APPVEYOR_JOB_NUMBER %_net48_release.zip * +# - 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_%APPVEYOR_JOB_NUMBER%_net48_release.zip * # - cd %APPVEYOR_BUILD_FOLDER%\MPF.Check\bin\Release\net6.0\win-x64\publish\ -# - 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_%APPVEYOR_JOB_NUMBER %_net6.0_win-x64_release.zip * +# - 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_%APPVEYOR_JOB_NUMBER%_net6.0_win-x64_release.zip * # - cd %APPVEYOR_BUILD_FOLDER%\MPF.Check\bin\Release\net6.0\linux-x64\publish\ -# - 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_%APPVEYOR_JOB_NUMBER %_net6.0_linux-x64_release.zip * +# - 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_%APPVEYOR_JOB_NUMBER%_net6.0_linux-x64_release.zip * # - cd %APPVEYOR_BUILD_FOLDER%\MPF.Check\bin\Release\net6.0\osx-x64\publish\ -# - 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_%APPVEYOR_JOB_NUMBER %_net6.0_osx-x64_release.zip * +# - 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_%APPVEYOR_JOB_NUMBER%_net6.0_osx-x64_release.zip * # - cd %APPVEYOR_BUILD_FOLDER%\MPF.Check\bin\Release\net7.0\win-x64\publish\ -# - 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_%APPVEYOR_JOB_NUMBER %_net7.0_win-x64_release.zip * +# - 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_%APPVEYOR_JOB_NUMBER%_net7.0_win-x64_release.zip * # - cd %APPVEYOR_BUILD_FOLDER%\MPF.Check\bin\Release\net7.0\linux-x64\publish\ -# - 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_%APPVEYOR_JOB_NUMBER %_net7.0_linux-x64_release.zip * +# - 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_%APPVEYOR_JOB_NUMBER%_net7.0_linux-x64_release.zip * # - cd %APPVEYOR_BUILD_FOLDER%\MPF.Check\bin\Release\net7.0\osx-x64\publish\ -# - 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_%APPVEYOR_JOB_NUMBER %_net7.0_osx-x64_release.zip * +# - 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_%APPVEYOR_JOB_NUMBER%_net7.0_osx-x64_release.zip * # success/failure tracking on_success: @@ -144,46 +144,46 @@ on_failure: # artifact linking artifacts: -- path: MPF_%APPVEYOR_JOB_NUMBER %_net48_debug.zip +- path: MPF_%APPVEYOR_JOB_NUMBER%_net48_debug.zip name: MPF (.NET Framework 4.8, Debug) -- path: MPF_%APPVEYOR_JOB_NUMBER %_net6.0_win-x64_debug.zip +- path: MPF_%APPVEYOR_JOB_NUMBER%_net6.0_win-x64_debug.zip name: MPF (.NET 6.0, Debug, Windows x64) -- path: MPF_%APPVEYOR_JOB_NUMBER %_net7.0_win-x64_debug.zip +- path: MPF_%APPVEYOR_JOB_NUMBER%_net7.0_win-x64_debug.zip name: MPF (.NET 7.0, Debug, Windows x64) -# - path: MPF_%APPVEYOR_JOB_NUMBER %_net48_release.zip +# - path: MPF_%APPVEYOR_JOB_NUMBER%_net48_release.zip # name: MPF (.NET Framework 4.8, Release) -# - path: MPF_%APPVEYOR_JOB_NUMBER %_net6.0_win-x64_release.zip +# - path: MPF_%APPVEYOR_JOB_NUMBER%_net6.0_win-x64_release.zip # name: MPF (.NET 6.0, Release, Windows x64) -# - path: MPF_%APPVEYOR_JOB_NUMBER %_net7.0_win-x64_release.zip +# - path: MPF_%APPVEYOR_JOB_NUMBER%_net7.0_win-x64_release.zip # name: MPF (.NET 7.0, Release, Windows x64) -- path: MPF.Check_%APPVEYOR_JOB_NUMBER %_net48_debug.zip +- path: MPF.Check_%APPVEYOR_JOB_NUMBER%_net48_debug.zip name: MPF Check (.NET Framework 4.8, Debug) -- path: MPF.Check_%APPVEYOR_JOB_NUMBER %_net6.0_win-x64_debug.zip +- path: MPF.Check_%APPVEYOR_JOB_NUMBER%_net6.0_win-x64_debug.zip name: MPF.Check (.NET 6.0, Debug, Windows x64) -- path: MPF.Check_%APPVEYOR_JOB_NUMBER %_net6.0_linux-x64_debug.zip +- path: MPF.Check_%APPVEYOR_JOB_NUMBER%_net6.0_linux-x64_debug.zip name: MPF.Check (.NET 6.0, Debug, Linux x64) -- path: MPF.Check_%APPVEYOR_JOB_NUMBER %_net6.0_osx-x64_debug.zip +- path: MPF.Check_%APPVEYOR_JOB_NUMBER%_net6.0_osx-x64_debug.zip name: MPF.Check (.NET 6.0, Debug, OSX x64) -- path: MPF.Check_%APPVEYOR_JOB_NUMBER %_net7.0_win-x64_debug.zip +- path: MPF.Check_%APPVEYOR_JOB_NUMBER%_net7.0_win-x64_debug.zip name: MPF.Check (.NET 7.0, Debug, Windows x64) -- path: MPF.Check_%APPVEYOR_JOB_NUMBER %_net7.0_linux-x64_debug.zip +- path: MPF.Check_%APPVEYOR_JOB_NUMBER%_net7.0_linux-x64_debug.zip name: MPF.Check (.NET 7.0, Debug, Linux x64) -- path: MPF.Check_%APPVEYOR_JOB_NUMBER %_net7.0_osx-x64_debug.zip +- path: MPF.Check_%APPVEYOR_JOB_NUMBER%_net7.0_osx-x64_debug.zip name: MPF.Check (.NET 7.0, Debug, OSX x64) -# - path: MPF.Check_%APPVEYOR_JOB_NUMBER %_net48_release.zip +# - path: MPF.Check_%APPVEYOR_JOB_NUMBER%_net48_release.zip # name: MPF Check (.NET Framework 4.8, Release) -# - path: MPF.Check_%APPVEYOR_JOB_NUMBER %_net6.0_win-x64_release.zip +# - path: MPF.Check_%APPVEYOR_JOB_NUMBER%_net6.0_win-x64_release.zip # name: MPF.Check (.NET 6.0, Release, Windows x64) -# - path: MPF.Check_%APPVEYOR_JOB_NUMBER %_net6.0_linux-x64_release.zip +# - path: MPF.Check_%APPVEYOR_JOB_NUMBER%_net6.0_linux-x64_release.zip # name: MPF.Check (.NET 6.0, Release, Linux x64) -# - path: MPF.Check_%APPVEYOR_JOB_NUMBER %_net6.0_osx-x64_release.zip +# - path: MPF.Check_%APPVEYOR_JOB_NUMBER%_net6.0_osx-x64_release.zip # name: MPF.Check (.NET 6.0, Release, OSX x64) -# - path: MPF.Check_%APPVEYOR_JOB_NUMBER %_net7.0_win-x64_release.zip +# - path: MPF.Check_%APPVEYOR_JOB_NUMBER%_net7.0_win-x64_release.zip # name: MPF.Check (.NET 7.0, Release, Windows x64) -# - path: MPF.Check_%APPVEYOR_JOB_NUMBER %_net7.0_linux-x64_release.zip +# - path: MPF.Check_%APPVEYOR_JOB_NUMBER%_net7.0_linux-x64_release.zip # name: MPF.Check (.NET 7.0, Release, Linux x64) -# - path: MPF.Check_%APPVEYOR_JOB_NUMBER %_net7.0_osx-x64_release.zip +# - path: MPF.Check_%APPVEYOR_JOB_NUMBER%_net7.0_osx-x64_release.zip # name: MPF.Check (.NET 7.0, Release, OSX x64)