- Timestamp:
- 04/16/13 13:13:41 (12 years ago)
- Location:
- branches/OaaS
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OaaS
- Property svn:ignore
-
old new 21 21 protoc.exe 22 22 _ReSharper.HeuristicLab 3.3 Tests 23 Google.ProtocolBuffers-2.4.1.473.dll 23 24 packages
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/OaaS/HeuristicLab.Problems.QuadraticAssignment.Views
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Problems.QuadraticAssignment.Views (added) merged: 8246,8600,8882
- Property svn:mergeinfo changed
-
branches/OaaS/HeuristicLab.Problems.QuadraticAssignment.Views/3.3/HeuristicLab.Problems.QuadraticAssignment.Views-3.3.csproj
r7825 r9363 212 212 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 213 213 <PropertyGroup> 214 <PreBuildEvent >set Path=%25Path%25;$(ProjectDir);$(SolutionDir)214 <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir) 215 215 set ProjectDir=$(ProjectDir) 216 216 set SolutionDir=$(SolutionDir) … … 219 219 call PreBuildEvent.cmd 220 220 SubWCRev "%25ProjectDir%25\" "%25ProjectDir%25\Plugin.cs.frame" "%25ProjectDir%25\Plugin.cs" 221 </PreBuildEvent> 222 <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' "> 223 export ProjectDir=$(ProjectDir) 224 export SolutionDir=$(SolutionDir) 225 226 $SolutionDir/PreBuildEvent.sh 221 227 </PreBuildEvent> 222 228 </PropertyGroup> -
branches/OaaS/HeuristicLab.Problems.QuadraticAssignment.Views/3.3/Plugin.cs.frame
r7558 r9363 23 23 24 24 namespace HeuristicLab.Problems.QuadraticAssignment.Views { 25 [Plugin("HeuristicLab.Problems.QuadraticAssignment.Views", "3.3. 6.$WCREV$")]25 [Plugin("HeuristicLab.Problems.QuadraticAssignment.Views", "3.3.7.$WCREV$")] 26 26 [PluginFile("HeuristicLab.Problems.QuadraticAssignment.Views-3.3.dll", PluginFileType.Assembly)] 27 27 [PluginDependency("HeuristicLab.Analysis", "3.3")] -
branches/OaaS/HeuristicLab.Problems.QuadraticAssignment.Views/3.3/Properties/AssemblyInfo.cs.frame
r7259 r9363 55 55 // [assembly: AssemblyVersion("1.0.*")] 56 56 [assembly: AssemblyVersion("3.3.0.0")] 57 [assembly: AssemblyFileVersion("3.3. 6.$WCREV$")]57 [assembly: AssemblyFileVersion("3.3.7.$WCREV$")] -
branches/OaaS/HeuristicLab.Problems.QuadraticAssignment.Views/3.3/QuadraticAssignmentProblemView.Designer.cs
r7967 r9363 120 120 this.qapView.Location = new System.Drawing.Point(3, 3); 121 121 this.qapView.Name = "qapView"; 122 this.qapView.Size = new System.Drawing.Size(497, 2 45);122 this.qapView.Size = new System.Drawing.Size(497, 274); 123 123 this.qapView.TabIndex = 0; 124 124 this.qapView.Weights = null; … … 126 126 // QuadraticAssignmentProblemView 127 127 // 128 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);129 128 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit; 130 129 this.Name = "QuadraticAssignmentProblemView"; -
branches/OaaS/HeuristicLab.Problems.QuadraticAssignment.Views/3.3/QuadraticAssignmentProblemView.cs
r7878 r9363 53 53 } 54 54 55 private void DistanceMatrixParameter_ValueChanged(object sender, System.EventArgs e) {55 private void DistanceMatrixParameter_ValueChanged(object sender, EventArgs e) { 56 56 qapView.Distances = Content.Distances; 57 57 } 58 58 59 private void WeightsParameter_ValueChanged(object sender, System.EventArgs e) {59 private void WeightsParameter_ValueChanged(object sender, EventArgs e) { 60 60 qapView.Weights = Content.Weights; 61 61 } 62 62 63 private void BestKnownSolutionParameter_ValueChanged(object sender, System.EventArgs e) {63 private void BestKnownSolutionParameter_ValueChanged(object sender, EventArgs e) { 64 64 qapView.Assignment = Content.BestKnownSolution; 65 65 } … … 77 77 } 78 78 } 79 80 protected override void SetEnabledStateOfControls() {81 base.SetEnabledStateOfControls();82 }83 79 } 84 80 }
Note: See TracChangeset
for help on using the changeset viewer.