Changeset 8295 for trunk/sources/HeuristicLab.Problems.ExternalEvaluation
- Timestamp:
- 07/17/12 02:33:05 (12 years ago)
- Location:
- trunk/sources
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources
- 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:ignore
-
trunk/sources/HeuristicLab.Problems.ExternalEvaluation/3.3/HeuristicLab.Problems.ExternalEvaluation-3.3.csproj
r7021 r8295 95 95 </PropertyGroup> 96 96 <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> 99 99 <Private>False</Private> 100 100 </Reference> -
trunk/sources/HeuristicLab.Problems.ExternalEvaluation/3.3/Plugin.cs.frame
r8246 r8295 36 36 [PluginDependency("HeuristicLab.Parameters", "3.3")] 37 37 [PluginDependency("HeuristicLab.Persistence", "3.3")] 38 [PluginDependency("HeuristicLab.ProtobufCS", " 0.9.1")]38 [PluginDependency("HeuristicLab.ProtobufCS", "2.4.1.473")] 39 39 public class HeuristicLabProblemsExternalEvaluationPlugin : PluginBase { 40 40 } -
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) 1 for %%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.