Skip to content

Commit f9af750

Browse files
committed
Built with visual studio 2013
1 parent 9392e42 commit f9af750

5 files changed

Lines changed: 147 additions & 99 deletions

File tree

AustinHarris.JsonRpc.Client.WP7/AustinHarris.JsonRpc.Client.WP7.csproj

Lines changed: 40 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,25 @@
1111
<AppDesignerFolder>Properties</AppDesignerFolder>
1212
<RootNamespace>AustinHarris.JsonRpc.Client.WP7</RootNamespace>
1313
<AssemblyName>AustinHarris.JsonRpc.Client.WP7</AssemblyName>
14-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
15-
<SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion>
16-
<TargetFrameworkProfile>WindowsPhone71</TargetFrameworkProfile>
17-
<TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier>
14+
<TargetFrameworkVersion>v8.0</TargetFrameworkVersion>
15+
<SilverlightVersion>
16+
</SilverlightVersion>
17+
<TargetFrameworkProfile>
18+
</TargetFrameworkProfile>
19+
<TargetFrameworkIdentifier>WindowsPhone</TargetFrameworkIdentifier>
1820
<SilverlightApplication>false</SilverlightApplication>
1921
<ValidateXaml>true</ValidateXaml>
2022
<ThrowErrorsInValidation>true</ThrowErrorsInValidation>
2123
<SccProjectName>SAK</SccProjectName>
2224
<SccLocalPath>SAK</SccLocalPath>
2325
<SccAuxPath>SAK</SccAuxPath>
2426
<SccProvider>SAK</SccProvider>
27+
<FileUpgradeFlags>
28+
</FileUpgradeFlags>
29+
<UpgradeBackupLocation>
30+
</UpgradeBackupLocation>
31+
<OldToolsVersion>4.0</OldToolsVersion>
32+
<MinimumVisualStudioVersion>11.0</MinimumVisualStudioVersion>
2533
</PropertyGroup>
2634
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2735
<DebugSymbols>true</DebugSymbols>
@@ -44,21 +52,39 @@
4452
<ErrorReport>prompt</ErrorReport>
4553
<WarningLevel>4</WarningLevel>
4654
</PropertyGroup>
55+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
56+
<PlatformTarget />
57+
<OutputPath>Bin\x86\Debug</OutputPath>
58+
<DebugSymbols>true</DebugSymbols>
59+
<DebugType>full</DebugType>
60+
<Optimize>false</Optimize>
61+
</PropertyGroup>
62+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
63+
<PlatformTarget />
64+
<OutputPath>Bin\x86\Release</OutputPath>
65+
<DebugType>pdbonly</DebugType>
66+
<Optimize>true</Optimize>
67+
</PropertyGroup>
68+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM'">
69+
<PlatformTarget />
70+
<OutputPath>Bin\ARM\Debug</OutputPath>
71+
<DebugSymbols>true</DebugSymbols>
72+
<DebugType>full</DebugType>
73+
<Optimize>false</Optimize>
74+
</PropertyGroup>
75+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM'">
76+
<PlatformTarget />
77+
<OutputPath>Bin\ARM\Release</OutputPath>
78+
<DebugType>pdbonly</DebugType>
79+
<Optimize>true</Optimize>
80+
</PropertyGroup>
4781
<ItemGroup>
48-
<Reference Include="Microsoft.Phone.Reactive" />
4982
<Reference Include="Newtonsoft.Json">
5083
<HintPath>..\packages\Newtonsoft.Json.4.5.1\lib\sl4-windowsphone71\Newtonsoft.Json.dll</HintPath>
5184
</Reference>
52-
<Reference Include="System.Observable" />
5385
<Reference Include="System.Reactive">
5486
<HintPath>..\packages\Rx-Main.1.0.11226\lib\SL3-WP\System.Reactive.dll</HintPath>
5587
</Reference>
56-
<Reference Include="System.Windows" />
57-
<Reference Include="system" />
58-
<Reference Include="System.Core" />
59-
<Reference Include="System.Xml" />
60-
<Reference Include="System.Net" />
61-
<Reference Include="mscorlib.extensions" />
6288
</ItemGroup>
6389
<ItemGroup>
6490
<Compile Include="..\Json-Rpc\JsonRequest.cs">
@@ -70,8 +96,8 @@
7096
<Compile Include="client.cs" />
7197
<Compile Include="Properties\AssemblyInfo.cs" />
7298
</ItemGroup>
73-
<Import Project="$(MSBuildExtensionsPath)\Microsoft\Silverlight for Phone\$(TargetFrameworkVersion)\Microsoft.Silverlight.$(TargetFrameworkProfile).Overrides.targets" />
74-
<Import Project="$(MSBuildExtensionsPath)\Microsoft\Silverlight for Phone\$(TargetFrameworkVersion)\Microsoft.Silverlight.CSharp.targets" />
99+
<Import Project="$(MSBuildExtensionsPath)\Microsoft\$(TargetFrameworkIdentifier)\$(TargetFrameworkVersion)\Microsoft.$(TargetFrameworkIdentifier).$(TargetFrameworkVersion).Overrides.targets" />
100+
<Import Project="$(MSBuildExtensionsPath)\Microsoft\$(TargetFrameworkIdentifier)\$(TargetFrameworkVersion)\Microsoft.$(TargetFrameworkIdentifier).CSharp.targets" />
75101
<ProjectExtensions />
76102
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
77103
Other similar extension points exist, see Microsoft.Common.targets.

AustinHarris.JsonRpc.Client.WP7Test/AustinHarris.JsonRpc.Client.WP7Test.csproj

Lines changed: 49 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
55
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -11,16 +11,18 @@
1111
<AppDesignerFolder>Properties</AppDesignerFolder>
1212
<RootNamespace>AustinHarris.JsonRpc.Client.WP7Test</RootNamespace>
1313
<AssemblyName>AustinHarris.JsonRpc.Client.WP7Test</AssemblyName>
14-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
15-
<SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion>
16-
<TargetFrameworkProfile>WindowsPhone71</TargetFrameworkProfile>
17-
<TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier>
14+
<TargetFrameworkVersion>v8.0</TargetFrameworkVersion>
15+
<SilverlightVersion>
16+
</SilverlightVersion>
17+
<TargetFrameworkProfile>
18+
</TargetFrameworkProfile>
19+
<TargetFrameworkIdentifier>WindowsPhone</TargetFrameworkIdentifier>
1820
<SilverlightApplication>true</SilverlightApplication>
1921
<SupportedCultures>
2022
</SupportedCultures>
2123
<XapOutputs>true</XapOutputs>
2224
<GenerateSilverlightManifest>true</GenerateSilverlightManifest>
23-
<XapFilename>AustinHarris.JsonRpc.Client.WP7Test.xap</XapFilename>
25+
<XapFilename>AustinHarris.JsonRpc.Client.WP7Test_$(Configuration)_$(Platform).xap</XapFilename>
2426
<SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate>
2527
<SilverlightAppEntry>AustinHarris.JsonRpc.Client.WP7Test.App</SilverlightAppEntry>
2628
<ValidateXaml>true</ValidateXaml>
@@ -29,6 +31,12 @@
2931
<SccLocalPath>SAK</SccLocalPath>
3032
<SccAuxPath>SAK</SccAuxPath>
3133
<SccProvider>SAK</SccProvider>
34+
<FileUpgradeFlags>
35+
</FileUpgradeFlags>
36+
<UpgradeBackupLocation>
37+
</UpgradeBackupLocation>
38+
<OldToolsVersion>4.0</OldToolsVersion>
39+
<MinimumVisualStudioVersion>11.0</MinimumVisualStudioVersion>
3240
</PropertyGroup>
3341
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
3442
<DebugSymbols>true</DebugSymbols>
@@ -51,19 +59,36 @@
5159
<ErrorReport>prompt</ErrorReport>
5260
<WarningLevel>4</WarningLevel>
5361
</PropertyGroup>
62+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
63+
<PlatformTarget />
64+
<OutputPath>Bin\x86\Debug</OutputPath>
65+
<DebugSymbols>true</DebugSymbols>
66+
<DebugType>full</DebugType>
67+
<Optimize>false</Optimize>
68+
</PropertyGroup>
69+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
70+
<PlatformTarget />
71+
<OutputPath>Bin\x86\Release</OutputPath>
72+
<DebugType>pdbonly</DebugType>
73+
<Optimize>true</Optimize>
74+
</PropertyGroup>
75+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM'">
76+
<PlatformTarget />
77+
<OutputPath>Bin\ARM\Debug</OutputPath>
78+
<DebugSymbols>true</DebugSymbols>
79+
<DebugType>full</DebugType>
80+
<Optimize>false</Optimize>
81+
</PropertyGroup>
82+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM'">
83+
<PlatformTarget />
84+
<OutputPath>Bin\ARM\Release</OutputPath>
85+
<DebugType>pdbonly</DebugType>
86+
<Optimize>true</Optimize>
87+
</PropertyGroup>
5488
<ItemGroup>
55-
<Reference Include="Microsoft.Phone" />
56-
<Reference Include="Microsoft.Phone.Interop" />
57-
<Reference Include="System.Observable" />
5889
<Reference Include="System.Reactive, Version=1.0.10621.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
5990
<HintPath>..\packages\Rx-Main.1.0.11226\lib\SL3-WP\System.Reactive.dll</HintPath>
6091
</Reference>
61-
<Reference Include="System.Windows" />
62-
<Reference Include="system" />
63-
<Reference Include="System.Core" />
64-
<Reference Include="System.Net" />
65-
<Reference Include="System.Xml" />
66-
<Reference Include="mscorlib.extensions" />
6792
</ItemGroup>
6893
<ItemGroup>
6994
<Compile Include="App.xaml.cs">
@@ -78,15 +103,21 @@
78103
<ApplicationDefinition Include="App.xaml">
79104
<SubType>Designer</SubType>
80105
<Generator>MSBuild:Compile</Generator>
106+
<Generator>MSBuild:Compile</Generator>
107+
<SubType>Designer</SubType>
81108
</ApplicationDefinition>
82109
<Page Include="MainPage.xaml">
83110
<SubType>Designer</SubType>
84111
<Generator>MSBuild:Compile</Generator>
112+
<Generator>MSBuild:Compile</Generator>
113+
<SubType>Designer</SubType>
85114
</Page>
86115
</ItemGroup>
87116
<ItemGroup>
88117
<None Include="Properties\AppManifest.xml" />
89-
<None Include="Properties\WMAppManifest.xml" />
118+
<None Include="Properties\WMAppManifest.xml">
119+
<SubType>Designer</SubType>
120+
</None>
90121
</ItemGroup>
91122
<ItemGroup>
92123
<Content Include="ApplicationIcon.png">
@@ -103,8 +134,8 @@
103134
<Name>AustinHarris.JsonRpc.Client.WP7</Name>
104135
</ProjectReference>
105136
</ItemGroup>
106-
<Import Project="$(MSBuildExtensionsPath)\Microsoft\Silverlight for Phone\$(TargetFrameworkVersion)\Microsoft.Silverlight.$(TargetFrameworkProfile).Overrides.targets" />
107-
<Import Project="$(MSBuildExtensionsPath)\Microsoft\Silverlight for Phone\$(TargetFrameworkVersion)\Microsoft.Silverlight.CSharp.targets" />
137+
<Import Project="$(MSBuildExtensionsPath)\Microsoft\$(TargetFrameworkIdentifier)\$(TargetFrameworkVersion)\Microsoft.$(TargetFrameworkIdentifier).$(TargetFrameworkVersion).Overrides.targets" />
138+
<Import Project="$(MSBuildExtensionsPath)\Microsoft\$(TargetFrameworkIdentifier)\$(TargetFrameworkVersion)\Microsoft.$(TargetFrameworkIdentifier).CSharp.targets" />
108139
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
109140
Other similar extension points exist, see Microsoft.Common.targets.
110141
<Target Name="BeforeBuild">
Lines changed: 35 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,48 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
3-
<Deployment xmlns="http://schemas.microsoft.com/windowsphone/2009/deployment" AppPlatformVersion="7.1">
4-
<App xmlns="" ProductID="{5cceac20-faf6-4bee-bf50-b62554fad0b3}" Title="AustinHarris.JsonRpc.Client.WP7Test" RuntimeType="Silverlight" Version="1.0.0.0" Genre="apps.normal" Author="AustinHarris.JsonRpc.Client.WP7Test author" Description="Sample description" Publisher="AustinHarris.JsonRpc.Client.WP7Test">
2+
<Deployment xmlns="http://schemas.microsoft.com/windowsphone/2012/deployment" AppPlatformVersion="8.0">
3+
<DefaultLanguage xmlns="" code="" />
4+
<App xmlns="" ProductID="{c0b362b3-fdc0-4c06-8e71-3a62045af68b}" Title="AustinHarris.JsonRpc.Client.WP7Test" RuntimeType="Silverlight" Version="1.0.0.0" Genre="apps.normal" Author="AustinHarris.JsonRpc.Client.WP7Test author" Description="Sample description" Publisher="AustinHarris.JsonRpc.Client.WP7Test" PublisherID="{7d665c34-6cbe-473a-8fc0-4927e63ac9cc}">
55
<IconPath IsRelative="true" IsResource="false">ApplicationIcon.png</IconPath>
66
<Capabilities>
7-
<Capability Name="ID_CAP_GAMERSERVICES"/>
8-
<Capability Name="ID_CAP_IDENTITY_DEVICE"/>
9-
<Capability Name="ID_CAP_IDENTITY_USER"/>
10-
<Capability Name="ID_CAP_LOCATION"/>
11-
<Capability Name="ID_CAP_MEDIALIB"/>
12-
<Capability Name="ID_CAP_MICROPHONE"/>
13-
<Capability Name="ID_CAP_NETWORKING"/>
14-
<Capability Name="ID_CAP_PHONEDIALER"/>
15-
<Capability Name="ID_CAP_PUSH_NOTIFICATION"/>
16-
<Capability Name="ID_CAP_SENSORS"/>
17-
<Capability Name="ID_CAP_WEBBROWSERCOMPONENT"/>
18-
<Capability Name="ID_CAP_ISV_CAMERA"/>
19-
<Capability Name="ID_CAP_CONTACTS"/>
20-
<Capability Name="ID_CAP_APPOINTMENTS"/>
7+
<Capability Name="ID_CAP_GAMERSERVICES" />
8+
<Capability Name="ID_CAP_IDENTITY_DEVICE" />
9+
<Capability Name="ID_CAP_IDENTITY_USER" />
10+
<Capability Name="ID_CAP_LOCATION" />
11+
<Capability Name="ID_CAP_MICROPHONE" />
12+
<Capability Name="ID_CAP_NETWORKING" />
13+
<Capability Name="ID_CAP_PHONEDIALER" />
14+
<Capability Name="ID_CAP_PUSH_NOTIFICATION" />
15+
<Capability Name="ID_CAP_SENSORS" />
16+
<Capability Name="ID_CAP_WEBBROWSERCOMPONENT" />
17+
<Capability Name="ID_CAP_ISV_CAMERA" />
18+
<Capability Name="ID_CAP_CONTACTS" />
19+
<Capability Name="ID_CAP_APPOINTMENTS" />
20+
<Capability Name="ID_CAP_MEDIALIB_AUDIO" />
21+
<Capability Name="ID_CAP_MEDIALIB_PHOTO" />
22+
<Capability Name="ID_CAP_MEDIALIB_PLAYBACK" />
2123
</Capabilities>
2224
<Tasks>
23-
<DefaultTask Name ="_default" NavigationPage="MainPage.xaml"/>
25+
<DefaultTask Name="_default" NavigationPage="MainPage.xaml" />
2426
</Tasks>
2527
<Tokens>
2628
<PrimaryToken TokenID="AustinHarris.JsonRpc.Client.WP7TestToken" TaskName="_default">
27-
<TemplateType5>
28-
<BackgroundImageURI IsRelative="true" IsResource="false">Background.png</BackgroundImageURI>
29+
<TemplateFlip>
30+
<SmallImageURI IsResource="false" IsRelative="true">Background.png</SmallImageURI>
2931
<Count>0</Count>
32+
<BackgroundImageURI IsResource="false" IsRelative="true">Background.png</BackgroundImageURI>
3033
<Title>AustinHarris.JsonRpc.Client.WP7Test</Title>
31-
</TemplateType5>
34+
<BackContent></BackContent>
35+
<BackBackgroundImageURI></BackBackgroundImageURI>
36+
<BackTitle></BackTitle>
37+
<DeviceLockImageURI></DeviceLockImageURI>
38+
<HasLarge>false</HasLarge>
39+
</TemplateFlip>
3240
</PrimaryToken>
3341
</Tokens>
42+
<ScreenResolutions>
43+
<ScreenResolution Name="ID_RESOLUTION_WVGA" />
44+
<ScreenResolution Name="ID_RESOLUTION_WXGA" />
45+
<ScreenResolution Name="ID_RESOLUTION_HD720P" />
46+
</ScreenResolutions>
3447
</App>
35-
</Deployment>
48+
</Deployment>

0 commit comments

Comments
 (0)