From 59ee26e2eeb8c1f3c39b8a79473dc6f38e536538 Mon Sep 17 00:00:00 2001 From: Benedikt Schuldheis Date: Wed, 17 Mar 2021 18:19:16 +0100 Subject: [PATCH] ported to netcore3.1 --- Build/generate-nuget.ps1 | 13 +- .../BasicUsageExample.csproj | 156 ++++---------- .../Properties/AssemblyInfo.cs | 26 --- .../ConfigurationExample.csproj | 158 ++++---------- .../Properties/AssemblyInfo.cs | 26 --- .../CustomNotificationsExample.csproj | 175 +++------------- .../Properties/AssemblyInfo.cs | 26 --- .../packages.config | 4 - .../DotNetCoreUsageExample.csproj | 37 ++-- .../Properties/AssemblyInfo.cs | 85 +++----- .../ToastNotifications.Messages.csproj | 192 ++++++------------ .../ToastNotifications.Messages.nuspec | 31 --- .../Properties/AssemblyInfo.cs | 82 +++----- .../ToastNotifications.csproj | 149 +++----------- .../ToastNotifications.nuspec | 31 --- 15 files changed, 268 insertions(+), 923 deletions(-) delete mode 100644 Src/Examples/CustomNotificationsExample/packages.config delete mode 100644 Src/ToastNotifications.Messages/ToastNotifications.Messages.nuspec delete mode 100644 Src/ToastNotifications/ToastNotifications.nuspec diff --git a/Build/generate-nuget.ps1 b/Build/generate-nuget.ps1 index 630d796..a64c185 100644 --- a/Build/generate-nuget.ps1 +++ b/Build/generate-nuget.ps1 @@ -1,20 +1,21 @@ param([string]$version="2.0.0.0") -$env:Path += ";C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE" +$env:Path += ";C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE" $projects = "ToastNotifications", "ToastNotifications.Messages" $solution = "../Src/ToastNotifications.sln" $versionRegexp = "(\d+\.\d+\.\d+\.\d+)" - foreach ($project in $projects) { - $assemblyInfoFile = "../Src/"+$project+"/Properties/AssemblyInfo.cs" - (Get-Content $assemblyInfoFile) -replace $versionRegexp, $version | Set-Content $assemblyInfoFile - } +# foreach ($project in $projects) { +# $assemblyInfoFile = "../Src/"+$project+"/Properties/AssemblyInfo.cs" +# (Get-Content $assemblyInfoFile) -replace $versionRegexp, $version | Set-Content $assemblyInfoFile +#} devenv $solution /rebuild Release foreach ($project in $projects) { $csprojFile = "../Src/"+$project+"/"+$project+".csproj" - ./nuget.exe pack $csprojFile -Prop Configuration=Release + dotnet pack $csprojFile -c=RELEASE -o="." + #./nuget.exe pack $csprojFile -Prop Configuration=Release } diff --git a/Src/Examples/BasicUsageExample/BasicUsageExample.csproj b/Src/Examples/BasicUsageExample/BasicUsageExample.csproj index 6d13ee5..73af184 100644 --- a/Src/Examples/BasicUsageExample/BasicUsageExample.csproj +++ b/Src/Examples/BasicUsageExample/BasicUsageExample.csproj @@ -1,122 +1,36 @@ - - - - - Debug - AnyCPU - {D63A8852-2028-4E0E-8FF1-F95D0066843F} - WinExe - Properties - BasicUsageExample - BasicUsageExample - v4.0 - 512 - {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 4 - true - - - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - AnyCPU - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - toast-notifications-icon.ico - - - - - - - - - 4.0 - - - - - - - - MSBuild:Compile - Designer - - - App.xaml - Code - - - - - - MainWindow.xaml - - - Code - - - True - True - Resources.resx - - - True - Settings.settings - True - - - ResXFileCodeGenerator - Resources.Designer.cs - - - SettingsSingleFileGenerator - Settings.Designer.cs - - - - - - - - - MSBuild:Compile - Designer - - - - - {4de2f314-b19f-423e-92d8-7d3a7d9acea2} - ToastNotifications.Messages - - - {4a8879fc-9a6e-4904-910b-5c13fa5ed5be} - ToastNotifications - - - - - - - + + + WinExe + net40 + {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + true + BasicUsageExample + BasicUsageExample + Copyright © Rafał Łopatka 2019 + bin\$(Configuration)\ + true + + + full + + + pdbonly + + + toast-notifications-icon.ico + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Src/Examples/BasicUsageExample/Properties/AssemblyInfo.cs b/Src/Examples/BasicUsageExample/Properties/AssemblyInfo.cs index e345cd1..f43214f 100644 --- a/Src/Examples/BasicUsageExample/Properties/AssemblyInfo.cs +++ b/Src/Examples/BasicUsageExample/Properties/AssemblyInfo.cs @@ -4,18 +4,6 @@ using System.Runtime.InteropServices; using System.Windows; -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("BasicUsageExample")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("BasicUsageExample")] -[assembly: AssemblyCopyright("Copyright © Rafał Łopatka 2019")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - // Setting ComVisible to false makes the types in this assembly not visible // to COM components. If you need to access a type in this assembly from // COM, set the ComVisible attribute to true on that type. @@ -39,17 +27,3 @@ //(used if a resource is not found in the page, // app, or any theme specific resource dictionaries) )] - - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Src/Examples/ConfigurationExample/ConfigurationExample.csproj b/Src/Examples/ConfigurationExample/ConfigurationExample.csproj index 05d7504..55b1481 100644 --- a/Src/Examples/ConfigurationExample/ConfigurationExample.csproj +++ b/Src/Examples/ConfigurationExample/ConfigurationExample.csproj @@ -1,124 +1,36 @@ - - - - - Debug - AnyCPU - {F50D1BE4-2FF7-4E83-A149-104646FD6AC9} - WinExe - Properties - ConfigurationExample - ConfigurationExample - v4.5.2 - 512 - {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 4 - true - - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - AnyCPU - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - toast-notifications-icon.ico - - - - - - - - - 4.0 - - - - - - - - MSBuild:Compile - Designer - - - App.xaml - Code - - - - - - - MainWindow.xaml - - - - - Code - - - True - True - Resources.resx - - - True - Settings.settings - True - - - ResXFileCodeGenerator - Resources.Designer.cs - - - SettingsSingleFileGenerator - Settings.Designer.cs - - - - - - - - - MSBuild:Compile - Designer - - - - - {4de2f314-b19f-423e-92d8-7d3a7d9acea2} - ToastNotifications.Messages - - - {4a8879fc-9a6e-4904-910b-5c13fa5ed5be} - ToastNotifications - - - - - - - + + + WinExe + net452 + {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + true + ConfigurationExample + ConfigurationExample + Copyright © Rafał Łopatka 2019 + bin\$(Configuration)\ + true + + + full + + + pdbonly + + + toast-notifications-icon.ico + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Src/Examples/ConfigurationExample/Properties/AssemblyInfo.cs b/Src/Examples/ConfigurationExample/Properties/AssemblyInfo.cs index 9ab570f..f43214f 100644 --- a/Src/Examples/ConfigurationExample/Properties/AssemblyInfo.cs +++ b/Src/Examples/ConfigurationExample/Properties/AssemblyInfo.cs @@ -4,18 +4,6 @@ using System.Runtime.InteropServices; using System.Windows; -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("ConfigurationExample")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("ConfigurationExample")] -[assembly: AssemblyCopyright("Copyright © Rafał Łopatka 2019")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - // Setting ComVisible to false makes the types in this assembly not visible // to COM components. If you need to access a type in this assembly from // COM, set the ComVisible attribute to true on that type. @@ -39,17 +27,3 @@ //(used if a resource is not found in the page, // app, or any theme specific resource dictionaries) )] - - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Src/Examples/CustomNotificationsExample/CustomNotificationsExample.csproj b/Src/Examples/CustomNotificationsExample/CustomNotificationsExample.csproj index 1f31fa7..826e1ee 100644 --- a/Src/Examples/CustomNotificationsExample/CustomNotificationsExample.csproj +++ b/Src/Examples/CustomNotificationsExample/CustomNotificationsExample.csproj @@ -1,145 +1,32 @@ - - - - - Debug - AnyCPU - {C406B971-ED9A-4633-9626-32FEDCCF9262} - WinExe - CustomNotificationsExample - CustomNotificationsExample - v4.5.2 - 512 - {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 4 - true - - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - AnyCPU - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - ..\..\packages\MahApps.Metro.1.5.0\lib\net45\MahApps.Metro.dll - - - - ..\..\packages\MahApps.Metro.1.5.0\lib\net45\System.Windows.Interactivity.dll - - - - - - - 4.0 - - - - - - - - MSBuild:Compile - Designer - - - CustomInputDisplayPart.xaml - - - - - MahAppsDisplayPart.xaml - - - - - - MSBuild:Compile - Designer - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - MSBuild:Compile - Designer - - - App.xaml - Code - - - CustomCommandDisplayPart.xaml - - - - - CustomDisplayPart.xaml - - - - MainWindow.xaml - Code - - - - - - Code - - - True - True - Resources.resx - - - True - Settings.settings - True - - - ResXFileCodeGenerator - Resources.Designer.cs - - - - SettingsSingleFileGenerator - Settings.Designer.cs - - - - - - - - {4a8879fc-9a6e-4904-910b-5c13fa5ed5be} - ToastNotifications - - - - + + + WinExe + net452 + {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + true + CustomNotificationsExample + CustomNotificationsExample + Copyright © Rafał Łopatka 2018 + bin\$(Configuration)\ + true + + + full + + + pdbonly + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Src/Examples/CustomNotificationsExample/Properties/AssemblyInfo.cs b/Src/Examples/CustomNotificationsExample/Properties/AssemblyInfo.cs index 85ddb93..68048cc 100644 --- a/Src/Examples/CustomNotificationsExample/Properties/AssemblyInfo.cs +++ b/Src/Examples/CustomNotificationsExample/Properties/AssemblyInfo.cs @@ -4,18 +4,6 @@ using System.Runtime.InteropServices; using System.Windows; -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("CustomNotificationsExample")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("CustomNotificationsExample")] -[assembly: AssemblyCopyright("Copyright © Rafał Łopatka 2018")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - // Setting ComVisible to false makes the types in this assembly not visible // to COM components. If you need to access a type in this assembly from // COM, set the ComVisible attribute to true on that type. @@ -39,17 +27,3 @@ //(used if a resource is not found in the page, // app, or any theme specific resource dictionaries) )] - - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Src/Examples/CustomNotificationsExample/packages.config b/Src/Examples/CustomNotificationsExample/packages.config deleted file mode 100644 index 087aea0..0000000 --- a/Src/Examples/CustomNotificationsExample/packages.config +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/Src/Examples/DotNetCoreUsageExample/DotNetCoreUsageExample.csproj b/Src/Examples/DotNetCoreUsageExample/DotNetCoreUsageExample.csproj index 1ea9750..1d1a1d9 100644 --- a/Src/Examples/DotNetCoreUsageExample/DotNetCoreUsageExample.csproj +++ b/Src/Examples/DotNetCoreUsageExample/DotNetCoreUsageExample.csproj @@ -1,22 +1,17 @@ - - - - WinExe - netcoreapp3.0 - true - - - - - - - - - - - - - - - + + + WinExe + net40;netcoreapp3.1 + true + + + + + + + + + + + \ No newline at end of file diff --git a/Src/ToastNotifications.Messages/Properties/AssemblyInfo.cs b/Src/ToastNotifications.Messages/Properties/AssemblyInfo.cs index 7d550fb..3b13475 100644 --- a/Src/ToastNotifications.Messages/Properties/AssemblyInfo.cs +++ b/Src/ToastNotifications.Messages/Properties/AssemblyInfo.cs @@ -1,55 +1,30 @@ -using System.Reflection; -using System.Resources; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; -using System.Windows; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("ToastNotifications.Messages")] -[assembly: AssemblyDescription("Toast notifications messages for WPF")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("DevCrew.pl Rafał Łopatka")] -[assembly: AssemblyProduct("ToastNotifications.Messages")] -[assembly: AssemblyCopyright("Copyright © Rafał Łopatka 2019")] -[assembly: AssemblyTrademark("Rafał Łopatka")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -//In order to begin building localizable applications, set -//CultureYouAreCodingWith in your .csproj file -//inside a . For example, if you are using US english -//in your source files, set the to en-US. Then uncomment -//the NeutralResourceLanguage attribute below. Update the "en-US" in -//the line below to match the UICulture setting in the project file. - -//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)] - - -[assembly:ThemeInfo( - ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located - //(used if a resource is not found in the page, - // or application resource dictionaries) - ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located - //(used if a resource is not found in the page, - // app, or any theme specific resource dictionaries) -)] - - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("2.5.1.0")] -[assembly: AssemblyFileVersion("2.5.1.0")] +using System.Reflection; +using System.Resources; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Windows; +[assembly: AssemblyTrademark("Rafal Lopatka")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +//In order to begin building localizable applications, set +//CultureYouAreCodingWith in your .csproj file +//inside a . For example, if you are using US english +//in your source files, set the to en-US. Then uncomment +//the NeutralResourceLanguage attribute below. Update the "en-US" in +//the line below to match the UICulture setting in the project file. + +//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)] + + +[assembly:ThemeInfo( + ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located + //(used if a resource is not found in the page, + // or application resource dictionaries) + ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located + //(used if a resource is not found in the page, + // app, or any theme specific resource dictionaries) +)] diff --git a/Src/ToastNotifications.Messages/ToastNotifications.Messages.csproj b/Src/ToastNotifications.Messages/ToastNotifications.Messages.csproj index cf2fdae..8456c48 100644 --- a/Src/ToastNotifications.Messages/ToastNotifications.Messages.csproj +++ b/Src/ToastNotifications.Messages/ToastNotifications.Messages.csproj @@ -1,136 +1,58 @@ - - - - - Debug - AnyCPU - {4DE2F314-B19F-423E-92D8-7D3A7D9ACEA2} - library - ToastNotifications.Messages - ToastNotifications.Messages - v4.0 - 512 - {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 4 - - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - toast-notifications-icon.ico - - - true - - - ../../Build/DevCrew.ToastNotifications.pfx - - - ../../Build/DevCrew.ToastNotifications_TemporaryKey.snk - - - - - - - - - 4.0 - - - - - - - - - ErrorDisplayPart.xaml - - - - - InformationDisplayPart.xaml - - - - - Code - - - True - True - Resources.resx - - - True - Settings.settings - True - - - - SuccessDisplayPart.xaml - - - - - WarningDisplayPart.xaml - - - - ResXFileCodeGenerator - Resources.Designer.cs - - - - SettingsSingleFileGenerator - Settings.Designer.cs - - - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - - - {4a8879fc-9a6e-4904-910b-5c13fa5ed5be} - ToastNotifications - - - - - - + + + net40;netcoreapp3.1 + True + {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + ToastNotifications.Messages + DevCrew.pl Rafał Łopatka + ToastNotifications.Messages + + ToastNotifications allows you to create and display rich notifications in WPF applications. + It's highly configurable with set of built-in options like positions, behaviours, themes and many others. + It's extendable, it gives you possibility to create custom and interactive notifications in simply manner. + + Copyright © Rafał Łopatka 2018 + 2.5.1.1 + 2.5.1.1 + 2.5.1.1 + true + DevCrew.pl Rafał Łopatka + https://raw.githubusercontent.com/raflop/ToastNotifications/master-v2/Media/project-icon.png + https://github.com/raflop/ToastNotifications/blob/master-v2/license + https://github.com/raflop/ToastNotifications + + Find out more at: + https://github.com/raflop/ToastNotifications/blob/master-v2/Docs/ReleaseNotes.md + + WPF notifications, Toast notifications, XAML notifications, c# notifications, UI notifications, ToastNotifications, toasts, messages, notifications, WPF, XAML, UI, notify, message, toast + + + full + bin\$(Configuration)\ + + + pdbonly + bin\$(Configuration)\ + + + toast-notifications-icon.ico + + + true + + + ../../Build/DevCrew.ToastNotifications.pfx + + + ../../Build/DevCrew.ToastNotifications_TemporaryKey.snk + + + + + + + + + + \ No newline at end of file diff --git a/Src/ToastNotifications.Messages/ToastNotifications.Messages.nuspec b/Src/ToastNotifications.Messages/ToastNotifications.Messages.nuspec deleted file mode 100644 index da5cbfd..0000000 --- a/Src/ToastNotifications.Messages/ToastNotifications.Messages.nuspec +++ /dev/null @@ -1,31 +0,0 @@ - - - - $id$ - $version$ - $title$ - $author$ - $author$ - - ToastNotifications allows you to create and display rich notifications in WPF applications. - It's highly configurable with set of built-in options like positions, behaviours, themes and many others. - It's extendable, it gives you possibility to create custom and interactive notifications in simply manner. - - Toast notifications for WPF. This package contains set of predefined messages types for ToastNotifications v2 - - Find out more at: - https://github.com/raflop/ToastNotifications/blob/master-v2/Docs/ReleaseNotes.md - - en-US - https://github.com/raflop/ToastNotifications/blob/master-v2/license - https://github.com/raflop/ToastNotifications - https://raw.githubusercontent.com/raflop/ToastNotifications/master-v2/Media/project-icon.png - false - Copyright © Rafał Łopatka 2018 - - WPF notifications, Toast notifications, XAML notifications, c# notifications, UI notifications, ToastNotifications, toasts, messages, notifications, WPF, XAML, UI, notify, message, toast - - - - - diff --git a/Src/ToastNotifications/Properties/AssemblyInfo.cs b/Src/ToastNotifications/Properties/AssemblyInfo.cs index ae17708..f2f9ff2 100644 --- a/Src/ToastNotifications/Properties/AssemblyInfo.cs +++ b/Src/ToastNotifications/Properties/AssemblyInfo.cs @@ -1,55 +1,27 @@ -using System.Reflection; -using System.Resources; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; -using System.Windows; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("ToastNotifications")] -[assembly: AssemblyDescription("Toast notifications for WPF")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("DevCrew.pl Rafał Łopatka")] -[assembly: AssemblyProduct("ToastNotifications")] -[assembly: AssemblyCopyright("Copyright © Rafał Łopatka 2019")] -[assembly: AssemblyTrademark("Rafał Łopatka")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -//In order to begin building localizable applications, set -//CultureYouAreCodingWith in your .csproj file -//inside a . For example, if you are using US english -//in your source files, set the to en-US. Then uncomment -//the NeutralResourceLanguage attribute below. Update the "en-US" in -//the line below to match the UICulture setting in the project file. - -//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)] - - -[assembly:ThemeInfo( - ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located - //(used if a resource is not found in the page, - // or application resource dictionaries) - ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located - //(used if a resource is not found in the page, - // app, or any theme specific resource dictionaries) -)] - - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("2.5.1.0")] -[assembly: AssemblyFileVersion("2.5.1.0")] +using System.Resources; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Windows; +using System.Reflection; + +[assembly: ThemeInfo( + ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located + //(used if a resource is not found in the page, + // or application resource dictionaries) + ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located + //(used if a resource is not found in the page, + // app, or any theme specific resource dictionaries) +)] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +//[assembly: AssemblyVersion("2.5.1.0")] +//[assembly: AssemblyFileVersion("2.5.1.0")] \ No newline at end of file diff --git a/Src/ToastNotifications/ToastNotifications.csproj b/Src/ToastNotifications/ToastNotifications.csproj index 16df514..1159f56 100644 --- a/Src/ToastNotifications/ToastNotifications.csproj +++ b/Src/ToastNotifications/ToastNotifications.csproj @@ -1,35 +1,39 @@ - - - + - Debug - AnyCPU - {4A8879FC-9A6E-4904-910B-5C13FA5ED5BE} - library - ToastNotifications - ToastNotifications - v4.0 - 512 + net40;netcoreapp3.1 + True {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 4 - + ToastNotifications + DevCrew.pl Rafał Łopatka + ToastNotifications + + ToastNotifications allows you to create and display rich notifications in WPF applications. + It's highly configurable with set of built-in options like positions, behaviours, themes and many others. + It's extendable, it gives you possibility to create custom and interactive notifications in simply manner. + + Copyright © Rafał Łopatka 2018 + 2.5.1.1 + 2.5.1.1 + 2.5.1.1 + true + true + DevCrew.pl Rafał Łopatka + https://raw.githubusercontent.com/raflop/ToastNotifications/master-v2/Media/project-icon.png + https://github.com/raflop/ToastNotifications/blob/master-v2/license + https://github.com/raflop/ToastNotifications + + Find out more at: + https://github.com/raflop/ToastNotifications/blob/master-v2/Docs/ReleaseNotes.md + + WPF notifications, Toast notifications, XAML notifications, c# notifications, UI notifications, ToastNotifications, toasts, messages, notifications, WPF, XAML, UI, notify, message, toast - true full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 + bin\$(Configuration)\ pdbonly - true - bin\Release\ - TRACE - prompt - 4 + bin\$(Configuration)\ toast-notifications-icon.ico @@ -37,105 +41,14 @@ true - + ../../Build/DevCrew.ToastNotifications.pfx - + ../../Build/DevCrew.ToastNotifications_TemporaryKey.snk - - - - - - - - - 4.0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - MSBuild:Compile - Designer - - - - - - - - - - - - - NotificationsWindow.xaml - - - - - - - - - - - - - - - - - Code - - - True - True - Resources.resx - - - True - Settings.settings - True - - - ResXFileCodeGenerator - Resources.Designer.cs - - - SettingsSingleFileGenerator - Settings.Designer.cs - @@ -143,6 +56,4 @@ - - \ No newline at end of file diff --git a/Src/ToastNotifications/ToastNotifications.nuspec b/Src/ToastNotifications/ToastNotifications.nuspec deleted file mode 100644 index 25d62bc..0000000 --- a/Src/ToastNotifications/ToastNotifications.nuspec +++ /dev/null @@ -1,31 +0,0 @@ - - - - $id$ - $version$ - $title$ - $author$ - $author$ - - ToastNotifications allows you to create and display rich notifications in WPF applications. - It's highly configurable with set of built-in options like positions, behaviours, themes and many others. - It's extendable, it gives you possibility to create custom and interactive notifications in simply manner. - - Toast notifications for WPF - - Find out more at: - https://github.com/raflop/ToastNotifications/blob/master-v2/Docs/ReleaseNotes.md - - en-US - https://github.com/raflop/ToastNotifications/blob/master-v2/license - https://github.com/raflop/ToastNotifications - https://raw.githubusercontent.com/raflop/ToastNotifications/master-v2/Media/project-icon.png - false - Copyright © Rafał Łopatka 2018 - - WPF notifications, Toast notifications, XAML notifications, c# notifications, UI notifications, ToastNotifications, toasts, messages, notifications, WPF, XAML, UI, notify, message, toast - - - - -