소스 검색

Fixed a output directory path bug that caused RunBenchmark to fail

ArnoldZokas 15 년 전
부모
커밋
8c5121bc62
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      build/Common.targets

+ 1 - 1
build/Common.targets

@@ -52,7 +52,7 @@
 	</Target>
 
 	<Target Name="_RunBenchmarks">
-		<Exec Command="&quot;$(ProtoBenchExePath)&quot; Google.ProtocolBuffers.ProtoBench.SizeMessage1,BenchmarkTypes $(ProjectDirectory)\benchmarks\google_message1.dat > &quot;$(BuildTempDirectory)\BenchmarkResults.txt&quot;" />
+		<Exec Command="&quot;$(ProtoBenchExePath)&quot; Google.ProtocolBuffers.ProtoBench.SizeMessage1,BenchmarkTypes $(ProjectDirectory)\benchmarks\google_message1.dat > &quot;$(BuildTempDirectory)\..\BenchmarkResults.txt&quot;" />
 	</Target>
 
 </Project>