Index: Core/Common/src/Core.Common.Base/Core.Common.Base.csproj
===================================================================
diff -u -r04f5526f955c773d4987e820e2aca2614dfbd8d8 -rce4b67d439ced10a8108f0932c7b33f4bd21c831
--- Core/Common/src/Core.Common.Base/Core.Common.Base.csproj (.../Core.Common.Base.csproj) (revision 04f5526f955c773d4987e820e2aca2614dfbd8d8)
+++ Core/Common/src/Core.Common.Base/Core.Common.Base.csproj (.../Core.Common.Base.csproj) (revision ce4b67d439ced10a8108f0932c7b33f4bd21c831)
@@ -39,8 +39,6 @@
true
DEBUG;TRACE
true
-
-
full
false
prompt
Index: Core/Common/src/Core.Common.Utils/Core.Common.Utils.csproj
===================================================================
diff -u -r04f5526f955c773d4987e820e2aca2614dfbd8d8 -rce4b67d439ced10a8108f0932c7b33f4bd21c831
--- Core/Common/src/Core.Common.Utils/Core.Common.Utils.csproj (.../Core.Common.Utils.csproj) (revision 04f5526f955c773d4987e820e2aca2614dfbd8d8)
+++ Core/Common/src/Core.Common.Utils/Core.Common.Utils.csproj (.../Core.Common.Utils.csproj) (revision ce4b67d439ced10a8108f0932c7b33f4bd21c831)
@@ -43,8 +43,6 @@
full
false
prompt
-
-
false
Index: Core/Common/src/Core.Common.Version/Core.Common.Version.csproj
===================================================================
diff -u -r04f5526f955c773d4987e820e2aca2614dfbd8d8 -rce4b67d439ced10a8108f0932c7b33f4bd21c831
--- Core/Common/src/Core.Common.Version/Core.Common.Version.csproj (.../Core.Common.Version.csproj) (revision 04f5526f955c773d4987e820e2aca2614dfbd8d8)
+++ Core/Common/src/Core.Common.Version/Core.Common.Version.csproj (.../Core.Common.Version.csproj) (revision ce4b67d439ced10a8108f0932c7b33f4bd21c831)
@@ -17,8 +17,6 @@
DEBUG;TRACE
full
prompt
-
-
bin\Debug\
@@ -27,8 +25,6 @@
true
none
prompt
-
-
bin\Debug\
Index: Core/Components/src/Core.Components.GraphSharp/Commands/VertexSelectedCommand.cs
===================================================================
diff -u -r2c5e077a0f546af6d6379eb93111fd8366fc2224 -rce4b67d439ced10a8108f0932c7b33f4bd21c831
--- Core/Components/src/Core.Components.GraphSharp/Commands/VertexSelectedCommand.cs (.../VertexSelectedCommand.cs) (revision 2c5e077a0f546af6d6379eb93111fd8366fc2224)
+++ Core/Components/src/Core.Components.GraphSharp/Commands/VertexSelectedCommand.cs (.../VertexSelectedCommand.cs) (revision ce4b67d439ced10a8108f0932c7b33f4bd21c831)
@@ -32,7 +32,17 @@
{
private readonly PointedTreeElementVertex vertex;
- public event EventHandler CanExecuteChanged;
+ public event EventHandler CanExecuteChanged
+ {
+ add
+ {
+ CommandManager.RequerySuggested += value;
+ }
+ remove
+ {
+ CommandManager.RequerySuggested -= value;
+ }
+ }
///
/// Creates a new instance of .
Index: Core/Components/src/Core.Components.OxyPlot.Forms/Core.Components.OxyPlot.Forms.csproj
===================================================================
diff -u -r04f5526f955c773d4987e820e2aca2614dfbd8d8 -rce4b67d439ced10a8108f0932c7b33f4bd21c831
--- Core/Components/src/Core.Components.OxyPlot.Forms/Core.Components.OxyPlot.Forms.csproj (.../Core.Components.OxyPlot.Forms.csproj) (revision 04f5526f955c773d4987e820e2aca2614dfbd8d8)
+++ Core/Components/src/Core.Components.OxyPlot.Forms/Core.Components.OxyPlot.Forms.csproj (.../Core.Components.OxyPlot.Forms.csproj) (revision ce4b67d439ced10a8108f0932c7b33f4bd21c831)
@@ -16,16 +16,12 @@
full
false
prompt
-
-
TRACE
true
none
prompt
-
-
TRACE
Index: Core/Components/src/Core.Components.OxyPlot/Core.Components.OxyPlot.csproj
===================================================================
diff -u -r04f5526f955c773d4987e820e2aca2614dfbd8d8 -rce4b67d439ced10a8108f0932c7b33f4bd21c831
--- Core/Components/src/Core.Components.OxyPlot/Core.Components.OxyPlot.csproj (.../Core.Components.OxyPlot.csproj) (revision 04f5526f955c773d4987e820e2aca2614dfbd8d8)
+++ Core/Components/src/Core.Components.OxyPlot/Core.Components.OxyPlot.csproj (.../Core.Components.OxyPlot.csproj) (revision ce4b67d439ced10a8108f0932c7b33f4bd21c831)
@@ -16,16 +16,12 @@
full
false
prompt
-
-
TRACE
true
none
prompt
-
-
TRACE
Index: Core/Components/test/Core.Components.Gis.Forms.Test/Views/BackgroundMapDataSelectionControlTest.cs
===================================================================
diff -u -r67284323e2785c651633d9c52049ba12a9c70e6a -rce4b67d439ced10a8108f0932c7b33f4bd21c831
--- Core/Components/test/Core.Components.Gis.Forms.Test/Views/BackgroundMapDataSelectionControlTest.cs (.../BackgroundMapDataSelectionControlTest.cs) (revision 67284323e2785c651633d9c52049ba12a9c70e6a)
+++ Core/Components/test/Core.Components.Gis.Forms.Test/Views/BackgroundMapDataSelectionControlTest.cs (.../BackgroundMapDataSelectionControlTest.cs) (revision ce4b67d439ced10a8108f0932c7b33f4bd21c831)
@@ -33,17 +33,25 @@
[Test]
public void Constructor_ExpectedValues()
{
+ // Setup
+ const string name = "Random display name";
+
// Call
- var backgroundMapDataSelectionControl = new TestBackgroundMapDataSelectionControl("Random display name");
+ var backgroundMapDataSelectionControl = new TestBackgroundMapDataSelectionControl(name);
// Assert
Assert.IsInstanceOf(backgroundMapDataSelectionControl);
- Assert.AreEqual("Random display name", backgroundMapDataSelectionControl.DisplayName);
+ Assert.AreEqual(name, backgroundMapDataSelectionControl.DisplayName);
+ Assert.IsNull(backgroundMapDataSelectionControl.SelectedMapData);
}
private class TestBackgroundMapDataSelectionControl : BackgroundMapDataSelectionControl
{
- public override event EventHandler SelectedMapDataChanged;
+ public override event EventHandler SelectedMapDataChanged
+ {
+ add {}
+ remove {}
+ }
public TestBackgroundMapDataSelectionControl(string displayName)
: base(displayName) {}
Index: Core/Plugins/src/Core.Plugins.CommonTools/Core.Plugins.CommonTools.csproj
===================================================================
diff -u -r04f5526f955c773d4987e820e2aca2614dfbd8d8 -rce4b67d439ced10a8108f0932c7b33f4bd21c831
--- Core/Plugins/src/Core.Plugins.CommonTools/Core.Plugins.CommonTools.csproj (.../Core.Plugins.CommonTools.csproj) (revision 04f5526f955c773d4987e820e2aca2614dfbd8d8)
+++ Core/Plugins/src/Core.Plugins.CommonTools/Core.Plugins.CommonTools.csproj (.../Core.Plugins.CommonTools.csproj) (revision ce4b67d439ced10a8108f0932c7b33f4bd21c831)
@@ -17,8 +17,6 @@
full
false
prompt
-
-
TRACE
Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Properties/Resources.Designer.cs
===================================================================
diff -u -rf8c28b3b04cdabb62ea37772efcb1f4ebbbf2b9e -rce4b67d439ced10a8108f0932c7b33f4bd21c831
--- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision f8c28b3b04cdabb62ea37772efcb1f4ebbbf2b9e)
+++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision ce4b67d439ced10a8108f0932c7b33f4bd21c831)
@@ -119,7 +119,7 @@
}
///
- /// Looks up a localized string similar to Naam van het toetstraject..
+ /// Looks up a localized string similar to Naam van het traject..
///
public static string AssessmentSection_Name_Description {
get {
Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Properties/Resources.resx
===================================================================
diff -u -rf8c28b3b04cdabb62ea37772efcb1f4ebbbf2b9e -rce4b67d439ced10a8108f0932c7b33f4bd21c831
--- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Properties/Resources.resx (.../Resources.resx) (revision f8c28b3b04cdabb62ea37772efcb1f4ebbbf2b9e)
+++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Properties/Resources.resx (.../Resources.resx) (revision ce4b67d439ced10a8108f0932c7b33f4bd21c831)
@@ -118,7 +118,7 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
- Naam van het toetstraject.
+ Naam van het traject.
Naam
Index: Ringtoets/Integration/src/Ringtoets.Integration.Plugin/Resources/map.png
===================================================================
diff -u -r3722e29f53ce7db0f11fb184cdc2a76d33078cf2 -rce4b67d439ced10a8108f0932c7b33f4bd21c831
Binary files differ
Index: Ringtoets/Integration/src/Ringtoets.Integration.Plugin/Ringtoets.Integration.Plugin.csproj
===================================================================
diff -u -r04f5526f955c773d4987e820e2aca2614dfbd8d8 -rce4b67d439ced10a8108f0932c7b33f4bd21c831
--- Ringtoets/Integration/src/Ringtoets.Integration.Plugin/Ringtoets.Integration.Plugin.csproj (.../Ringtoets.Integration.Plugin.csproj) (revision 04f5526f955c773d4987e820e2aca2614dfbd8d8)
+++ Ringtoets/Integration/src/Ringtoets.Integration.Plugin/Ringtoets.Integration.Plugin.csproj (.../Ringtoets.Integration.Plugin.csproj) (revision ce4b67d439ced10a8108f0932c7b33f4bd21c831)
@@ -291,9 +291,6 @@
-
-
-