Index: Core/Gui/src/Core.Gui/Forms/Backstage/BackstageViewModel.cs
===================================================================
diff -u -r628a729daf3bed1d5cca1d4d0c107afb59134f54 -r05b63bf3a91f31ec8bc2125730554f19eeca73d1
--- Core/Gui/src/Core.Gui/Forms/Backstage/BackstageViewModel.cs (.../BackstageViewModel.cs) (revision 628a729daf3bed1d5cca1d4d0c107afb59134f54)
+++ Core/Gui/src/Core.Gui/Forms/Backstage/BackstageViewModel.cs (.../BackstageViewModel.cs) (revision 05b63bf3a91f31ec8bc2125730554f19eeca73d1)
@@ -48,8 +48,7 @@
///
/// The application settings.
/// The application version.
- /// Thrown when
- /// is null.
+ /// Thrown when is null.
public BackstageViewModel(GuiCoreSettings settings, string version)
{
if (settings == null)
Index: Core/Gui/src/Core.Gui/Forms/Backstage/InfoViewModel.cs
===================================================================
diff -u -r524febc6db4d42193289c6d006e242fbe0ededdf -r05b63bf3a91f31ec8bc2125730554f19eeca73d1
--- Core/Gui/src/Core.Gui/Forms/Backstage/InfoViewModel.cs (.../InfoViewModel.cs) (revision 524febc6db4d42193289c6d006e242fbe0ededdf)
+++ Core/Gui/src/Core.Gui/Forms/Backstage/InfoViewModel.cs (.../InfoViewModel.cs) (revision 05b63bf3a91f31ec8bc2125730554f19eeca73d1)
@@ -36,17 +36,9 @@
public event PropertyChangedEventHandler PropertyChanged;
///
- /// Gets or sets the name of the project.
+ /// Gets the name of the project.
///
- public string ProjectName
- {
- get => project?.Name;
- set
- {
- project.Name = value;
- OnPropertyChanged(nameof(ProjectName));
- }
- }
+ public string ProjectName => project?.Name;
///
/// Gets or sets the description of the project.
@@ -66,7 +58,7 @@
///
/// The project to set.
/// Thrown when
- /// is null
+ /// is null.
public void SetProject(IProject projectToSet)
{
if (projectToSet == null)
Index: Core/Gui/src/Core.Gui/Forms/Backstage/SupportViewModel.cs
===================================================================
diff -u -rb41da4f0fb44af1cd286c3d77668280497ec8199 -r05b63bf3a91f31ec8bc2125730554f19eeca73d1
--- Core/Gui/src/Core.Gui/Forms/Backstage/SupportViewModel.cs (.../SupportViewModel.cs) (revision b41da4f0fb44af1cd286c3d77668280497ec8199)
+++ Core/Gui/src/Core.Gui/Forms/Backstage/SupportViewModel.cs (.../SupportViewModel.cs) (revision 05b63bf3a91f31ec8bc2125730554f19eeca73d1)
@@ -35,8 +35,7 @@
/// Creates a new instance of .
///
/// The application settings.
- /// Thrown when
- /// is null.
+ /// Thrown when is null.
public SupportViewModel(GuiCoreSettings settings)
{
if (settings == null)