Index: Core/Common/src/Core.Common.Base/ApplicationCore.cs
===================================================================
diff -u -rc4c3a853502f5248c1feed9281d5e10d2eec25dc -rd2a39de92e27154e52caeffdae182c937bc1fcb2
--- Core/Common/src/Core.Common.Base/ApplicationCore.cs (.../ApplicationCore.cs) (revision c4c3a853502f5248c1feed9281d5e10d2eec25dc)
+++ Core/Common/src/Core.Common.Base/ApplicationCore.cs (.../ApplicationCore.cs) (revision d2a39de92e27154e52caeffdae182c937bc1fcb2)
@@ -176,29 +176,19 @@
throw new InvalidOperationException(Properties.Resources.ApplicationCore_Run_Application_is_already_running);
}
+ isRunning = true;
+
initializing = true;
- var stopwatch = new Stopwatch();
- stopwatch.Start();
-
log.Info(Properties.Resources.ApplicationCore_Run_starting);
- if (running)
- {
- throw new InvalidOperationException(Properties.Resources.ApplicationCore_Run_Application_is_already_running);
- }
-
- running = true;
-
// load all assemblies from current assembly directory
AssemblyUtils.LoadAllAssembliesFromDirectory(Path.GetFullPath(Path.GetDirectoryName(GetType().Assembly.Location))).ToList();
LogSystemInfo();
Plugins.ForEach(p => p.ApplicationCore = this);
- isRunning = true;
-
log.Info(Properties.Resources.ApplicationCore_Run_Creating_new_project);
CreateNewProject();
@@ -210,10 +200,6 @@
Project = projectBeingCreated; // opens project in application
initializing = false;
-
- stopwatch.Stop();
-
- log.InfoFormat(Properties.Resources.ApplicationCore_Run_Ringtoets_is_ready_started_in_0_F3_seconds, stopwatch.ElapsedMilliseconds/1000.0);
}
public void CloseProject()
Index: Core/Common/src/Core.Common.Base/Properties/Resources.Designer.cs
===================================================================
diff -u -r48fe36c87dd40ff715adf4c0cf393f7390e6c993 -rd2a39de92e27154e52caeffdae182c937bc1fcb2
--- Core/Common/src/Core.Common.Base/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 48fe36c87dd40ff715adf4c0cf393f7390e6c993)
+++ Core/Common/src/Core.Common.Base/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision d2a39de92e27154e52caeffdae182c937bc1fcb2)
@@ -234,15 +234,6 @@
}
///
- /// Looks up a localized string similar to Ringtoets is klaar, opstarttijd van {0:F3} seconden..
- ///
- internal static string ApplicationCore_Run_Ringtoets_is_ready_started_in_0_F3_seconds {
- get {
- return ResourceManager.GetString("ApplicationCore_Run_Ringtoets_is_ready_started_in_0_F3_seconds", resourceCulture);
- }
- }
-
- ///
/// Looks up a localized string similar to Ringtoets wordt gestart....
///
internal static string ApplicationCore_Run_starting {
Index: Core/Common/src/Core.Common.Base/Properties/Resources.resx
===================================================================
diff -u -r48fe36c87dd40ff715adf4c0cf393f7390e6c993 -rd2a39de92e27154e52caeffdae182c937bc1fcb2
--- Core/Common/src/Core.Common.Base/Properties/Resources.resx (.../Resources.resx) (revision 48fe36c87dd40ff715adf4c0cf393f7390e6c993)
+++ Core/Common/src/Core.Common.Base/Properties/Resources.resx (.../Resources.resx) (revision d2a39de92e27154e52caeffdae182c937bc1fcb2)
@@ -132,9 +132,6 @@
Wachten tot alle plugins zijn geactiveerd...
-
- Ringtoets is klaar, opstarttijd van {0:F3} seconden.
-
'Run()' moet eerst worden aangeroepen voordat het project kan worden geopend.