RSSReader.csproj 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>10.0.20506</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{175DD8B1-CD12-4F0C-8FFD-6AFC73CA6B66}</ProjectGuid>
  9. <ProjectTypeGuids>{C089C8C0-30E0-4E22-80C0-CE093F111A43};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
  10. <OutputType>Library</OutputType>
  11. <AppDesignerFolder>Properties</AppDesignerFolder>
  12. <RootNamespace>RSSReader</RootNamespace>
  13. <AssemblyName>RSSReader</AssemblyName>
  14. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  15. <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion>
  16. <TargetFrameworkProfile>WindowsPhone71</TargetFrameworkProfile>
  17. <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier>
  18. <SilverlightApplication>true</SilverlightApplication>
  19. <SupportedCultures>
  20. </SupportedCultures>
  21. <XapOutputs>true</XapOutputs>
  22. <GenerateSilverlightManifest>true</GenerateSilverlightManifest>
  23. <XapFilename>RSSReader.xap</XapFilename>
  24. <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate>
  25. <SilverlightAppEntry>RSSReader.App</SilverlightAppEntry>
  26. <ValidateXaml>true</ValidateXaml>
  27. <ThrowErrorsInValidation>true</ThrowErrorsInValidation>
  28. </PropertyGroup>
  29. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  30. <DebugSymbols>true</DebugSymbols>
  31. <DebugType>full</DebugType>
  32. <Optimize>false</Optimize>
  33. <OutputPath>Bin\Debug</OutputPath>
  34. <DefineConstants>DEBUG;TRACE;SILVERLIGHT;WINDOWS_PHONE</DefineConstants>
  35. <NoStdLib>true</NoStdLib>
  36. <NoConfig>true</NoConfig>
  37. <ErrorReport>prompt</ErrorReport>
  38. <WarningLevel>4</WarningLevel>
  39. </PropertyGroup>
  40. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  41. <DebugType>pdbonly</DebugType>
  42. <Optimize>true</Optimize>
  43. <OutputPath>Bin\Release</OutputPath>
  44. <DefineConstants>TRACE;SILVERLIGHT;WINDOWS_PHONE</DefineConstants>
  45. <NoStdLib>true</NoStdLib>
  46. <NoConfig>true</NoConfig>
  47. <ErrorReport>prompt</ErrorReport>
  48. <WarningLevel>4</WarningLevel>
  49. </PropertyGroup>
  50. <ItemGroup>
  51. <Reference Include="Microsoft.Phone" />
  52. <Reference Include="Microsoft.Phone.Controls, Version=7.0.0.0, Culture=neutral, PublicKeyToken=24eec0d8c86cda1e, processorArchitecture=MSIL" />
  53. <Reference Include="Microsoft.Phone.Interop" />
  54. <Reference Include="System.Runtime.Serialization" />
  55. <Reference Include="System.ServiceModel.Syndication">
  56. <HintPath>Dependencies\System.ServiceModel.Syndication.dll</HintPath>
  57. </Reference>
  58. <Reference Include="System.Windows" />
  59. <Reference Include="system" />
  60. <Reference Include="System.Core" />
  61. <Reference Include="System.Net" />
  62. <Reference Include="System.Xml" />
  63. <Reference Include="System.Xml.Linq" />
  64. </ItemGroup>
  65. <ItemGroup>
  66. <Compile Include="App.xaml.cs">
  67. <DependentUpon>App.xaml</DependentUpon>
  68. </Compile>
  69. <Compile Include="Model\RSSCache.cs" />
  70. <Compile Include="Model\RSSItem.cs" />
  71. <Compile Include="Model\RSSFeed.cs" />
  72. <Compile Include="Model\RSSPage.cs" />
  73. <Compile Include="Model\RSSService.cs" />
  74. <Compile Include="Properties\AssemblyInfo.cs" />
  75. <Compile Include="Views\FeedPivot.xaml.cs">
  76. <DependentUpon>FeedPivot.xaml</DependentUpon>
  77. </Compile>
  78. <Compile Include="Views\ItemPage.xaml.cs">
  79. <DependentUpon>ItemPage.xaml</DependentUpon>
  80. </Compile>
  81. <Compile Include="Views\MainPano.xaml.cs">
  82. <DependentUpon>MainPano.xaml</DependentUpon>
  83. </Compile>
  84. <Compile Include="Views\SearchPage.xaml.cs">
  85. <DependentUpon>SearchPage.xaml</DependentUpon>
  86. </Compile>
  87. <Compile Include="Views\SubscriptionsPage.xaml.cs">
  88. <DependentUpon>SubscriptionsPage.xaml</DependentUpon>
  89. </Compile>
  90. </ItemGroup>
  91. <ItemGroup>
  92. <ApplicationDefinition Include="App.xaml">
  93. <SubType>Designer</SubType>
  94. <Generator>MSBuild:Compile</Generator>
  95. </ApplicationDefinition>
  96. <Page Include="Views\FeedPivot.xaml">
  97. <SubType>Designer</SubType>
  98. <Generator>MSBuild:Compile</Generator>
  99. </Page>
  100. <Page Include="Views\ItemPage.xaml">
  101. <SubType>Designer</SubType>
  102. <Generator>MSBuild:Compile</Generator>
  103. </Page>
  104. <Page Include="Views\MainPano.xaml">
  105. <SubType>Designer</SubType>
  106. <Generator>MSBuild:Compile</Generator>
  107. </Page>
  108. <Page Include="Views\SearchPage.xaml">
  109. <SubType>Designer</SubType>
  110. <Generator>MSBuild:Compile</Generator>
  111. </Page>
  112. <Page Include="Views\SubscriptionsPage.xaml">
  113. <SubType>Designer</SubType>
  114. <Generator>MSBuild:Compile</Generator>
  115. </Page>
  116. </ItemGroup>
  117. <ItemGroup>
  118. <None Include="Properties\AppManifest.xml">
  119. <SubType>Designer</SubType>
  120. </None>
  121. <None Include="Properties\WMAppManifest.xml">
  122. <SubType>Designer</SubType>
  123. </None>
  124. </ItemGroup>
  125. <ItemGroup>
  126. <Content Include="ApplicationIcon.png" />
  127. <Content Include="Background.png" />
  128. <Content Include="Resources\appbar.cancel.rest.png" />
  129. <Content Include="Resources\appbar.feature.search.rest.png" />
  130. <Content Include="Resources\appbar.feature.settings.rest.png" />
  131. <Content Include="Resources\appbar.next.rest.png" />
  132. <Content Include="Resources\appbar.refresh.rest.png" />
  133. <Content Include="Resources\appbar.save.rest.png" />
  134. <Content Include="Resources\newspaper-background.jpg" />
  135. <Content Include="SplashScreenImage.jpg" />
  136. <Resource Include="sample-opml.xml" />
  137. <Content Include="Resources\rss-icon.jpg" />
  138. </ItemGroup>
  139. <Import Project="$(MSBuildExtensionsPath)\Microsoft\Silverlight for Phone\$(TargetFrameworkVersion)\Microsoft.Silverlight.$(TargetFrameworkProfile).Overrides.targets" />
  140. <Import Project="$(MSBuildExtensionsPath)\Microsoft\Silverlight for Phone\$(TargetFrameworkVersion)\Microsoft.Silverlight.CSharp.targets" />
  141. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  142. Other similar extension points exist, see Microsoft.Common.targets.
  143. <Target Name="BeforeBuild">
  144. </Target>
  145. <Target Name="AfterBuild">
  146. </Target>
  147. -->
  148. <ProjectExtensions />
  149. </Project>