Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/23/15 17:16:35 (8 years ago)
Author:
gkronber
Message:

#2522: added release name to SplashScreen, added AssemblyInfo.cs.frame file for HeuristicLab.PluginInfrastructure.UI

Location:
branches/RefactorPluginInfrastructure-2522/HeuristicLab.PluginInfrastructure.UI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/RefactorPluginInfrastructure-2522/HeuristicLab.PluginInfrastructure.UI

    • Property svn:ignore
      •  

        old new  
        11bin
        22obj
         3*.user
  • branches/RefactorPluginInfrastructure-2522/HeuristicLab.PluginInfrastructure.UI/SplashScreen.cs

    r13338 r13340  
    4444      RegisterPluginManagerEventHandlers();
    4545
    46       versionLabel.Text = "Version " + AssemblyExtensions.GetFileVersion(GetType().Assembly);
     46      versionLabel.Text = "Version " + typeof(PluginManager).Assembly.GetFileVersion() + " Windischgarsten (11/2015)";
    4747      infoLabel.Text = "";
    4848
    49       var attr = (AssemblyCopyrightAttribute)this.GetType().Assembly.GetCustomAttributes(typeof(AssemblyCopyrightAttribute), false).Single();
     49      var attr = (AssemblyCopyrightAttribute)typeof(PluginManager).Assembly.GetCustomAttributes(typeof(AssemblyCopyrightAttribute), false).Single();
    5050      copyrightLabel.Text = "Copyright " + attr.Copyright;
    5151
Note: See TracChangeset for help on using the changeset viewer.