NetworkStateManagement.MacOS.csproj 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>10.0.0</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{71871CF8-8563-4FA3-ABF2-EC1CBBF817E4}</ProjectGuid>
  9. <ProjectTypeGuids>{948B3504-5B70-4649-8FE4-BDE1FB46EC69};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  10. <OutputType>Exe</OutputType>
  11. <RootNamespace>NetworkStateManagement</RootNamespace>
  12. <AssemblyName>NetworkStateManagement</AssemblyName>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  15. <DebugSymbols>True</DebugSymbols>
  16. <DebugType>full</DebugType>
  17. <Optimize>False</Optimize>
  18. <OutputPath>bin\Debug</OutputPath>
  19. <DefineConstants>DEBUG;MONOMAC</DefineConstants>
  20. <ErrorReport>prompt</ErrorReport>
  21. <WarningLevel>4</WarningLevel>
  22. <ConsolePause>False</ConsolePause>
  23. <EnableCodeSigning>False</EnableCodeSigning>
  24. <CreatePackage>False</CreatePackage>
  25. <EnablePackageSigning>False</EnablePackageSigning>
  26. <IncludeMonoRuntime>False</IncludeMonoRuntime>
  27. <UseSGen>False</UseSGen>
  28. </PropertyGroup>
  29. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  30. <DebugType>none</DebugType>
  31. <Optimize>False</Optimize>
  32. <OutputPath>bin\Release</OutputPath>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. <ConsolePause>False</ConsolePause>
  36. <EnableCodeSigning>False</EnableCodeSigning>
  37. <CreatePackage>False</CreatePackage>
  38. <EnablePackageSigning>False</EnablePackageSigning>
  39. <IncludeMonoRuntime>False</IncludeMonoRuntime>
  40. <DefineConstants>MONOMAC</DefineConstants>
  41. <UseSGen>False</UseSGen>
  42. </PropertyGroup>
  43. <ItemGroup>
  44. <Reference Include="System" />
  45. <Reference Include="System.Xml" />
  46. <Reference Include="System.Core" />
  47. <Reference Include="System.Xml.Linq" />
  48. <Reference Include="System.Drawing" />
  49. <Reference Include="MonoMac" />
  50. </ItemGroup>
  51. <ItemGroup>
  52. <None Include="Info.plist">
  53. </None>
  54. <None Include="Content\background.png" />
  55. <None Include="Content\blank.png" />
  56. <None Include="Content\cat.tga" />
  57. <None Include="Content\chat_able.png" />
  58. <None Include="Content\chat_mute.png" />
  59. <None Include="Content\chat_ready.png" />
  60. <None Include="Content\chat_talking.png" />
  61. <None Include="Content\gamefont.spritefont" />
  62. <None Include="Content\gradient.png" />
  63. <None Include="Content\menufont.spritefont" />
  64. <None Include="Game.ico" />
  65. </ItemGroup>
  66. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  67. <Import Project="$(MSBuildExtensionsPath)\Mono\MonoMac\v0.0\Mono.MonoMac.targets" />
  68. <ItemGroup>
  69. <Folder Include="Content\" />
  70. </ItemGroup>
  71. <ItemGroup>
  72. <Content Include="Content\background.xnb" />
  73. <Content Include="Content\blank.xnb" />
  74. <Content Include="Content\cat.xnb" />
  75. <Content Include="Content\chat_able.xnb" />
  76. <Content Include="Content\chat_mute.xnb" />
  77. <Content Include="Content\chat_ready.xnb" />
  78. <Content Include="Content\chat_talking.xnb" />
  79. <Content Include="Content\gamefont.xnb" />
  80. <Content Include="Content\gradient.xnb" />
  81. <Content Include="Content\menufont.xnb" />
  82. </ItemGroup>
  83. <ItemGroup>
  84. <Compile Include="Networking\AvailableSessionMenuEntry.cs" />
  85. <Compile Include="Networking\CreateOrFindSessionScreen.cs" />
  86. <Compile Include="Networking\JoinSessionScreen.cs" />
  87. <Compile Include="Networking\LobbyScreen.cs" />
  88. <Compile Include="Networking\NetworkBusyScreen.cs" />
  89. <Compile Include="Networking\NetworkErrorScreen.cs" />
  90. <Compile Include="Networking\NetworkSessionComponent.cs" />
  91. <Compile Include="Networking\OperationCompletedEventArgs.cs" />
  92. <Compile Include="Networking\ProfileSignInScreen.cs" />
  93. <Compile Include="ScreenManager\GameScreen.cs" />
  94. <Compile Include="ScreenManager\InputState.cs" />
  95. <Compile Include="ScreenManager\ScreenManager.cs" />
  96. <Compile Include="Screens\BackgroundScreen.cs" />
  97. <Compile Include="Screens\GameplayScreen.cs" />
  98. <Compile Include="Screens\LoadingScreen.cs" />
  99. <Compile Include="Screens\MainMenuScreen.cs" />
  100. <Compile Include="Screens\MenuEntry.cs" />
  101. <Compile Include="Screens\MenuScreen.cs" />
  102. <Compile Include="Screens\MessageBoxScreen.cs" />
  103. <Compile Include="Screens\PauseMenuScreen.cs" />
  104. <Compile Include="Screens\PlayerIndexEventArgs.cs" />
  105. <Compile Include="Game.cs" />
  106. <Compile Include="IMessageDisplay.cs" />
  107. <Compile Include="MessageDisplayComponent.cs" />
  108. <Compile Include="Resources.Designer.cs" />
  109. <Compile Include="Program.cs" />
  110. </ItemGroup>
  111. <ItemGroup>
  112. <EmbeddedResource Include="Resources.resx" />
  113. </ItemGroup>
  114. </Project>