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 2014/08/14 03:48:20 UTC

[7/9] git commit: Update instructions minus createTemplates stuff

Update instructions minus createTemplates stuff


Project: http://git-wip-us.apache.org/repos/asf/cordova-wp8/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-wp8/commit/7102858f
Tree: http://git-wip-us.apache.org/repos/asf/cordova-wp8/tree/7102858f
Diff: http://git-wip-us.apache.org/repos/asf/cordova-wp8/diff/7102858f

Branch: refs/heads/master
Commit: 7102858f1e5d5e61f1e7138c3eb3332da5a1dfe8
Parents: 3314cdb
Author: Jesse MacFadyen <pu...@gmail.com>
Authored: Wed Aug 13 18:36:28 2014 -0700
Committer: Jesse MacFadyen <pu...@gmail.com>
Committed: Wed Aug 13 18:36:28 2014 -0700

----------------------------------------------------------------------
 README.md | 33 +++++++++------------------------
 1 file changed, 9 insertions(+), 24 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/7102858f/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index c0b35be..9ad5960 100644
--- a/README.md
+++ b/README.md
@@ -40,43 +40,28 @@ Requires
 Getting Started 
 ---
 
-There are 2 ways to go about creating a new Apache Cordova WP8 application.
 
-### Run the batch file to create and install the templates.
+## Create a new project
 
-
-- The root of the repo contains a file createTemplates.bat.  Double clicking this file will generate a .zip template file. (CordovaWP8_x_x_x.zip where x.x.x is the current version number)  To easily use these files in Visual Studio, copy them to 
-"My Documents\Visual Studio 2012\Templates\ProjectTemplates\" You will then be able to create new Apache Cordova Windows Phone apps from the Visual Studio File->New Project menu.
-- If you run the batch file from the command line, you can also call with a parameter to install automatically
-
-Run the script :
-
-    >createTemplates.bat -install
-
-## Use the create scripts on the command line
-
-Gettings Started from command line
+Getting Started from the command line
 ---
 
     >.\wp8\bin\create PathToNewProject [ PackageName ] [ AppName ]
 
     >PathToNewProject : The path to where you wish to create the project
     >PackageName      : The namespace for the project (default is Cordova.Example)
-    >AppName          : The name of the application (default is CordovaWP8AppProj or CordovaWP7AppProj)
+    >AppName          : The name of the application (default is CordovaWP8AppProj)
 
     >example:
     >.\wp8\bin\create C:\Users\anonymous\Desktop\MyWP8Proj io.cordova.example CordovaWP8App
 
-    Launch Visual Studio and open Solution file (.sln) in (C:\Users\anonymous\Desktop\MyWP7Project)
-
-    Built and Run it
-
-Important!!!
----
-
-When you add or remove files/folders in the www folder you will need to do the following :
+    From here you can open it in Visual Studio:
+    - Launch Visual Studio and open Solution file (.sln) in (C:\Users\anonymous\Desktop\MyWP8Proj)
+    - Built and Run it
 
-- ensure the new item is included in the project ( Content ) This includes ALL images/css/html/js/* and anything that you want available at runtime.
+    Or, you can continue with the command line:
+    - >cd C:\Users\anonymous\Desktop\MyWP8Proj
+      >cordova\run
 
 
 BUGS?