You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by be...@apache.org on 2013/06/25 21:28:31 UTC

git commit: added XHRProxy to .csproj file and template file

Updated Branches:
  refs/heads/master 4b2329b5d -> f4fdc1e14


added XHRProxy to .csproj file and template file


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

Branch: refs/heads/master
Commit: f4fdc1e143bd2080a0f8fdc00e5734751180f700
Parents: 4b2329b
Author: Benn Mapes <be...@gmail.com>
Authored: Tue Jun 25 12:27:21 2013 -0700
Committer: Benn Mapes <be...@gmail.com>
Committed: Tue Jun 25 12:27:57 2013 -0700

----------------------------------------------------------------------
 wp7/template/CordovaWP7AppProj.csproj | 3 +++
 wp7/template/MyTemplate.vstemplate    | 1 +
 wp7/template/cordovalib/XHRProxy.cs   | 1 -
 wp8/template/CordovaWP8AppProj.csproj | 4 ++++
 wp8/template/MyTemplate.vstemplate    | 1 +
 5 files changed, 9 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/f4fdc1e1/wp7/template/CordovaWP7AppProj.csproj
----------------------------------------------------------------------
diff --git a/wp7/template/CordovaWP7AppProj.csproj b/wp7/template/CordovaWP7AppProj.csproj
index f7a6b48..2307284 100644
--- a/wp7/template/CordovaWP7AppProj.csproj
+++ b/wp7/template/CordovaWP7AppProj.csproj
@@ -99,6 +99,9 @@
     <Compile Include="cordovalib\OrientationHelper.cs" />
     <Compile Include="cordovalib\PluginResult.cs" />
     <Compile Include="cordovalib\ScriptCallback.cs" />
+    <Compile Include="cordovalib\MimeTypeMapper.cs" />
+    <Compile Include="cordovalib\DebugConsole.cs" />
+    <Compile Include="cordovalib\XHRProxy.cs" />
     <Compile Include="MainPage.xaml.cs">
       <DependentUpon>MainPage.xaml</DependentUpon>
     </Compile>

http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/f4fdc1e1/wp7/template/MyTemplate.vstemplate
----------------------------------------------------------------------
diff --git a/wp7/template/MyTemplate.vstemplate b/wp7/template/MyTemplate.vstemplate
index 2598b19..8494316 100644
--- a/wp7/template/MyTemplate.vstemplate
+++ b/wp7/template/MyTemplate.vstemplate
@@ -65,6 +65,7 @@
         <ProjectItem ReplaceParameters="true" TargetFileName="OrientationHelper.cs">OrientationHelper.cs</ProjectItem>
         <ProjectItem ReplaceParameters="true" TargetFileName="PluginResult.cs">PluginResult.cs</ProjectItem>
         <ProjectItem ReplaceParameters="true" TargetFileName="ScriptCallback.cs">ScriptCallback.cs</ProjectItem>
+        <ProjectItem ReplaceParameters="true" TargetFileName="XHRProxy.cs">XHRProxy.cs</ProjectItem>
       </Folder>
       <ProjectItem ReplaceParameters="true" TargetFileName="CordovaSourceDictionary.xml">CordovaSourceDictionary.xml</ProjectItem>
       <Folder Name="Images" TargetFolderName="Images">

http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/f4fdc1e1/wp7/template/cordovalib/XHRProxy.cs
----------------------------------------------------------------------
diff --git a/wp7/template/cordovalib/XHRProxy.cs b/wp7/template/cordovalib/XHRProxy.cs
index 8a53f0b..c5dfe0a 100644
--- a/wp7/template/cordovalib/XHRProxy.cs
+++ b/wp7/template/cordovalib/XHRProxy.cs
@@ -6,7 +6,6 @@ using System.IO;
 using System.IO.IsolatedStorage;
 using System.Linq;
 using System.Text;
-using System.Threading.Tasks;
 using System.Windows;
 
 namespace WPCordovaClassLib.CordovaLib

http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/f4fdc1e1/wp8/template/CordovaWP8AppProj.csproj
----------------------------------------------------------------------
diff --git a/wp8/template/CordovaWP8AppProj.csproj b/wp8/template/CordovaWP8AppProj.csproj
index 8039209..42d81f6 100644
--- a/wp8/template/CordovaWP8AppProj.csproj
+++ b/wp8/template/CordovaWP8AppProj.csproj
@@ -136,6 +136,10 @@
     <Compile Include="cordovalib\OrientationHelper.cs" />
     <Compile Include="cordovalib\PluginResult.cs" />
     <Compile Include="cordovalib\ScriptCallback.cs" />
+    <Compile Include="cordovalib\MimeTypeMapper.cs" />
+    <Compile Include="cordovalib\DebugConsole.cs" />
+    <Compile Include="cordovalib\ImageExifHelper.cs" />
+    <Compile Include="cordovalib\XHRProxy.cs" />
     <Compile Include="MainPage.xaml.cs">
       <DependentUpon>MainPage.xaml</DependentUpon>
     </Compile>

http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/f4fdc1e1/wp8/template/MyTemplate.vstemplate
----------------------------------------------------------------------
diff --git a/wp8/template/MyTemplate.vstemplate b/wp8/template/MyTemplate.vstemplate
index 11d7835..2ba0fc6 100644
--- a/wp8/template/MyTemplate.vstemplate
+++ b/wp8/template/MyTemplate.vstemplate
@@ -59,6 +59,7 @@
         <ProjectItem ReplaceParameters="true" TargetFileName="OrientationHelper.cs">OrientationHelper.cs</ProjectItem>
         <ProjectItem ReplaceParameters="true" TargetFileName="PluginResult.cs">PluginResult.cs</ProjectItem>
         <ProjectItem ReplaceParameters="true" TargetFileName="ScriptCallback.cs">ScriptCallback.cs</ProjectItem>
+        <ProjectItem ReplaceParameters="true" TargetFileName="XHRProxy.cs">XHRProxy.cs</ProjectItem>
       </Folder>
       <Folder Name="Images" TargetFolderName="Images">
         <ProjectItem ReplaceParameters="false" TargetFileName="appbar.back.rest.png">appbar.back.rest.png</ProjectItem>