Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/17/12 02:33:05 (12 years ago)
Author:
abeham
Message:

#1897:

  • Removed protocol buffers 0.9.1
  • Added protocol buffers 2.4.1
  • Updated proto processing command
Location:
trunk/sources
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources

    • Property svn:ignore
      •  

        old new  
        2121protoc.exe
        2222_ReSharper.HeuristicLab 3.3 Tests
         23Google.ProtocolBuffers-2.4.1.473.dll
  • trunk/sources/HeuristicLab.Problems.ExternalEvaluation/3.3/HeuristicLab.Problems.ExternalEvaluation-3.3.csproj

    r7021 r8295  
    9595  </PropertyGroup>
    9696  <ItemGroup>
    97     <Reference Include="Google.ProtocolBuffers-0.9.1, Version=0.9.0.0, Culture=neutral, PublicKeyToken=17b3b1f090c3ea48, processorArchitecture=MSIL">
    98       <HintPath>..\..\bin\Google.ProtocolBuffers-0.9.1.dll</HintPath>
     97    <Reference Include="Google.ProtocolBuffers-2.4.1.473, Version=2.4.1.473, Culture=neutral, PublicKeyToken=17b3b1f090c3ea48, processorArchitecture=MSIL">
     98      <HintPath>..\..\bin\Google.ProtocolBuffers-2.4.1.473.dll</HintPath>
    9999      <Private>False</Private>
    100100    </Reference>
  • trunk/sources/HeuristicLab.Problems.ExternalEvaluation/3.3/Plugin.cs.frame

    r8246 r8295  
    3636  [PluginDependency("HeuristicLab.Parameters", "3.3")]
    3737  [PluginDependency("HeuristicLab.Persistence", "3.3")]
    38   [PluginDependency("HeuristicLab.ProtobufCS", "0.9.1")]
     38  [PluginDependency("HeuristicLab.ProtobufCS", "2.4.1.473")]
    3939  public class HeuristicLabProblemsExternalEvaluationPlugin : PluginBase {
    4040  }
  • trunk/sources/HeuristicLab.Problems.ExternalEvaluation/3.3/Protos/ProcessProtos.cmd

    r3859 r8295  
    1 cd "%ProjectDir%"Protos
    2 
    3 for %%i in (*.proto) do (
    4   "%SolutionDir%"protoc -otmp %%i
    5   "%SolutionDir%"ProtoGen tmp
    6   del tmp)
     1for %%i in ("%ProjectDir%Protos\*.proto") do (
     2  echo Processing %%i
     3  ProtoGen --proto_path="%ProjectDir%\Protos" %%i --include_imports -output_directory="%ProjectDir%Protos"
     4)
Note: See TracChangeset for help on using the changeset viewer.