diff options
| author | Shlomo Hecht <shlomo@twine-s.com> | 2018-07-24 14:44:07 +0300 |
|---|---|---|
| committer | Shlomo Hecht <shlomo@twine-s.com> | 2018-07-24 14:44:07 +0300 |
| commit | 50a7c87bfa117e55979e9d94e69688661608092c (patch) | |
| tree | 8292e36c8cdebaeec8796c76932fd355ff021a43 /Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/StudioApplication | |
| parent | 11c58adff6c35b028e6eaa8cbb2de7c725958f30 (diff) | |
| parent | 7aaa8cb0c4b3c39c7583af89fcee5ea24e7b60ce (diff) | |
| download | Tango-50a7c87bfa117e55979e9d94e69688661608092c.tar.gz Tango-50a7c87bfa117e55979e9d94e69688661608092c.zip | |
merge
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/StudioApplication')
| -rw-r--r-- | Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/StudioApplication/DefaultStudioApplicationManager.cs | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/StudioApplication/DefaultStudioApplicationManager.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/StudioApplication/DefaultStudioApplicationManager.cs index fdad31251..4290a9b71 100644 --- a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/StudioApplication/DefaultStudioApplicationManager.cs +++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/StudioApplication/DefaultStudioApplicationManager.cs @@ -56,6 +56,8 @@ namespace Tango.MachineStudio.UI.StudioApplication { TangoIOC.Default.GetAllInstancesByBase<IStudioViewModel>().ToList().ForEach(x => x.OnApplicationStarted()); }; + + LogManager.LogReferencedAssemblies(); }); }); } @@ -135,7 +137,7 @@ namespace Tango.MachineStudio.UI.StudioApplication { get { - return typeof(DefaultStudioApplicationManager).Assembly.GetName().Version.ToString(); + return AssemblyHelper.GetCurrentAssemblyVersion().ToString(3); } } @@ -264,7 +266,7 @@ namespace Tango.MachineStudio.UI.StudioApplication { get { - return typeof(ExtendedObject).Assembly.GetName().Version.ToString(); + return typeof(ExtendedObject).Assembly.GetName().Version.ToString(3); } } @@ -275,7 +277,7 @@ namespace Tango.MachineStudio.UI.StudioApplication { get { - return Properties.Resources.BuildDate; + return AssemblyHelper.GetCurrentAssemblyBuildDate().ToShortDateString(); } } @@ -286,7 +288,7 @@ namespace Tango.MachineStudio.UI.StudioApplication { get { - return EmbeddedResourceHelper.GetEmbeddedResourceText("Tango.MachineStudio.UI.ChangeLogs.MachineStudioChangeLog.txt") + Environment.NewLine + Environment.NewLine + Environment.NewLine + EmbeddedResourceHelper.GetEmbeddedResourceText("Tango.MachineStudio.UI.ChangeLogs.CoreChangeLog.txt"); + return EmbeddedResourceHelper.GetEmbeddedResourceText("Tango.MachineStudio.UI.ChangeLog.txt"); } } } |
