You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by pu...@apache.org on 2012/05/17 09:29:24 UTC

wp7 commit: added command line tools to template

Updated Branches:
  refs/heads/master 74eeb59a2 -> a7ec452f6


added command line tools to template


Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-wp7/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-wp7/commit/a7ec452f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-wp7/tree/a7ec452f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-wp7/diff/a7ec452f

Branch: refs/heads/master
Commit: a7ec452f6bff28d7f43b014b2725c3e51a7b5b11
Parents: 74eeb59
Author: Jesse MacFadyen <pu...@gmail.com>
Authored: Thu May 17 00:28:43 2012 -0700
Committer: Jesse MacFadyen <pu...@gmail.com>
Committed: Thu May 17 00:28:43 2012 -0700

----------------------------------------------------------------------
 templates/full/GapAppProj.csproj   |    2 +
 templates/full/cordova/debug.bat   |   68 +++++++++++++++++++++++++++++++
 templates/full/cordova/emulate.bat |   24 +++++++++++
 3 files changed, 94 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-wp7/blob/a7ec452f/templates/full/GapAppProj.csproj
----------------------------------------------------------------------
diff --git a/templates/full/GapAppProj.csproj b/templates/full/GapAppProj.csproj
index 7eebb78..6e29e79 100644
--- a/templates/full/GapAppProj.csproj
+++ b/templates/full/GapAppProj.csproj
@@ -86,6 +86,8 @@
       <SubType>Designer</SubType>
     </Content>
     <Content Include="www\master.css" />
+    <None Include="cordova\debug.bat" />
+    <None Include="cordova\emulate.bat" />
     <None Include="Properties\AppManifest.xml">
       <SubType>Designer</SubType>
     </None>

http://git-wip-us.apache.org/repos/asf/incubator-cordova-wp7/blob/a7ec452f/templates/full/cordova/debug.bat
----------------------------------------------------------------------
diff --git a/templates/full/cordova/debug.bat b/templates/full/cordova/debug.bat
new file mode 100644
index 0000000..4efc80c
--- /dev/null
+++ b/templates/full/cordova/debug.bat
@@ -0,0 +1,68 @@
+
+@echo off
+goto start
+
+
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+
+:start
+
+
+if /i "%1"=="help" goto usage
+if /i "%1"=="-help" goto usage
+if /i "%1"=="--help" goto usage
+if /i "%1"=="/help" goto usage
+if /i "%1"=="/?" goto usage
+
+
+if defined VCINSTALLDIR goto start-msbuild
+if not defined VS100COMNTOOLS goto msbuild-missing
+if not exist "%VS100COMNTOOLS%\..\..\vc\vcvarsall.bat" goto msbuild-missing
+call "%VS100COMNTOOLS%\..\..\vc\vcvarsall.bat"
+if not defined VCINSTALLDIR goto msbuild-missing
+goto start-msbuild
+
+
+:builderror
+echo Error level 1
+goto exit
+
+:msbuild-missing
+echo Error! Cannot run msbuild from this command prompt.  Try running a VS Command prompt.
+goto exit
+
+
+:start-msbuild
+cd ..
+msbuild /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo /p:Configuration=Debug
+cd cordova
+if errorlevel 1 goto builderror
+goto deploy
+
+:usage
+echo "Usage: %0"
+echo "solution file is expected to be in the parent folder."
+goto exit
+
+:deploy
+CordovaDeploy ../Bin/Debug -d:1
+
+
+:exit
+
+

http://git-wip-us.apache.org/repos/asf/incubator-cordova-wp7/blob/a7ec452f/templates/full/cordova/emulate.bat
----------------------------------------------------------------------
diff --git a/templates/full/cordova/emulate.bat b/templates/full/cordova/emulate.bat
new file mode 100644
index 0000000..b3375fe
--- /dev/null
+++ b/templates/full/cordova/emulate.bat
@@ -0,0 +1,24 @@
+
+@echo off
+goto start
+
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+
+
+:start
+CordovaDeploy ../Bin/Debug -d:1
\ No newline at end of file