Index: Application/Riskeer/src/Application.Riskeer/App.xaml.cs
===================================================================
diff -u -rf257390d4843bdb890c6a7a88ef326e336cadd55 -rb6a08c2f7649bd449acf401b977261dd8c989235
--- Application/Riskeer/src/Application.Riskeer/App.xaml.cs (.../App.xaml.cs) (revision f257390d4843bdb890c6a7a88ef326e336cadd55)
+++ Application/Riskeer/src/Application.Riskeer/App.xaml.cs (.../App.xaml.cs) (revision b6a08c2f7649bd449acf401b977261dd8c989235)
@@ -26,6 +26,7 @@
using System.DirectoryServices.AccountManagement;
using System.Globalization;
using System.IO;
+using System.IO.Packaging;
using System.Linq;
using System.Reflection;
using System.Threading;
@@ -113,7 +114,7 @@
SupportWebsiteAddressUrl = "https://iplo.nl/contact/",
SupportPhoneNumber = "088-7970790",
ManualFilePath = "Gebruikershandleiding Riskeer 21.1.1.pdf",
- MadeByBitmapImage = new BitmapImage(new Uri("pack://application:,,,/Resources/MadeBy.png"))
+ MadeByBitmapImage = new BitmapImage(new Uri($"{PackUriHelper.UriSchemePack}://application:,,,/Resources/MadeBy.png"))
};
var mainWindow = new MainWindow();
Index: Core/Gui/src/Core.Gui/Forms/Backstage/AboutViewModel.cs
===================================================================
diff -u -rf257390d4843bdb890c6a7a88ef326e336cadd55 -rb6a08c2f7649bd449acf401b977261dd8c989235
--- Core/Gui/src/Core.Gui/Forms/Backstage/AboutViewModel.cs (.../AboutViewModel.cs) (revision f257390d4843bdb890c6a7a88ef326e336cadd55)
+++ Core/Gui/src/Core.Gui/Forms/Backstage/AboutViewModel.cs (.../AboutViewModel.cs) (revision b6a08c2f7649bd449acf401b977261dd8c989235)
@@ -114,7 +114,7 @@
$"x {SystemParameters.PrimaryScreenHeight.ToString(CultureInfo.InvariantCulture)}";
///
- /// Gets the made by bitmap image.
+ /// Gets the bitmap image representing the creators of the application.
///
public BitmapImage MadeByBitmapImage => settings.MadeByBitmapImage;
Index: Core/Gui/src/Core.Gui/Settings/GuiCoreSettings.cs
===================================================================
diff -u -rf257390d4843bdb890c6a7a88ef326e336cadd55 -rb6a08c2f7649bd449acf401b977261dd8c989235
--- Core/Gui/src/Core.Gui/Settings/GuiCoreSettings.cs (.../GuiCoreSettings.cs) (revision f257390d4843bdb890c6a7a88ef326e336cadd55)
+++ Core/Gui/src/Core.Gui/Settings/GuiCoreSettings.cs (.../GuiCoreSettings.cs) (revision b6a08c2f7649bd449acf401b977261dd8c989235)
@@ -65,7 +65,7 @@
public string ManualFilePath { get; set; }
///
- /// Gets or sets the made by bitmap image.
+ /// Gets or sets the bitmap image representing the creators of the application.
///
public BitmapImage MadeByBitmapImage { get; set; }
}