mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-28 21:01:39 +03:00
00f97e41d6
http://windowsteamblog.com/windows_phone/b/wpdev/archive/2011/01/14/windows-push-notification-server-side-helper-library.aspx http://create.msdn.com/en-us/education/catalog/article/pnhelp-wp7
238 lines
11 KiB
XML
238 lines
11 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
|
<ProductVersion>8.0.30703</ProductVersion>
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
<ProjectGuid>{AC4A77E5-583A-4BB3-AB6B-8FE759906D5D}</ProjectGuid>
|
|
<OutputType>WinExe</OutputType>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RootNamespace>WindowsPhone.Recipes.Push.Server</RootNamespace>
|
|
<AssemblyName>PushServer</AssemblyName>
|
|
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
|
<TargetFrameworkProfile>
|
|
</TargetFrameworkProfile>
|
|
<FileAlignment>512</FileAlignment>
|
|
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
|
<WarningLevel>4</WarningLevel>
|
|
<SccProjectName>SAK</SccProjectName>
|
|
<SccLocalPath>SAK</SccLocalPath>
|
|
<SccAuxPath>SAK</SccAuxPath>
|
|
<SccProvider>SAK</SccProvider>
|
|
<Utf8Output>true</Utf8Output>
|
|
<ExpressionBlendVersion>4.0.20824.0</ExpressionBlendVersion>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
<DebugType>pdbonly</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<OutputPath>bin\Release\</OutputPath>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
</PropertyGroup>
|
|
<PropertyGroup />
|
|
<PropertyGroup>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="PresentationFramework.Aero" />
|
|
<Reference Include="System" />
|
|
<Reference Include="System.ComponentModel.Composition" />
|
|
<Reference Include="System.Data" />
|
|
<Reference Include="System.Net" />
|
|
<Reference Include="System.Runtime.Serialization" />
|
|
<Reference Include="System.ServiceModel" />
|
|
<Reference Include="System.ServiceModel.Web" />
|
|
<Reference Include="System.Web" />
|
|
<Reference Include="System.Windows.Interactivity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
|
<SpecificVersion>False</SpecificVersion>
|
|
<HintPath>..\Libraries\WPF_Interactivity\System.Windows.Interactivity.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="System.Windows.Presentation" />
|
|
<Reference Include="System.Xml" />
|
|
<Reference Include="Microsoft.CSharp" />
|
|
<Reference Include="System.Core" />
|
|
<Reference Include="System.Xml.Linq" />
|
|
<Reference Include="System.Data.DataSetExtensions" />
|
|
<Reference Include="System.Xaml">
|
|
<RequiredTargetFramework>4.0</RequiredTargetFramework>
|
|
</Reference>
|
|
<Reference Include="WindowsBase" />
|
|
<Reference Include="PresentationCore" />
|
|
<Reference Include="PresentationFramework" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ApplicationDefinition Include="App.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</ApplicationDefinition>
|
|
<Compile Include="Behaviors\VisualBinderBehavior.cs" />
|
|
<Compile Include="Behaviors\IVisualHost.cs" />
|
|
<Compile Include="Models\ServerInfo.cs" />
|
|
<Compile Include="Models\PushPatternType.cs" />
|
|
<Compile Include="Models\Subscription.cs" />
|
|
<Compile Include="Resources\Converters\NullTileImageConverter.cs" />
|
|
<Compile Include="Resources\Converters\UserFileImageConverter.cs" />
|
|
<Compile Include="Services\IImageService.cs" />
|
|
<Compile Include="Services\ImageRequestEventArgs.cs" />
|
|
<Compile Include="Services\ImageService.cs" />
|
|
<Compile Include="Services\ServerInfoEventArgs.cs" />
|
|
<Compile Include="Services\IPushService.cs" />
|
|
<Compile Include="Services\PushService.cs" />
|
|
<Compile Include="Services\SubscriptionEventArgs.cs" />
|
|
<Compile Include="Models\MessageStatus.cs" />
|
|
<Compile Include="Services\TileUpdateRequestEventArgs.cs" />
|
|
<Compile Include="ViewModels\Patterns\AskToPinPushPatternViewModel.cs" />
|
|
<Compile Include="ViewModels\Patterns\TileSchedulePushPatternViewModel.cs" />
|
|
<Compile Include="ViewModels\Patterns\CustomTileImagePushPatternViewModel.cs" />
|
|
<Compile Include="ViewModels\Patterns\CounterPushPatternViewModel.cs" />
|
|
<Compile Include="ViewModels\IMessageSendResultLogger.cs" />
|
|
<Compile Include="ViewModels\MainViewModel.cs" />
|
|
<Compile Include="ViewModels\MessageStatusViewModel.cs" />
|
|
<Compile Include="ViewModels\Patterns\OneTimePushPatternViewModel.cs" />
|
|
<Compile Include="ViewModels\Patterns\PushPatternViewModel.cs" />
|
|
<Compile Include="ViewModels\RelayCommand.cs" />
|
|
<Compile Include="ViewModels\ViewModelBase.cs" />
|
|
<Page Include="MainWindow.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Compile Include="App.xaml.cs">
|
|
<DependentUpon>App.xaml</DependentUpon>
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Include="MainWindow.xaml.cs">
|
|
<DependentUpon>MainWindow.xaml</DependentUpon>
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Page Include="Resources\DataTemplates\TileSchedulePushPatternViewModel.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="Resources\DefaultSkin.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="Resources\DataTemplates\AskToPinPushPatternViewModel.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="Resources\DataTemplates\CustomTileImagePushPatternViewModel.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="Resources\DataTemplates\CounterPushPatternViewModel.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="Resources\DataTemplates\OneTimePushPatternViewModel.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="Resources\DataTemplates\MessageStatusViewModel.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="Properties\AssemblyInfo.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Include="Properties\Resources.Designer.cs">
|
|
<AutoGen>True</AutoGen>
|
|
<DesignTime>True</DesignTime>
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Properties\Settings.Designer.cs">
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>Settings.settings</DependentUpon>
|
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
|
</Compile>
|
|
<EmbeddedResource Include="Properties\Resources.resx">
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
</EmbeddedResource>
|
|
<None Include="App.config" />
|
|
<None Include="app.manifest">
|
|
<SubType>Designer</SubType>
|
|
</None>
|
|
<None Include="Properties\Settings.settings">
|
|
<Generator>SettingsSingleFileGenerator</Generator>
|
|
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
|
</None>
|
|
<AppDesigner Include="Properties\" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\WindowsPhone.Recipes.Push.Messasges\WindowsPhone.Recipes.Push.Messasges.csproj">
|
|
<Project>{E4691236-9F54-4250-BDBE-916BBB07A378}</Project>
|
|
<Name>WindowsPhone.Recipes.Push.Messasges</Name>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Resource Include="..\WindowsPhone.Recipes.Push.Client\Resources\TileImages\TileBackground1.jpg">
|
|
<Link>Resources\TileImages\TileBackground1.jpg</Link>
|
|
</Resource>
|
|
<Resource Include="..\WindowsPhone.Recipes.Push.Client\Resources\TileImages\TileBackground2.jpg">
|
|
<Link>Resources\TileImages\TileBackground2.jpg</Link>
|
|
</Resource>
|
|
<Resource Include="..\WindowsPhone.Recipes.Push.Client\Resources\TileImages\TileBackground3.jpg">
|
|
<Link>Resources\TileImages\TileBackground3.jpg</Link>
|
|
</Resource>
|
|
<Resource Include="..\WindowsPhone.Recipes.Push.Client\Background.png">
|
|
<Link>Resources\TileImages\Background.png</Link>
|
|
</Resource>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Resource Include="Resources\TileImages\Null.jpg" />
|
|
<Content Include="Resources\TileImages\Numbers\number0.png">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="Resources\TileImages\Numbers\number1.png">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="Resources\TileImages\Numbers\number2.png">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="Resources\TileImages\Numbers\number3.png">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="Resources\TileImages\Numbers\number4.png">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="Resources\TileImages\Numbers\number5.png">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="Resources\TileImages\Numbers\number6.png">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="Resources\TileImages\Numbers\number7.png">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="Resources\TileImages\Numbers\number8.png">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="Resources\TileImages\Numbers\number9.png">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
|
Other similar extension points exist, see Microsoft.Common.targets.
|
|
<Target Name="BeforeBuild">
|
|
</Target>
|
|
<Target Name="AfterBuild">
|
|
</Target>
|
|
-->
|
|
</Project> |