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
Files:
2 added
1 deleted
5 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/HeuristicLab.PluginInfrastructure.UI-4.0.csproj

    r13338 r13340  
    131131      <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project>
    132132      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
     133      <Private>False</Private>
    133134    </ProjectReference>
    134135  </ItemGroup>
     
    138139  <ItemGroup>
    139140    <None Include="HeuristicLab.snk" />
     141    <None Include="Properties\AssemblyInfo.cs.frame" />
    140142  </ItemGroup>
    141143  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
     144  <PropertyGroup>
     145    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
     146set ProjectDir=$(ProjectDir)
     147set SolutionDir=$(SolutionDir)
     148set Outdir=$(Outdir)
     149
     150call PreBuildEvent.cmd</PreBuildEvent>
     151  </PropertyGroup>
    142152  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
    143153       Other similar extension points exist, see Microsoft.Common.targets.
  • branches/RefactorPluginInfrastructure-2522/HeuristicLab.PluginInfrastructure.UI/SplashScreen.Designer.cs

    r13338 r13340  
    5858      this.versionLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
    5959      this.versionLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 6F);
    60       this.versionLabel.Location = new System.Drawing.Point(436, 147);
     60      this.versionLabel.Location = new System.Drawing.Point(320, 147);
    6161      this.versionLabel.Name = "versionLabel";
    62       this.versionLabel.Size = new System.Drawing.Size(150, 9);
     62      this.versionLabel.Size = new System.Drawing.Size(266, 10);
    6363      this.versionLabel.TabIndex = 1;
    6464      this.versionLabel.Text = "Version ";
     
    6767      // infoLabel
    6868      //
    69       this.infoLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
    70                   | System.Windows.Forms.AnchorStyles.Right)));
     69      this.infoLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
     70            | System.Windows.Forms.AnchorStyles.Right)));
    7171      this.infoLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
    7272      this.infoLabel.ForeColor = System.Drawing.Color.DarkOrange;
     
    9191      // pictureBox
    9292      //
    93       this.pictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
    94                   | System.Windows.Forms.AnchorStyles.Right)));
    95       this.pictureBox.Image = Resources.HeuristicLabBanner;
     93      this.pictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
     94            | System.Windows.Forms.AnchorStyles.Right)));
     95      this.pictureBox.Image = global::HeuristicLab.PluginInfrastructure.UI.Resources.HeuristicLabBanner;
    9696      this.pictureBox.Location = new System.Drawing.Point(0, 0);
    9797      this.pictureBox.Name = "pictureBox";
     
    103103      // SplashScreen
    104104      //
    105       this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    106105      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
    107106      this.BackColor = System.Drawing.Color.White;
     
    113112      this.Controls.Add(this.infoLabel);
    114113      this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
    115       this.Icon = Resources.HeuristicLab;
     114      this.Icon = global::HeuristicLab.PluginInfrastructure.UI.Resources.HeuristicLab;
    116115      this.MaximizeBox = false;
    117116      this.MinimizeBox = false;
  • 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
  • branches/RefactorPluginInfrastructure-2522/HeuristicLab/3.3/HeuristicLab-3.3.csproj

    r13338 r13340  
    191191      <Project>{7af3c7b6-8ba5-44f3-8d5b-2bf7a23cf12d}</Project>
    192192      <Name>HeuristicLab.PluginInfrastructure.UI-4.0</Name>
     193      <Private>False</Private>
    193194    </ProjectReference>
    194195  </ItemGroup>
Note: See TracChangeset for help on using the changeset viewer.