DynamicMenu - Phone.csproj 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <ProjectGuid>{FC43C628-255A-4B63-A4C6-DCD915CE25B8}</ProjectGuid>
  5. <ProjectTypeGuids>{6D335F3A-9D43-41b4-9D22-F6F17C4BE596};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  6. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  7. <Platform Condition=" '$(Platform)' == '' ">Windows Phone</Platform>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>DynamicMenu</RootNamespace>
  11. <AssemblyName>DynamicMenu</AssemblyName>
  12. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  13. <TargetFrameworkProfile>Client</TargetFrameworkProfile>
  14. <XnaFrameworkVersion>v4.0</XnaFrameworkVersion>
  15. <XnaPlatform>Windows Phone</XnaPlatform>
  16. <XnaProfile>Reach</XnaProfile>
  17. <XnaCrossPlatformGroupID>e83de1ce-c1ad-4461-9681-22f3692fa29a</XnaCrossPlatformGroupID>
  18. <XnaOutputType>Library</XnaOutputType>
  19. </PropertyGroup>
  20. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|Windows Phone' ">
  21. <DebugSymbols>true</DebugSymbols>
  22. <DebugType>full</DebugType>
  23. <Optimize>false</Optimize>
  24. <OutputPath>bin\Windows Phone\Debug</OutputPath>
  25. <DefineConstants>DEBUG;TRACE;WINDOWS_PHONE</DefineConstants>
  26. <ErrorReport>prompt</ErrorReport>
  27. <WarningLevel>4</WarningLevel>
  28. <NoStdLib>true</NoStdLib>
  29. <UseVSHostingProcess>false</UseVSHostingProcess>
  30. <XnaCompressContent>false</XnaCompressContent>
  31. </PropertyGroup>
  32. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|Windows Phone' ">
  33. <DebugType>pdbonly</DebugType>
  34. <Optimize>true</Optimize>
  35. <OutputPath>bin\Windows Phone\Release</OutputPath>
  36. <DefineConstants>TRACE;WINDOWS_PHONE</DefineConstants>
  37. <ErrorReport>prompt</ErrorReport>
  38. <WarningLevel>4</WarningLevel>
  39. <NoStdLib>true</NoStdLib>
  40. <UseVSHostingProcess>false</UseVSHostingProcess>
  41. <XnaCompressContent>false</XnaCompressContent>
  42. </PropertyGroup>
  43. <ItemGroup>
  44. <Reference Include="Microsoft.Xna.Framework">
  45. <Private>False</Private>
  46. </Reference>
  47. <Reference Include="Microsoft.Xna.Framework.Game">
  48. <Private>False</Private>
  49. </Reference>
  50. <Reference Include="Microsoft.Xna.Framework.Graphics">
  51. <Private>False</Private>
  52. </Reference>
  53. <Reference Include="Microsoft.Xna.Framework.GamerServices">
  54. <Private>False</Private>
  55. </Reference>
  56. <Reference Include="Microsoft.Xna.Framework.Input.Touch">
  57. <Private>False</Private>
  58. </Reference>
  59. <Reference Include="mscorlib">
  60. <Private>False</Private>
  61. </Reference>
  62. <Reference Include="System">
  63. <Private>False</Private>
  64. </Reference>
  65. <Reference Include="System.Xml">
  66. <Private>False</Private>
  67. </Reference>
  68. <Reference Include="System.Core">
  69. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  70. <Private>False</Private>
  71. </Reference>
  72. <Reference Include="System.Xml.Linq">
  73. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  74. <Private>False</Private>
  75. </Reference>
  76. </ItemGroup>
  77. <ItemGroup>
  78. <Compile Include="Controls\Control.cs" />
  79. <Compile Include="Controls\MultilineTextControl.cs" />
  80. <Compile Include="Controls\TextControl.cs" />
  81. <Compile Include="Controls\IControl.cs" />
  82. <Compile Include="Controls\ITextControl.cs" />
  83. <Compile Include="Controls\Button.cs" />
  84. <Compile Include="Controls\Container.cs" />
  85. <Compile Include="Controls\Image.cs" />
  86. <Compile Include="Controls\Label.cs" />
  87. <Compile Include="Controls\PhoneScreen.cs" />
  88. <Compile Include="Controls\ProgressBar.cs" />
  89. <Compile Include="Properties\AssemblyInfo.cs" />
  90. <Compile Include="Transitions\Transition.cs" />
  91. </ItemGroup>
  92. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  93. <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\Microsoft.Xna.GameStudio.targets" />
  94. <!--
  95. To modify your build process, add your task inside one of the targets below and uncomment it.
  96. Other similar extension points exist, see Microsoft.Common.targets.
  97. <Target Name="BeforeBuild">
  98. </Target>
  99. <Target Name="AfterBuild">
  100. </Target>
  101. -->
  102. </Project>