NetworkStateManagement.Linux.csproj 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  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)' == '' ">x86</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{D0E05092-60B2-47FF-B924-D5CDED0C0DD1}</ProjectGuid>
  9. <OutputType>Exe</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>NetworkStateManagement</RootNamespace>
  12. <AssemblyName>NetworkStateManagement</AssemblyName>
  13. <FileAlignment>512</FileAlignment>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  16. <PlatformTarget>x86</PlatformTarget>
  17. <DebugSymbols>True</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>False</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  26. <PlatformTarget>x86</PlatformTarget>
  27. <DebugType>pdbonly</DebugType>
  28. <Optimize>True</Optimize>
  29. <OutputPath>bin\Release\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <Reference Include="System" />
  36. <Reference Include="System.Core" />
  37. <Reference Include="System.Data" />
  38. <Reference Include="System.Drawing" />
  39. <Reference Include="System.Xml" />
  40. </ItemGroup>
  41. <ItemGroup>
  42. <Compile Include="Game.cs">
  43. <Link>Game.cs</Link>
  44. </Compile>
  45. <Compile Include="IMessageDisplay.cs">
  46. <Link>IMessageDisplay.cs</Link>
  47. </Compile>
  48. <Compile Include="MessageDisplayComponent.cs">
  49. <Link>MessageDisplayComponent.cs</Link>
  50. </Compile>
  51. <Compile Include="Networking\AvailableSessionMenuEntry.cs">
  52. <Link>Networking\AvailableSessionMenuEntry.cs</Link>
  53. </Compile>
  54. <Compile Include="Networking\CreateOrFindSessionScreen.cs">
  55. <Link>Networking\CreateOrFindSessionScreen.cs</Link>
  56. </Compile>
  57. <Compile Include="Networking\JoinSessionScreen.cs">
  58. <Link>Networking\JoinSessionScreen.cs</Link>
  59. </Compile>
  60. <Compile Include="Networking\LobbyScreen.cs">
  61. <Link>Networking\LobbyScreen.cs</Link>
  62. </Compile>
  63. <Compile Include="Networking\NetworkBusyScreen.cs">
  64. <Link>Networking\NetworkBusyScreen.cs</Link>
  65. </Compile>
  66. <Compile Include="Networking\NetworkErrorScreen.cs">
  67. <Link>Networking\NetworkErrorScreen.cs</Link>
  68. </Compile>
  69. <Compile Include="Networking\NetworkSessionComponent.cs">
  70. <Link>Networking\NetworkSessionComponent.cs</Link>
  71. </Compile>
  72. <Compile Include="Networking\OperationCompletedEventArgs.cs">
  73. <Link>Networking\OperationCompletedEventArgs.cs</Link>
  74. </Compile>
  75. <Compile Include="Networking\ProfileSignInScreen.cs">
  76. <Link>Networking\ProfileSignInScreen.cs</Link>
  77. </Compile>
  78. <Compile Include="ScreenManager\GameScreen.cs">
  79. <Link>ScreenManager\GameScreen.cs</Link>
  80. </Compile>
  81. <Compile Include="ScreenManager\InputState.cs">
  82. <Link>ScreenManager\InputState.cs</Link>
  83. </Compile>
  84. <Compile Include="ScreenManager\ScreenManager.cs">
  85. <Link>ScreenManager\ScreenManager.cs</Link>
  86. </Compile>
  87. <Compile Include="Screens\BackgroundScreen.cs">
  88. <Link>Screens\BackgroundScreen.cs</Link>
  89. </Compile>
  90. <Compile Include="Screens\GameplayScreen.cs">
  91. <Link>Screens\GameplayScreen.cs</Link>
  92. </Compile>
  93. <Compile Include="Screens\LoadingScreen.cs">
  94. <Link>Screens\LoadingScreen.cs</Link>
  95. </Compile>
  96. <Compile Include="Screens\MainMenuScreen.cs">
  97. <Link>Screens\MainMenuScreen.cs</Link>
  98. </Compile>
  99. <Compile Include="Screens\MenuEntry.cs">
  100. <Link>Screens\MenuEntry.cs</Link>
  101. </Compile>
  102. <Compile Include="Screens\MenuScreen.cs">
  103. <Link>Screens\MenuScreen.cs</Link>
  104. </Compile>
  105. <Compile Include="Screens\MessageBoxScreen.cs">
  106. <Link>Screens\MessageBoxScreen.cs</Link>
  107. </Compile>
  108. <Compile Include="Screens\PauseMenuScreen.cs">
  109. <Link>Screens\PauseMenuScreen.cs</Link>
  110. </Compile>
  111. <Compile Include="Screens\PlayerIndexEventArgs.cs">
  112. <Link>Screens\PlayerIndexEventArgs.cs</Link>
  113. </Compile>
  114. <Compile Include="Program.cs" />
  115. <Compile Include="Properties\AssemblyInfo.cs" />
  116. <Compile Include="Resources.Designer.cs">
  117. <AutoGen>True</AutoGen>
  118. <DesignTime>True</DesignTime>
  119. <DependentUpon>Resources.resx</DependentUpon>
  120. </Compile>
  121. </ItemGroup>
  122. <ItemGroup>
  123. <Content Include="Content\background.xnb">
  124. <Link>Content\background.xnb</Link>
  125. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  126. </Content>
  127. <Content Include="Content\blank.xnb">
  128. <Link>Content\blank.xnb</Link>
  129. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  130. </Content>
  131. <Content Include="Content\cat.xnb">
  132. <Link>Content\cat.xnb</Link>
  133. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  134. </Content>
  135. <Content Include="Content\chat_able.xnb">
  136. <Link>Content\chat_able.xnb</Link>
  137. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  138. </Content>
  139. <Content Include="Content\chat_mute.xnb">
  140. <Link>Content\chat_mute.xnb</Link>
  141. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  142. </Content>
  143. <Content Include="Content\chat_ready.xnb">
  144. <Link>Content\chat_ready.xnb</Link>
  145. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  146. </Content>
  147. <Content Include="Content\chat_talking.xnb">
  148. <Link>Content\chat_talking.xnb</Link>
  149. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  150. </Content>
  151. <Content Include="Content\gamefont.xnb">
  152. <Link>Content\gamefont.xnb</Link>
  153. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  154. </Content>
  155. <Content Include="Content\gradient.xnb">
  156. <Link>Content\gradient.xnb</Link>
  157. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  158. </Content>
  159. </ItemGroup>
  160. <ItemGroup>
  161. <EmbeddedResource Include="Resources.resx">
  162. <Generator>ResXFileCodeGenerator</Generator>
  163. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  164. </EmbeddedResource>
  165. </ItemGroup>
  166. <ItemGroup>
  167. <Content Include="Content\menufont.xnb">
  168. <Link>Content\menufont.xnb</Link>
  169. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  170. </Content>
  171. </ItemGroup>
  172. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  173. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  174. Other similar extension points exist, see Microsoft.Common.targets.
  175. <Target Name="BeforeBuild">
  176. </Target>
  177. <Target Name="AfterBuild">
  178. </Target>
  179. -->
  180. </Project>