Changeset 16138 for branches/2931_OR-Tools_LP_MIP/HeuristicLab.ExtLibs/HeuristicLab.OrTools/6.8.0-pre
- Timestamp:
- 09/13/18 13:04:36 (6 years ago)
- Location:
- branches/2931_OR-Tools_LP_MIP/HeuristicLab.ExtLibs/HeuristicLab.OrTools/6.8.0-pre/HeuristicLab.OrTools-6.8.0-pre
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2931_OR-Tools_LP_MIP/HeuristicLab.ExtLibs/HeuristicLab.OrTools/6.8.0-pre/HeuristicLab.OrTools-6.8.0-pre/HeuristicLab.OrTools-6.8.0-pre.csproj
r16070 r16138 1 1 <?xml version="1.0" encoding="utf-8"?> 2 <Project ToolsVersion="1 2.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">2 <Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 3 3 <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> 4 4 <PropertyGroup> … … 24 24 <WarningLevel>4</WarningLevel> 25 25 <AllowUnsafeBlocks>true</AllowUnsafeBlocks> 26 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 26 27 </PropertyGroup> 27 28 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> -
branches/2931_OR-Tools_LP_MIP/HeuristicLab.ExtLibs/HeuristicLab.OrTools/6.8.0-pre/HeuristicLab.OrTools-6.8.0-pre/Plugin.cs.frame
r16070 r16138 24 24 25 25 namespace HeuristicLab.OrTools { 26 [Plugin("HeuristicLab.OrTools", "Provides functionality of Google OR-Tools in HeuristicLab ", "6.8.0.$WCREV$")]26 [Plugin("HeuristicLab.OrTools", "Provides functionality of Google OR-Tools in HeuristicLab. Requires Windows 64-bit", "6.8.0.$WCREV$")] 27 27 [PluginFile("HeuristicLab.OrTools-6.8.0-pre.dll", PluginFileType.Assembly)] 28 28 [PluginFile("Google.OrTools.dll", PluginFileType.Assembly)] … … 33 33 [PluginFile("GLPK-4.65-license.txt", PluginFileType.License)] 34 34 public class HeuristicLabOrToolsPlugin : PluginBase { 35 public override void OnLoad() {36 if (!Environment.Is64BitProcess)37 throw new InvalidPluginException("Google OR-Tools integration is availabe only on 64-bit platforms.");38 if (Environment.OSVersion.Platform != PlatformID.Win32NT)39 throw new InvalidPluginException("Google OR-Tools integration is currently availabe only on Windows.");40 base.OnLoad();41 }42 35 } 43 36 } -
branches/2931_OR-Tools_LP_MIP/HeuristicLab.ExtLibs/HeuristicLab.OrTools/6.8.0-pre/HeuristicLab.OrTools-6.8.0-pre/Properties/AssemblyInfo.cs
r16070 r16138 54 54 // [assembly: AssemblyVersion("1.0.*")] 55 55 [assembly: AssemblyVersion("6.8.0.0")] 56 [assembly: AssemblyFileVersion("6.8.0. 0")]56 [assembly: AssemblyFileVersion("6.8.0.16070")]
Note: See TracChangeset
for help on using the changeset viewer.