aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/xps_to_png/compile_xps_to_png.bat
diff options
context:
space:
mode:
authorGravatar Hal Canary <halcanary@google.com>2016-10-17 11:52:40 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2016-10-17 15:58:05 +0000
commitc7a46650bc746311cbb10bd3f5426f5d0cb6c801 (patch)
tree897c08eba2ff1d9cc1996136313b5a9814fccd33 /experimental/xps_to_png/compile_xps_to_png.bat
parent24267ffeab7df9244802c9310309a8abc060e7fe (diff)
experimental/xps_to_png: fix DPI, usage message
NOTRY=true Change-Id: I4d4c46b5889ab8e8b8f54e8c631b3932912051dd Reviewed-on: https://skia-review.googlesource.com/3534 Reviewed-by: Hal Canary <halcanary@google.com> Commit-Queue: Hal Canary <halcanary@google.com>
Diffstat (limited to 'experimental/xps_to_png/compile_xps_to_png.bat')
-rw-r--r--experimental/xps_to_png/compile_xps_to_png.bat28
1 files changed, 14 insertions, 14 deletions
diff --git a/experimental/xps_to_png/compile_xps_to_png.bat b/experimental/xps_to_png/compile_xps_to_png.bat
index 4c34293f35..b4140d4246 100644
--- a/experimental/xps_to_png/compile_xps_to_png.bat
+++ b/experimental/xps_to_png/compile_xps_to_png.bat
@@ -1,14 +1,14 @@
-@rem Copyright 2016 Google Inc.
-@rem
-@rem Use of this source code is governed by a BSD-style license that can be
-@rem found in the LICENSE file.
-
-"C:\PROGRA~2\MSBUILD\14.0\BIN\AMD64\CSC.EXE" ^
-/lib:"\PROGRA~2\REFERE~1\MICROS~1\FRAMEW~1\NETFRA~1\V4.5.2" ^
-/reference:"ReachFramework.dll" ^
-/reference:"WindowsBase.dll" ^
-/reference:"PresentationCore.dll" ^
-/reference:"PresentationFramework.dll" ^
-"%~dp0%xps_to_png.cs"
-
-
+@rem Copyright 2016 Google Inc.
+@rem
+@rem Use of this source code is governed by a BSD-style license that can be
+@rem found in the LICENSE file.
+
+@set CSC="C:\Program Files (x86)\MSBuild\14.0\Bin\amd64\csc.exe"
+@set LIB="C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5.2"
+
+%CSC% /lib:%LIB% ^
+/reference:"PresentationCore.dll" ^
+/reference:"PresentationFramework.dll" ^
+/reference:"ReachFramework.dll" ^
+/reference:"WindowsBase.dll" ^
+"%~dp0%xps_to_png.cs"