From 8151db969608d6416e90e17b65f34b2ac73ab376 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Mon, 27 Sep 2021 20:59:56 -0700 Subject: [PATCH] Remove non-4.8 from AppVeyor artifacts --- CHANGELIST.md | 2 ++ appveyor.yml | 36 ++++++++++++++++++++++++------------ 2 files changed, 26 insertions(+), 12 deletions(-) diff --git a/CHANGELIST.md b/CHANGELIST.md index 00c494f2..5741860a 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -8,6 +8,8 @@ - Update support packages - Add on-startup "check for updates" option - Update to Aaru v5.3.0-rc2 +- Add .NET 5.0 as build target +- Remove .NET Core 3.1 and .NET 5.0 from AppVeyor build artifacts ### 2.1 (2021-07-22) - Enum, no more diff --git a/appveyor.yml b/appveyor.yml index 0f6c27a7..ce4bb398 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -41,28 +41,36 @@ after_build: - ps: appveyor DownloadFile https://archive.org/download/subdump_fua_0x28/subdump_fua_0x28.zip - 7z x aaru-5.3.0-rc2_windows_x64.zip -oMPF\bin\Debug\net48\Programs\Aaru * -- 7z x aaru-5.3.0-rc2_windows_x64.zip -oMPF\bin\Debug\netcoreapp3.1\Programs\Aaru * +#- 7z x aaru-5.3.0-rc2_windows_x64.zip -oMPF\bin\Debug\netcoreapp3.1\Programs\Aaru * +#- 7z x aaru-5.3.0-rc2_windows_x64.zip -oMPF\bin\Debug\net5.0\Programs\Aaru * - 7z e dd-0.6beta3.zip -oMPF\bin\Debug\net48\Programs\DD * -- 7z e dd-0.6beta3.zip -oMPF\bin\Debug\netcoreapp3.1\Programs\DD * +#- 7z e dd-0.6beta3.zip -oMPF\bin\Debug\netcoreapp3.1\Programs\DD * +#- 7z e dd-0.6beta3.zip -oMPF\bin\Debug\net5.0\Programs\DD * - 7z e DiscImageCreator_20210701.zip -oMPF\bin\Debug\net48\Programs\Creator Release_ANSI\* -- 7z e DiscImageCreator_20210701.zip -oMPF\bin\Debug\netcoreapp3.1\Programs\Creator Release_ANSI\* +#- 7z e DiscImageCreator_20210701.zip -oMPF\bin\Debug\netcoreapp3.1\Programs\Creator Release_ANSI\* +#- 7z e DiscImageCreator_20210701.zip -oMPF\bin\Debug\net5.0\Programs\Creator Release_ANSI\* - 7z e subdump_fua_0x28.zip -oMPF\bin\Debug\net48 * - mkdir MPF\bin\Debug\net48\Programs\Subdump - mv MPF\bin\Debug\net48\subdump_fua_0x28.exe MPF\bin\Debug\net48\Programs\Subdump\subdump.exe -- 7z e subdump_fua_0x28.zip -oMPF\bin\Debug\netcoreapp3.1 * -- mkdir MPF\bin\Debug\netcoreapp3.1\Programs\Subdump -- mv MPF\bin\Debug\netcoreapp3.1\subdump_fua_0x28.exe MPF\bin\Debug\netcoreapp3.1\Programs\Subdump\subdump.exe +#- 7z e subdump_fua_0x28.zip -oMPF\bin\Debug\netcoreapp3.1 * +#- mkdir MPF\bin\Debug\netcoreapp3.1\Programs\Subdump +#- mv MPF\bin\Debug\netcoreapp3.1\subdump_fua_0x28.exe MPF\bin\Debug\netcoreapp3.1\Programs\Subdump\subdump.exe +#- 7z e subdump_fua_0x28.zip -oMPF\bin\Debug\net5.0 * +#- mkdir MPF\bin\Debug\net5.0\Programs\Subdump +#- mv MPF\bin\Debug\net5.0\subdump_fua_0x28.exe MPF\bin\Debug\net5.0\Programs\Subdump\subdump.exe - cd MPF\bin\Debug - 7z a MPF_net48.zip net48\* -- 7z a MPF_netcoreapp3.1.zip netcoreapp3.1\* +#- 7z a MPF_netcoreapp3.1.zip netcoreapp3.1\* +#- 7z a MPF_net5.0.zip net5.0\* - cd ..\..\..\MPF.Check\bin\Debug - 7z a MPF-Check_net48.zip net48\* -- 7z a MPF-Check_netcoreapp3.1.zip netcoreapp3.1\* +#- 7z a MPF-Check_netcoreapp3.1.zip netcoreapp3.1\* +#- 7z a MPF-Check_net5.0.zip net5.0\* # success/failure tracking on_success: @@ -76,10 +84,14 @@ on_failure: artifacts: - path: MPF\bin\Debug\MPF_net48.zip name: MPF (WPF UI) (.NET Framework 4.8) -- path: MPF\bin\Debug\MPF_netcoreapp3.1.zip - name: MPF (WPF UI) (.NET Core 3.1) +#- path: MPF\bin\Debug\MPF_netcoreapp3.1.zip +# name: MPF (WPF UI) (.NET Core 3.1) +#- path: MPF\bin\Debug\MPF_net5.0.zip +# name: MPF (WPF UI) (.NET 5.0) - path: MPF.Check\bin\Debug\MPF-Check_net48.zip name: MPF Check (.NET Framework 4.8) -- path: MPF.Check\bin\Debug\MPF-Check_netcoreapp3.1.zip - name: MPF Check (.NET Core 3.1) \ No newline at end of file +#- path: MPF.Check\bin\Debug\MPF-Check_netcoreapp3.1.zip +# name: MPF Check (.NET Core 3.1) +#- path: MPF.Check\bin\Debug\MPF-Check_net5.0.zip +# name: MPF Check (.NET 5.0) \ No newline at end of file