NetworkStateManagement.MacOS.csproj 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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</DefineConstants>
  20. <ErrorReport>prompt</ErrorReport>
  21. <WarningLevel>4</WarningLevel>
  22. <ConsolePause>false</ConsolePause>
  23. </PropertyGroup>
  24. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  25. <DebugType>none</DebugType>
  26. <Optimize>false</Optimize>
  27. <OutputPath>bin\Release</OutputPath>
  28. <ErrorReport>prompt</ErrorReport>
  29. <WarningLevel>4</WarningLevel>
  30. <ConsolePause>false</ConsolePause>
  31. </PropertyGroup>
  32. <ItemGroup>
  33. <Reference Include="System" />
  34. <Reference Include="System.Xml" />
  35. <Reference Include="System.Core" />
  36. <Reference Include="System.Xml.Linq" />
  37. <Reference Include="System.Drawing" />
  38. <Reference Include="MonoMac" />
  39. </ItemGroup>
  40. <ItemGroup>
  41. <None Include="Info.plist"></None>
  42. <None Include="Content\background.png" />
  43. <None Include="Content\blank.png" />
  44. <None Include="Content\cat.tga" />
  45. <None Include="Content\chat_able.png" />
  46. <None Include="Content\chat_mute.png" />
  47. <None Include="Content\chat_ready.png" />
  48. <None Include="Content\chat_talking.png" />
  49. <None Include="Content\gamefont.spritefont" />
  50. <None Include="Content\gradient.png" />
  51. <None Include="Content\menufont.spritefont" />
  52. <None Include="Game.ico" />
  53. </ItemGroup>
  54. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  55. <Import Project="$(MSBuildExtensionsPath)\Mono\MonoMac\v0.0\Mono.MonoMac.targets" />
  56. <ItemGroup>
  57. <Folder Include="Content\" />
  58. </ItemGroup>
  59. <ItemGroup>
  60. <Content Include="Content\background.xnb" />
  61. <Content Include="Content\blank.xnb" />
  62. <Content Include="Content\cat.xnb" />
  63. <Content Include="Content\chat_able.xnb" />
  64. <Content Include="Content\chat_mute.xnb" />
  65. <Content Include="Content\chat_ready.xnb" />
  66. <Content Include="Content\chat_talking.xnb" />
  67. <Content Include="Content\gamefont.xnb" />
  68. <Content Include="Content\gradient.xnb" />
  69. <Content Include="Content\menufont.xnb" />
  70. </ItemGroup>
  71. <ItemGroup>
  72. <Compile Include="Networking\AvailableSessionMenuEntry.cs" />
  73. <Compile Include="Networking\CreateOrFindSessionScreen.cs" />
  74. <Compile Include="Networking\JoinSessionScreen.cs" />
  75. <Compile Include="Networking\LobbyScreen.cs" />
  76. <Compile Include="Networking\NetworkBusyScreen.cs" />
  77. <Compile Include="Networking\NetworkErrorScreen.cs" />
  78. <Compile Include="Networking\NetworkSessionComponent.cs" />
  79. <Compile Include="Networking\OperationCompletedEventArgs.cs" />
  80. <Compile Include="Networking\ProfileSignInScreen.cs" />
  81. <Compile Include="ScreenManager\GameScreen.cs" />
  82. <Compile Include="ScreenManager\InputState.cs" />
  83. <Compile Include="ScreenManager\ScreenManager.cs" />
  84. <Compile Include="Screens\BackgroundScreen.cs" />
  85. <Compile Include="Screens\GameplayScreen.cs" />
  86. <Compile Include="Screens\LoadingScreen.cs" />
  87. <Compile Include="Screens\MainMenuScreen.cs" />
  88. <Compile Include="Screens\MenuEntry.cs" />
  89. <Compile Include="Screens\MenuScreen.cs" />
  90. <Compile Include="Screens\MessageBoxScreen.cs" />
  91. <Compile Include="Screens\PauseMenuScreen.cs" />
  92. <Compile Include="Screens\PlayerIndexEventArgs.cs" />
  93. <Compile Include="Game.cs" />
  94. <Compile Include="IMessageDisplay.cs" />
  95. <Compile Include="MessageDisplayComponent.cs" />
  96. <Compile Include="Resources.Designer.cs" />
  97. <Compile Include="Program.cs" />
  98. </ItemGroup>
  99. <ItemGroup>
  100. <ProjectReference Include="..\..\MonoGame.Framework\MonoGame.Framework.MacOS.csproj">
  101. <Project>{36C538E6-C32A-4A8D-A39C-566173D7118E}</Project>
  102. <Name>MonoGame.Framework.MacOS</Name>
  103. </ProjectReference>
  104. </ItemGroup>
  105. <ItemGroup>
  106. <EmbeddedResource Include="Resources.resx" />
  107. </ItemGroup>
  108. </Project>