From 119b033528c1537b5c96dfeb06e6d9fcf76f0c47 Mon Sep 17 00:00:00 2001 From: PMoski Date: Tue, 9 Mar 2021 20:17:43 +0100 Subject: [PATCH 1/5] Fix TaskDialog.DefaultButton property is ignored --- .../Core/Dialogs/TaskDialogs/TaskDialog.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/source/WindowsAPICodePack/Core/Dialogs/TaskDialogs/TaskDialog.cs b/source/WindowsAPICodePack/Core/Dialogs/TaskDialogs/TaskDialog.cs index 9765b364..1ee9aab5 100644 --- a/source/WindowsAPICodePack/Core/Dialogs/TaskDialogs/TaskDialog.cs +++ b/source/WindowsAPICodePack/Core/Dialogs/TaskDialogs/TaskDialog.cs @@ -815,7 +815,11 @@ private void ApplyControlConfiguration(NativeTaskDialogSettings settings) } // Set default button and add elevation icons to appropriate buttons. - settings.NativeConfiguration.defaultButtonIndex = FindDefaultButtonId(sourceList); + var defaultBtn = FindDefaultButtonId(sourceList); + if (defaultBtn != TaskDialogNativeMethods.NoDefaultButtonSpecified) + { + settings.NativeConfiguration.defaultButtonIndex = defaultBtn; + } ApplyElevatedIcons(settings, sourceList); } From 9cfa3499331dd9f9c8d4a0a22048a35789853a4a Mon Sep 17 00:00:00 2001 From: "Alexander M. Mokrov" Date: Thu, 22 Jul 2021 21:51:24 +0300 Subject: [PATCH 2/5] remove first dot in extension --- .../Shell/CommonFileDialogs/CommonFileDialogFilter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/WindowsAPICodePack/Shell/CommonFileDialogs/CommonFileDialogFilter.cs b/source/WindowsAPICodePack/Shell/CommonFileDialogs/CommonFileDialogFilter.cs index 2f3dbfb4..30b0b147 100644 --- a/source/WindowsAPICodePack/Shell/CommonFileDialogs/CommonFileDialogFilter.cs +++ b/source/WindowsAPICodePack/Shell/CommonFileDialogs/CommonFileDialogFilter.cs @@ -128,7 +128,7 @@ private static string NormalizeExtension(string rawExtension) int indexOfDot = rawExtension.IndexOf('.'); if (indexOfDot != -1) { - rawExtension.Remove(indexOfDot); + rawExtension = rawExtension.Substring(indexOfDot + 1); } return rawExtension; From 6822150a32359aa7462f4cf86f04af129db6dcd0 Mon Sep 17 00:00:00 2001 From: Richard Pastrick Date: Mon, 12 Jun 2023 16:02:49 -0700 Subject: [PATCH 3/5] Update to latest versions of .net --- source/WindowsAPICodePack/Core/Core.csproj | 7 +- .../ExtendedLinguisticServices.csproj | 123 +++++++-------- .../WindowsAPICodePack/Sensors/Sensors.csproj | 115 +++++++------- source/WindowsAPICodePack/Shell/Shell.csproj | 137 ++++++++--------- .../ShellExtensions/ShellExtensions.csproj | 141 +++++++++--------- 5 files changed, 269 insertions(+), 254 deletions(-) diff --git a/source/WindowsAPICodePack/Core/Core.csproj b/source/WindowsAPICodePack/Core/Core.csproj index 27c8fb22..de0427ca 100644 --- a/source/WindowsAPICodePack/Core/Core.csproj +++ b/source/WindowsAPICodePack/Core/Core.csproj @@ -14,11 +14,14 @@ The Core code for the WindowsAPICodePack. This is an updated version containing all available bug fixes for this code as of 2020-01-04. See CHANGELOG.md in project site. https://github.com/contre/Windows-API-Code-Pack-1.1/blob/master/CHANGELOG.md Copyright © 2020 + https://github.com/contre/Windows-API-Code-Pack-1.1 + .git en-US WindowsAPICodePack + true true snupkg - net452;net462;net472;net48;netcoreapp3.1;net5.0-windows + net452;net462;net472;net48;net481;netcoreapp3.1;;net6.0-windows;net7.0-windows true latest Microsoft.WindowsAPICodePack @@ -39,7 +42,7 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/source/WindowsAPICodePack/ExtendedLinguisticServices/ExtendedLinguisticServices.csproj b/source/WindowsAPICodePack/ExtendedLinguisticServices/ExtendedLinguisticServices.csproj index 25c68cd2..f624cc04 100644 --- a/source/WindowsAPICodePack/ExtendedLinguisticServices/ExtendedLinguisticServices.csproj +++ b/source/WindowsAPICodePack/ExtendedLinguisticServices/ExtendedLinguisticServices.csproj @@ -1,63 +1,66 @@  - - Microsoft.WindowsAPICodePack.ExtendedLinguisticServices - Microsoft-WindowsAPICodePack-ExtendedLinguisticServices - 1.1.5 - $(AssemblyName) - rpastric;contre;dahall - Microsoft - Microsoft Windows API Code Pack for .NET Framework - https://github.com/contre/Windows-API-Code-Pack-1.1/LICENSE - https://github.com/contre/Windows-API-Code-Pack-1.1 - false - The Extended Linguistic Services code for the WindowsAPICodePack. This is an updated version containing all available bug fixes for this code as of 2020-01-04. - See CHANGELOG.md in project site. https://github.com/contre/Windows-API-Code-Pack-1.1/blob/master/CHANGELOG.md - Copyright © 2020 - en-US - WindowsAPICodePack - true - snupkg - net452;net462;net472;net48;netcoreapp3.1;net5.0-windows - true - latest - Microsoft.WindowsAPICodePack.ExtendedLinguisticServices - ..\bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml - true - ProjectSignKey.snk - - - true - - - - - - - - - - - - all - runtime; build; native; contentfiles; analyzers; buildtransitive - - - - - - - - True - True - LocalizedMessages.resx - - - - - Microsoft.WindowsAPICodePack.Resources - ResXFileCodeGenerator - LocalizedMessages.Designer.cs - - + + Microsoft.WindowsAPICodePack.ExtendedLinguisticServices + Microsoft-WindowsAPICodePack-ExtendedLinguisticServices + 1.1.5 + $(AssemblyName) + rpastric;contre;dahall + Microsoft + Microsoft Windows API Code Pack for .NET Framework + https://github.com/contre/Windows-API-Code-Pack-1.1/LICENSE + https://github.com/contre/Windows-API-Code-Pack-1.1 + false + The Extended Linguistic Services code for the WindowsAPICodePack. This is an updated version containing all available bug fixes for this code as of 2020-01-04. + See CHANGELOG.md in project site. https://github.com/contre/Windows-API-Code-Pack-1.1/blob/master/CHANGELOG.md + https://github.com/contre/Windows-API-Code-Pack-1.1 + .git + Copyright © 2020 + en-US + WindowsAPICodePack + true + true + snupkg + net452;net462;net472;net48;net481;netcoreapp3.1;;net6.0-windows;net7.0-windows + true + latest + Microsoft.WindowsAPICodePack.ExtendedLinguisticServices + ..\bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml + true + ProjectSignKey.snk + + + true + + + + + + + + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + + + True + True + LocalizedMessages.resx + + + + + Microsoft.WindowsAPICodePack.Resources + ResXFileCodeGenerator + LocalizedMessages.Designer.cs + + \ No newline at end of file diff --git a/source/WindowsAPICodePack/Sensors/Sensors.csproj b/source/WindowsAPICodePack/Sensors/Sensors.csproj index 99ce3fb0..30690ff2 100644 --- a/source/WindowsAPICodePack/Sensors/Sensors.csproj +++ b/source/WindowsAPICodePack/Sensors/Sensors.csproj @@ -1,59 +1,62 @@  - - Microsoft.WindowsAPICodePack.Sensors - Microsoft-WindowsAPICodePack-Sensors - 1.1.5 - $(AssemblyName) - rpastric;contre;dahall - Microsoft - Microsoft Windows API Code Pack for .NET Framework - https://github.com/contre/Windows-API-Code-Pack-1.1/LICENSE - https://github.com/contre/Windows-API-Code-Pack-1.1 - false - The Sensors code for the WindowsAPICodePack. This is an updated version containing all available bug fixes for this code as of 2020-01-04. - See CHANGELOG.md in project site. https://github.com/contre/Windows-API-Code-Pack-1.1/blob/master/CHANGELOG.md - Copyright © 2020 - en-US - WindowsAPICodePack - true - snupkg - net452;net462;net472;net48;netcoreapp3.1;net5.0-windows - true - latest - Microsoft.WindowsAPICodePack.Sensors - ..\bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml - true - ProjectSignKey.snk - - - true - - - - - - - - all - runtime; build; native; contentfiles; analyzers; buildtransitive - - - - - - - - True - True - LocalizedMessages.resx - - - - - Microsoft.WindowsAPICodePack.Resources - ResXFileCodeGenerator - LocalizedMessages.Designer.cs - - + + Microsoft.WindowsAPICodePack.Sensors + Microsoft-WindowsAPICodePack-Sensors + 1.1.5 + $(AssemblyName) + rpastric;contre;dahall + Microsoft + Microsoft Windows API Code Pack for .NET Framework + https://github.com/contre/Windows-API-Code-Pack-1.1/LICENSE + https://github.com/contre/Windows-API-Code-Pack-1.1 + false + The Sensors code for the WindowsAPICodePack. This is an updated version containing all available bug fixes for this code as of 2020-01-04. + See CHANGELOG.md in project site. https://github.com/contre/Windows-API-Code-Pack-1.1/blob/master/CHANGELOG.md + https://github.com/contre/Windows-API-Code-Pack-1.1 + .git + Copyright © 2020 + en-US + WindowsAPICodePack + true + true + snupkg + net452;net462;net472;net48;net481;netcoreapp3.1;;net6.0-windows;net7.0-windows + true + latest + Microsoft.WindowsAPICodePack.Sensors + ..\bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml + true + ProjectSignKey.snk + + + true + + + + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + + + True + True + LocalizedMessages.resx + + + + + Microsoft.WindowsAPICodePack.Resources + ResXFileCodeGenerator + LocalizedMessages.Designer.cs + + \ No newline at end of file diff --git a/source/WindowsAPICodePack/Shell/Shell.csproj b/source/WindowsAPICodePack/Shell/Shell.csproj index 38feff99..a7d38788 100644 --- a/source/WindowsAPICodePack/Shell/Shell.csproj +++ b/source/WindowsAPICodePack/Shell/Shell.csproj @@ -1,70 +1,73 @@  - - Microsoft.WindowsAPICodePack.Shell - Microsoft-WindowsAPICodePack-Shell - 1.1.5 - $(AssemblyName) - rpastric;contre;dahall - Microsoft - Microsoft Windows API Code Pack for .NET Framework - https://github.com/contre/Windows-API-Code-Pack-1.1/LICENSE - https://github.com/contre/Windows-API-Code-Pack-1.1 - false - The Shell code for the WindowsAPICodePack. This is an updated version containing all available bug fixes for this code as of 2020-01-04. - See CHANGELOG.md in project site. https://github.com/contre/Windows-API-Code-Pack-1.1/blob/master/CHANGELOG.md - Copyright © 2020 - en-US - WindowsAPICodePack - true - snupkg - net452;net462;net472;net48;netcoreapp3.1;net5.0-windows - true - true - latest - Microsoft.WindowsAPICodePack.Shell - ..\bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml - true - ProjectSignKey.snk - - - true - - - - - - - - - - - - - - - - - - all - runtime; build; native; contentfiles; analyzers; buildtransitive - - - - - - - - True - True - LocalizedMessages.resx - - - - - Microsoft.WindowsAPICodePack.Resources - ResXFileCodeGenerator - LocalizedMessages.Designer.cs - - + + Microsoft.WindowsAPICodePack.Shell + Microsoft-WindowsAPICodePack-Shell + 1.1.5 + $(AssemblyName) + rpastric;contre;dahall + Microsoft + Microsoft Windows API Code Pack for .NET Framework + https://github.com/contre/Windows-API-Code-Pack-1.1/LICENSE + https://github.com/contre/Windows-API-Code-Pack-1.1 + false + The Shell code for the WindowsAPICodePack. This is an updated version containing all available bug fixes for this code as of 2020-01-04. + See CHANGELOG.md in project site. https://github.com/contre/Windows-API-Code-Pack-1.1/blob/master/CHANGELOG.md + Copyright © 2020 + https://github.com/contre/Windows-API-Code-Pack-1.1 + .git + en-US + WindowsAPICodePack + true + true + snupkg + net452;net462;net472;net48;net481;netcoreapp3.1;;net6.0-windows;net7.0-windows + true + true + latest + Microsoft.WindowsAPICodePack.Shell + ..\bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml + true + ProjectSignKey.snk + + + true + + + + + + + + + + + + + + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + + + True + True + LocalizedMessages.resx + + + + + Microsoft.WindowsAPICodePack.Resources + ResXFileCodeGenerator + LocalizedMessages.Designer.cs + + diff --git a/source/WindowsAPICodePack/ShellExtensions/ShellExtensions.csproj b/source/WindowsAPICodePack/ShellExtensions/ShellExtensions.csproj index bcd3aacb..0e85b2e3 100644 --- a/source/WindowsAPICodePack/ShellExtensions/ShellExtensions.csproj +++ b/source/WindowsAPICodePack/ShellExtensions/ShellExtensions.csproj @@ -1,72 +1,75 @@  - - Microsoft.WindowsAPICodePack.ShellExtensions - Microsoft-WindowsAPICodePack-ShellExtensions - 1.1.5 - $(AssemblyName) - rpastric;contre;dahall - Microsoft - Microsoft Windows API Code Pack for .NET Framework - https://github.com/contre/Windows-API-Code-Pack-1.1/LICENSE - https://github.com/contre/Windows-API-Code-Pack-1.1 - false - The ShellExtensions code for the WindowsAPICodePack. This is an updated version containing all available bug fixes for this code as of 2020-01-04. - See CHANGELOG.md in project site. https://github.com/contre/Windows-API-Code-Pack-1.1/blob/master/CHANGELOG.md - Copyright © 2020 - en-US - WindowsAPICodePack - true - snupkg - net452;net462;net472;net48;netcoreapp3.1;net5.0-windows - true - true - latest - Microsoft.WindowsAPICodePack.ShellExtensions - ..\bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml - true - ProjectSignKey.snk - - - true - - - - - - - - - - - - - - - - - - - all - runtime; build; native; contentfiles; analyzers; buildtransitive - - - - - - - - - True - True - LocalizedMessages.resx - - - - - Microsoft.WindowsAPICodePack.Resources - ResXFileCodeGenerator - LocalizedMessages.Designer.cs - - + + Microsoft.WindowsAPICodePack.ShellExtensions + Microsoft-WindowsAPICodePack-ShellExtensions + 1.1.5 + $(AssemblyName) + rpastric;contre;dahall + Microsoft + Microsoft Windows API Code Pack for .NET Framework + https://github.com/contre/Windows-API-Code-Pack-1.1/LICENSE + https://github.com/contre/Windows-API-Code-Pack-1.1 + false + The ShellExtensions code for the WindowsAPICodePack. This is an updated version containing all available bug fixes for this code as of 2020-01-04. + See CHANGELOG.md in project site. https://github.com/contre/Windows-API-Code-Pack-1.1/blob/master/CHANGELOG.md + Copyright © 2020 + https://github.com/contre/Windows-API-Code-Pack-1.1 + .git + en-US + WindowsAPICodePack + true + true + snupkg + net452;net462;net472;net48;net481;netcoreapp3.1;;net6.0-windows;net7.0-windows + true + true + latest + Microsoft.WindowsAPICodePack.ShellExtensions + ..\bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml + true + ProjectSignKey.snk + + + true + + + + + + + + + + + + + + + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + + + + True + True + LocalizedMessages.resx + + + + + Microsoft.WindowsAPICodePack.Resources + ResXFileCodeGenerator + LocalizedMessages.Designer.cs + + \ No newline at end of file From 5f00f7c90389a32c7717a6b8fcf1b520e3a11c43 Mon Sep 17 00:00:00 2001 From: Richard Pastrick Date: Mon, 12 Jun 2023 19:18:23 -0700 Subject: [PATCH 4/5] Update changelog and readme --- CHANGELOG.md | 10 ++++++++++ README.md | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ce6cdc5..71d18f33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +### 2023-06-11 +**Core 1.1.5** +**Shell 1.1.5** +**ShellExtensions 1.1.5** +**Sensors 1.1.5** +**ExtendedLinguisticServices 1.1.5** +- Fix TaskDialog.DefaultButton property is ignored +- remove first dot in extension +- update list of available target frameworks + ### 2018-06-19 **Core 1.1.3.3** **Shell 1.1.3.3** diff --git a/README.md b/README.md index 79ddabf2..e55d9b36 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Windows-API-Code-Pack-1.1.4 +# Windows-API-Code-Pack-1.1.5 ## README From 984ec16324f9824c845596bdb12430853264a7e7 Mon Sep 17 00:00:00 2001 From: samypr100 <3933065+samypr100@users.noreply.github.com> Date: Sun, 18 Jun 2023 16:51:01 -0400 Subject: [PATCH 5/5] post-merge adjustments --- CHANGELOG.md | 2 + source/WindowsAPICodePack/Core/Core.csproj | 6 -- .../ExtendedLinguisticServices.csproj | 64 ---------------- .../WindowsAPICodePack/Sensors/Sensors.csproj | 60 --------------- source/WindowsAPICodePack/Shell/Shell.csproj | 70 ------------------ .../ShellExtensions/ShellExtensions.csproj | 73 ------------------- 6 files changed, 2 insertions(+), 273 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b6c5981d..eee198d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ - Initial GA Actions Support - Added New Target .NET 7.0 +- Fix TaskDialog.DefaultButton property is ignored +- remove first dot in extension ### 2022-11-04 diff --git a/source/WindowsAPICodePack/Core/Core.csproj b/source/WindowsAPICodePack/Core/Core.csproj index ebf620d9..55ddfaf1 100644 --- a/source/WindowsAPICodePack/Core/Core.csproj +++ b/source/WindowsAPICodePack/Core/Core.csproj @@ -16,18 +16,12 @@ https://github.com/samypr100/Windows-API-Code-Pack-1.1 .git Copyright © 2022 - The Core code for the WindowsAPICodePack. This is an updated version containing all available bug fixes for this code as of 2020-01-04. - See CHANGELOG.md in project site. https://github.com/contre/Windows-API-Code-Pack-1.1/blob/master/CHANGELOG.md - Copyright © 2020 - https://github.com/contre/Windows-API-Code-Pack-1.1 - .git en-US WindowsAPICodePack true true snupkg net452;net462;net472;net48;net481;netcoreapp3.1;net5.0-windows;net6.0-windows;net7.0-windows - net452;net462;net472;net48;net481;netcoreapp3.1;;net6.0-windows;net7.0-windows true latest Microsoft.WindowsAPICodePack diff --git a/source/WindowsAPICodePack/ExtendedLinguisticServices/ExtendedLinguisticServices.csproj b/source/WindowsAPICodePack/ExtendedLinguisticServices/ExtendedLinguisticServices.csproj index 37545a90..84827e7b 100644 --- a/source/WindowsAPICodePack/ExtendedLinguisticServices/ExtendedLinguisticServices.csproj +++ b/source/WindowsAPICodePack/ExtendedLinguisticServices/ExtendedLinguisticServices.csproj @@ -70,67 +70,3 @@ - - Microsoft.WindowsAPICodePack.ExtendedLinguisticServices - Microsoft-WindowsAPICodePack-ExtendedLinguisticServices - 1.1.5 - $(AssemblyName) - rpastric;contre;dahall - Microsoft - Microsoft Windows API Code Pack for .NET Framework - https://github.com/contre/Windows-API-Code-Pack-1.1/LICENSE - https://github.com/contre/Windows-API-Code-Pack-1.1 - false - The Extended Linguistic Services code for the WindowsAPICodePack. This is an updated version containing all available bug fixes for this code as of 2020-01-04. - See CHANGELOG.md in project site. https://github.com/contre/Windows-API-Code-Pack-1.1/blob/master/CHANGELOG.md - https://github.com/contre/Windows-API-Code-Pack-1.1 - .git - Copyright © 2020 - en-US - WindowsAPICodePack - true - true - snupkg - net452;net462;net472;net48;net481;netcoreapp3.1;;net6.0-windows;net7.0-windows - true - latest - Microsoft.WindowsAPICodePack.ExtendedLinguisticServices - ..\bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml - true - ProjectSignKey.snk - - - true - - - - - - - - - - - - all - runtime; build; native; contentfiles; analyzers; buildtransitive - - - - - - - - True - True - LocalizedMessages.resx - - - - - Microsoft.WindowsAPICodePack.Resources - ResXFileCodeGenerator - LocalizedMessages.Designer.cs - - - \ No newline at end of file diff --git a/source/WindowsAPICodePack/Sensors/Sensors.csproj b/source/WindowsAPICodePack/Sensors/Sensors.csproj index 04a844aa..8cd511c9 100644 --- a/source/WindowsAPICodePack/Sensors/Sensors.csproj +++ b/source/WindowsAPICodePack/Sensors/Sensors.csproj @@ -66,63 +66,3 @@ - - Microsoft.WindowsAPICodePack.Sensors - Microsoft-WindowsAPICodePack-Sensors - 1.1.5 - $(AssemblyName) - rpastric;contre;dahall - Microsoft - Microsoft Windows API Code Pack for .NET Framework - https://github.com/contre/Windows-API-Code-Pack-1.1/LICENSE - https://github.com/contre/Windows-API-Code-Pack-1.1 - false - The Sensors code for the WindowsAPICodePack. This is an updated version containing all available bug fixes for this code as of 2020-01-04. - See CHANGELOG.md in project site. https://github.com/contre/Windows-API-Code-Pack-1.1/blob/master/CHANGELOG.md - https://github.com/contre/Windows-API-Code-Pack-1.1 - .git - Copyright © 2020 - en-US - WindowsAPICodePack - true - true - snupkg - net452;net462;net472;net48;net481;netcoreapp3.1;;net6.0-windows;net7.0-windows - true - latest - Microsoft.WindowsAPICodePack.Sensors - ..\bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml - true - ProjectSignKey.snk - - - true - - - - - - - - all - runtime; build; native; contentfiles; analyzers; buildtransitive - - - - - - - - True - True - LocalizedMessages.resx - - - - - Microsoft.WindowsAPICodePack.Resources - ResXFileCodeGenerator - LocalizedMessages.Designer.cs - - - \ No newline at end of file diff --git a/source/WindowsAPICodePack/Shell/Shell.csproj b/source/WindowsAPICodePack/Shell/Shell.csproj index 7673aab3..05fe37a6 100644 --- a/source/WindowsAPICodePack/Shell/Shell.csproj +++ b/source/WindowsAPICodePack/Shell/Shell.csproj @@ -76,74 +76,4 @@ LocalizedMessages.Designer.cs - - Microsoft.WindowsAPICodePack.Shell - Microsoft-WindowsAPICodePack-Shell - 1.1.5 - $(AssemblyName) - rpastric;contre;dahall - Microsoft - Microsoft Windows API Code Pack for .NET Framework - https://github.com/contre/Windows-API-Code-Pack-1.1/LICENSE - https://github.com/contre/Windows-API-Code-Pack-1.1 - false - The Shell code for the WindowsAPICodePack. This is an updated version containing all available bug fixes for this code as of 2020-01-04. - See CHANGELOG.md in project site. https://github.com/contre/Windows-API-Code-Pack-1.1/blob/master/CHANGELOG.md - Copyright © 2020 - https://github.com/contre/Windows-API-Code-Pack-1.1 - .git - en-US - WindowsAPICodePack - true - true - snupkg - net452;net462;net472;net48;net481;netcoreapp3.1;;net6.0-windows;net7.0-windows - true - true - latest - Microsoft.WindowsAPICodePack.Shell - ..\bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml - true - ProjectSignKey.snk - - - true - - - - - - - - - - - - - - - - - - all - runtime; build; native; contentfiles; analyzers; buildtransitive - - - - - - - - True - True - LocalizedMessages.resx - - - - - Microsoft.WindowsAPICodePack.Resources - ResXFileCodeGenerator - LocalizedMessages.Designer.cs - - diff --git a/source/WindowsAPICodePack/ShellExtensions/ShellExtensions.csproj b/source/WindowsAPICodePack/ShellExtensions/ShellExtensions.csproj index 44cabea0..c8c036c8 100644 --- a/source/WindowsAPICodePack/ShellExtensions/ShellExtensions.csproj +++ b/source/WindowsAPICodePack/ShellExtensions/ShellExtensions.csproj @@ -79,76 +79,3 @@ - - Microsoft.WindowsAPICodePack.ShellExtensions - Microsoft-WindowsAPICodePack-ShellExtensions - 1.1.5 - $(AssemblyName) - rpastric;contre;dahall - Microsoft - Microsoft Windows API Code Pack for .NET Framework - https://github.com/contre/Windows-API-Code-Pack-1.1/LICENSE - https://github.com/contre/Windows-API-Code-Pack-1.1 - false - The ShellExtensions code for the WindowsAPICodePack. This is an updated version containing all available bug fixes for this code as of 2020-01-04. - See CHANGELOG.md in project site. https://github.com/contre/Windows-API-Code-Pack-1.1/blob/master/CHANGELOG.md - Copyright © 2020 - https://github.com/contre/Windows-API-Code-Pack-1.1 - .git - en-US - WindowsAPICodePack - true - true - snupkg - net452;net462;net472;net48;net481;netcoreapp3.1;;net6.0-windows;net7.0-windows - true - true - latest - Microsoft.WindowsAPICodePack.ShellExtensions - ..\bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml - true - ProjectSignKey.snk - - - true - - - - - - - - - - - - - - - - - - - all - runtime; build; native; contentfiles; analyzers; buildtransitive - - - - - - - - - True - True - LocalizedMessages.resx - - - - - Microsoft.WindowsAPICodePack.Resources - ResXFileCodeGenerator - LocalizedMessages.Designer.cs - - - \ No newline at end of file