- Timestamp:
- 09/14/12 18:58:15 (12 years ago)
- Location:
- branches/GP-MoveOperators
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GP-MoveOperators
- Property svn:ignore
-
old new 21 21 protoc.exe 22 22 _ReSharper.HeuristicLab 3.3 Tests 23 Google.ProtocolBuffers-2.4.1.473.dll
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/GP-MoveOperators/HeuristicLab.MainForm.WindowsForms/3.3/Controls/ViewHost.cs
r7259 r8660 197 197 //mkommend: solution to resizing issues. taken from http://support.microsoft.com/kb/953934 198 198 //not implemented with a panel to reduce the number of nested controls 199 if (Handle != null) 199 //also cf. http://connect.microsoft.com/VisualStudio/feedback/details/98368/csc-incorrectly-allows-comparison-between-intptr-and-null 200 if (Handle != IntPtr.Zero) 200 201 this.BeginInvoke((Action<EventArgs>)OnSizeChangedHelper, e); 201 202 } -
branches/GP-MoveOperators/HeuristicLab.MainForm.WindowsForms/3.3/HeuristicLab.MainForm.WindowsForms-3.3.csproj
r8206 r8660 113 113 <Reference Include="System.Data" /> 114 114 <Reference Include="System.Xml" /> 115 <Reference Include="WeifenLuo.WinFormsUI.Docking-2. 3.1, Version=2.3.1.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">116 <HintPath>..\..\bin\WeifenLuo.WinFormsUI.Docking-2. 3.1.dll</HintPath>115 <Reference Include="WeifenLuo.WinFormsUI.Docking-2.7.0, Version=2.7.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 116 <HintPath>..\..\bin\WeifenLuo.WinFormsUI.Docking-2.7.0.dll</HintPath> 117 117 <Private>False</Private> 118 118 </Reference> … … 263 263 --> 264 264 <PropertyGroup> 265 <PreBuildEvent >set Path=%25Path%25;$(ProjectDir);$(SolutionDir)265 <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir) 266 266 set ProjectDir=$(ProjectDir) 267 267 set SolutionDir=$(SolutionDir) … … 270 270 call PreBuildEvent.cmd 271 271 </PreBuildEvent> 272 <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' "> 273 export ProjectDir=$(ProjectDir) 274 export SolutionDir=$(SolutionDir) 275 276 $SolutionDir/PreBuildEvent.sh 277 </PreBuildEvent> 272 278 </PropertyGroup> 273 279 </Project> -
branches/GP-MoveOperators/HeuristicLab.MainForm.WindowsForms/3.3/Plugin.cs.frame
r7259 r8660 26 26 27 27 namespace HeuristicLab.MainForm.WindowsForms { 28 [Plugin("HeuristicLab.MainForm.WindowsForms", "3.3. 6.$WCREV$")]28 [Plugin("HeuristicLab.MainForm.WindowsForms", "3.3.7.$WCREV$")] 29 29 [PluginFile("HeuristicLab.MainForm.WindowsForms-3.3.dll", PluginFileType.Assembly)] 30 30 [PluginDependency("HeuristicLab.Common", "3.3")] 31 31 [PluginDependency("HeuristicLab.Common.Resources", "3.3")] 32 32 [PluginDependency("HeuristicLab.MainForm", "3.3")] 33 [PluginDependency("HeuristicLab.WinFormsUI", "2. 3.1")]33 [PluginDependency("HeuristicLab.WinFormsUI", "2.7")] 34 34 public class HeuristicLabMainFormPlugin : PluginBase { 35 35 } -
branches/GP-MoveOperators/HeuristicLab.MainForm.WindowsForms/3.3/Properties/AssemblyInfo.cs.frame
r7259 r8660 54 54 // by using the '*' as shown below: 55 55 [assembly: AssemblyVersion("3.3.0.0")] 56 [assembly: AssemblyFileVersion("3.3. 6.$WCREV$")]56 [assembly: AssemblyFileVersion("3.3.7.$WCREV$")]
Note: See TracChangeset
for help on using the changeset viewer.