Skip to content
This repository has been archived by the owner on Apr 18, 2019. It is now read-only.

Commit

Permalink
Startup Object not set when changes to namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
purplecabbage committed Sep 1, 2012
1 parent e4126b2 commit e35f30b
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 32 deletions.
6 changes: 3 additions & 3 deletions framework/Properties/AssemblyInfo.cs
Expand Up @@ -6,7 +6,7 @@
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("WP7CordovaClassLib")]
[assembly: AssemblyDescription("2.0")]
[assembly: AssemblyDescription("2.1.0rc2")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Apache Cordova")]
[assembly: AssemblyProduct("WP7CordovaClassLib")]
Expand All @@ -31,5 +31,5 @@
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("2.0.0")]
[assembly: AssemblyFileVersion("2.0.0")]
[assembly: AssemblyVersion("2.1.0")]
[assembly: AssemblyFileVersion("2.1.0")]
4 changes: 2 additions & 2 deletions templates/full/CordovaAppProj.csproj
Expand Up @@ -74,7 +74,7 @@
<Reference Include="System.Core" />
<Reference Include="System.Net" />
<Reference Include="System.Xml" />
<Reference Include="WP7CordovaClassLib, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL" />
<Reference Include="WP7CordovaClassLib, Version=2.1.0.0, Culture=neutral, processorArchitecture=MSIL" />
</ItemGroup>
<ItemGroup>
<Compile Include="App.xaml.cs">
Expand All @@ -97,12 +97,12 @@
</ItemGroup>
<ItemGroup>
<Content Include="CordovaSourceDictionary.xml" />
<Content Include="www\img\logo.png" />
<Content Include="www\js\index.js" />
<None Include="BuildManifestProcessor.js" />
<Content Include="CordovaLib\WP7CordovaClassLib.dll" />
<Content Include="www\cordova-2.1.0.js" />
<Content Include="www\css\index.css" />
<Content Include="www\img\cordova.png" />
<Content Include="www\index.html">
<SubType>Designer</SubType>
</Content>
Expand Down
Binary file modified templates/full/CordovaLib/WP7CordovaClassLib.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion templates/standalone/App.xaml
Expand Up @@ -17,7 +17,7 @@
under the License.
-->
<Application
x:Class="GapExample.App"
x:Class="CordovaApp.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
Expand Down
2 changes: 1 addition & 1 deletion templates/standalone/App.xaml.cs
Expand Up @@ -32,7 +32,7 @@
using Microsoft.Phone.Controls;
using Microsoft.Phone.Shell;

namespace GapExample
namespace CordovaApp
{
public partial class App : Application
{
Expand Down
5 changes: 2 additions & 3 deletions templates/standalone/CordovaAppProj.csproj
Expand Up @@ -40,8 +40,7 @@
<GenerateSilverlightManifest>true</GenerateSilverlightManifest>
<XapFilename>CordovaApp.xap</XapFilename>
<SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate>
<SilverlightAppEntry>
</SilverlightAppEntry>
<SilverlightAppEntry>CordovaApp.App</SilverlightAppEntry>
<ValidateXaml>true</ValidateXaml>
<ThrowErrorsInValidation>true</ThrowErrorsInValidation>
</PropertyGroup>
Expand Down Expand Up @@ -165,6 +164,7 @@
</Page>
</ItemGroup>
<ItemGroup>
<Content Include="www\img\logo.png" />
<Content Include="www\js\index.js" />
<None Include="VERSION" />
<Resource Include="cordovalib\Images\appbar.back.rest.png" />
Expand All @@ -180,7 +180,6 @@
<None Include="BuildManifestProcessor.js" />
<Content Include="www\cordova-2.1.0.js" />
<Content Include="www\css\index.css" />
<Content Include="www\img\cordova.png" />
<Content Include="www\index.html">
<SubType>Designer</SubType>
</Content>
Expand Down
2 changes: 1 addition & 1 deletion templates/standalone/CordovaSourceDictionary.xml
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- This file is auto-generated, do not edit! -jm -->
<CordovaSourceDictionary>
<FilePath Value="www\img\logo.png"/>
<FilePath Value="www\js\index.js"/>
<FilePath Value="www\cordova-2.1.0.js"/>
<FilePath Value="www\css\index.css"/>
<FilePath Value="www\img\cordova.png"/>
<FilePath Value="www\index.html"/>
</CordovaSourceDictionary>
23 changes: 3 additions & 20 deletions templates/standalone/MainPage.xaml
@@ -1,23 +1,6 @@
<!--
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.
-->

<phone:PhoneApplicationPage
x:Class="GapExample.MainPage"
x:Class="CordovaApp.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
Expand All @@ -37,7 +20,7 @@
</Grid.RowDefinitions>
<my:CordovaView HorizontalAlignment="Stretch"
Margin="0,0,0,0"
Name="PGView"
x:Name="PGView"
VerticalAlignment="Stretch" />
<Image Source="SplashScreenImage.jpg"
x:Name="SplashImage"
Expand Down
2 changes: 1 addition & 1 deletion templates/standalone/MainPage.xaml.cs
Expand Up @@ -35,7 +35,7 @@
using WP7CordovaClassLib;


namespace GapExample
namespace CordovaApp
{
public partial class MainPage : PhoneApplicationPage
{
Expand Down

0 comments on commit e35f30b

Please sign in to comment.