From d911b2b67a7cf45511935627a18438ff434b4124 Mon Sep 17 00:00:00 2001 From: Magnus von Wachenfeldt Date: Sat, 5 Dec 2015 19:57:37 +0100 Subject: [PATCH] upgrade to monogame 3.4 --- .gitignore | 2 + Lidgren.Network/Lidgren.Network.csproj | 2 +- Neoforce/Console.cs | 1 + Neoforce/InputSystem.cs | 2 +- Neoforce/TextBox.cs | 1 + Neoforce/TomShane.Neoforce.Controls.csproj | 4 + README.md | 2 + SpacePew.Common/SpacePew.Common.csproj | 3 +- .../SpacePew.Content/SpacePew.Content.csproj | 64 -- .../SpacePew.Content.csproj.Linux.cachefile | 27 - .../SpacePew.Content.csproj.PSM.cachefile | 24 - .../SpacePew.Content.csproj.Windows.cachefile | 27 - SpacePew.sln | 569 ++---------------- .../Content}/Audio/Waves/beep.wav | Bin .../Content}/Audio/Waves/bingo.wav | Bin .../Content}/Audio/Waves/bullet_hit.wav | Bin .../Content}/Audio/Waves/bullet_sound.wav | Bin .../Content}/Audio/Waves/engine.wav | Bin .../Content}/Audio/Waves/explosion.wav | Bin .../Content}/Audio/Waves/land.wav | Bin .../Content}/Audio/Waves/message.wav | Bin .../Content}/Audio/Waves/thump.wav | Bin SpacePew/Content/Content.mgcb | 214 +++++++ .../Content}/Fonts/ConsoleFont.spritefont | 0 .../Content}/Fonts/Default.spritefont | 0 .../Content}/Fonts/NetFont.spritefont | 0 .../Content}/Fonts/ScoreBoardFont.spritefont | 0 .../Content}/ParticleTextures/explosion.png | Bin .../Content}/ParticleTextures/smoke.bmp | Bin .../SpacePew.ContentContent.contentproj | 0 SpacePew/Content/SpacePew.ContentContent.mgcb | 214 +++++++ .../Content}/bullet.png | Bin .../Content}/explosion.png | Bin .../Content}/explosion_small.png | Bin .../Content}/longshot.png | Bin .../Content}/player.png | Bin .../Content}/player_thrusting.png | Bin .../Content}/scoreboard.png | Bin .../Content}/stars.png | Bin .../Content}/transparent_pixel.png | Bin SpacePew/Game1.cs | 83 +++ SpacePew/MainGame.cs | 3 +- SpacePew/Networking/NetworkMessenger.cs | 2 - SpacePew/Networking/ScoreBoard.cs | 2 - SpacePew/Networking/UdpNetworkGui.cs | 2 - SpacePew/SpacePew.csproj | 118 ++-- SpacePew/app.config | 2 +- 47 files changed, 601 insertions(+), 767 deletions(-) delete mode 100644 SpacePew.Content/SpacePew.Content/SpacePew.Content.csproj delete mode 100644 SpacePew.Content/SpacePew.Content/SpacePew.Content.csproj.Linux.cachefile delete mode 100644 SpacePew.Content/SpacePew.Content/SpacePew.Content.csproj.PSM.cachefile delete mode 100644 SpacePew.Content/SpacePew.Content/SpacePew.Content.csproj.Windows.cachefile rename {SpacePew.Content/SpacePew.ContentContent => SpacePew/Content}/Audio/Waves/beep.wav (100%) rename {SpacePew.Content/SpacePew.ContentContent => SpacePew/Content}/Audio/Waves/bingo.wav (100%) rename {SpacePew.Content/SpacePew.ContentContent => SpacePew/Content}/Audio/Waves/bullet_hit.wav (100%) rename {SpacePew.Content/SpacePew.ContentContent => SpacePew/Content}/Audio/Waves/bullet_sound.wav (100%) rename {SpacePew.Content/SpacePew.ContentContent => SpacePew/Content}/Audio/Waves/engine.wav (100%) rename {SpacePew.Content/SpacePew.ContentContent => SpacePew/Content}/Audio/Waves/explosion.wav (100%) rename {SpacePew.Content/SpacePew.ContentContent => SpacePew/Content}/Audio/Waves/land.wav (100%) rename {SpacePew.Content/SpacePew.ContentContent => SpacePew/Content}/Audio/Waves/message.wav (100%) rename {SpacePew.Content/SpacePew.ContentContent => SpacePew/Content}/Audio/Waves/thump.wav (100%) create mode 100644 SpacePew/Content/Content.mgcb rename {SpacePew.Content/SpacePew.ContentContent => SpacePew/Content}/Fonts/ConsoleFont.spritefont (100%) rename {SpacePew.Content/SpacePew.ContentContent => SpacePew/Content}/Fonts/Default.spritefont (100%) rename {SpacePew.Content/SpacePew.ContentContent => SpacePew/Content}/Fonts/NetFont.spritefont (100%) rename {SpacePew.Content/SpacePew.ContentContent => SpacePew/Content}/Fonts/ScoreBoardFont.spritefont (100%) rename {SpacePew.Content/SpacePew.ContentContent => SpacePew/Content}/ParticleTextures/explosion.png (100%) rename {SpacePew.Content/SpacePew.ContentContent => SpacePew/Content}/ParticleTextures/smoke.bmp (100%) rename {SpacePew.Content/SpacePew.ContentContent => SpacePew/Content}/SpacePew.ContentContent.contentproj (100%) create mode 100644 SpacePew/Content/SpacePew.ContentContent.mgcb rename {SpacePew.Content/SpacePew.ContentContent => SpacePew/Content}/bullet.png (100%) rename {SpacePew.Content/SpacePew.ContentContent => SpacePew/Content}/explosion.png (100%) rename {SpacePew.Content/SpacePew.ContentContent => SpacePew/Content}/explosion_small.png (100%) rename {SpacePew.Content/SpacePew.ContentContent => SpacePew/Content}/longshot.png (100%) rename {SpacePew.Content/SpacePew.ContentContent => SpacePew/Content}/player.png (100%) rename {SpacePew.Content/SpacePew.ContentContent => SpacePew/Content}/player_thrusting.png (100%) rename {SpacePew.Content/SpacePew.ContentContent => SpacePew/Content}/scoreboard.png (100%) rename {SpacePew.Content/SpacePew.ContentContent => SpacePew/Content}/stars.png (100%) rename {SpacePew.Content/SpacePew.ContentContent => SpacePew/Content}/transparent_pixel.png (100%) create mode 100644 SpacePew/Game1.cs diff --git a/.gitignore b/.gitignore index 0698168..3f232a1 100644 --- a/.gitignore +++ b/.gitignore @@ -14,6 +14,8 @@ output/ *.vshost.exe *.Publish.xml +.vs/ + # ReSharper is a .NET coding add-in _ReSharper* *.ReSharper diff --git a/Lidgren.Network/Lidgren.Network.csproj b/Lidgren.Network/Lidgren.Network.csproj index 1fc4d23..2d813f5 100644 --- a/Lidgren.Network/Lidgren.Network.csproj +++ b/Lidgren.Network/Lidgren.Network.csproj @@ -10,7 +10,7 @@ Properties Lidgren.Network Lidgren.Network - v4.5.1 + v4.6 512 publish\ true diff --git a/Neoforce/Console.cs b/Neoforce/Console.cs index 596c274..3c4dd41 100644 --- a/Neoforce/Console.cs +++ b/Neoforce/Console.cs @@ -27,6 +27,7 @@ using Microsoft.Xna.Framework.Graphics; using System.Collections; using System.Collections.Generic; using Microsoft.Xna.Framework.GamerServices; + //////////////////////////////////////////////////////////////////////////// #endregion diff --git a/Neoforce/InputSystem.cs b/Neoforce/InputSystem.cs index 43e4249..28f6c31 100644 --- a/Neoforce/InputSystem.cs +++ b/Neoforce/InputSystem.cs @@ -24,8 +24,8 @@ using System; using System.Collections.Generic; using Microsoft.Xna.Framework; -using Microsoft.Xna.Framework.Input; using Microsoft.Xna.Framework.GamerServices; +using Microsoft.Xna.Framework.Input; //////////////////////////////////////////////////////////////////////////// #endregion diff --git a/Neoforce/TextBox.cs b/Neoforce/TextBox.cs index caf6d87..f24141b 100644 --- a/Neoforce/TextBox.cs +++ b/Neoforce/TextBox.cs @@ -30,6 +30,7 @@ using System.Collections; using System.Collections.Generic; using System.Diagnostics; using Microsoft.Xna.Framework.GamerServices; + //////////////////////////////////////////////////////////////////////////// #endregion diff --git a/Neoforce/TomShane.Neoforce.Controls.csproj b/Neoforce/TomShane.Neoforce.Controls.csproj index 77a1c46..1cc4e2a 100644 --- a/Neoforce/TomShane.Neoforce.Controls.csproj +++ b/Neoforce/TomShane.Neoforce.Controls.csproj @@ -35,6 +35,10 @@ False C:\Program Files (x86)\MonoGame\v3.0\Assemblies\Windows\MonoGame.Framework.dll + + False + C:\Program Files (x86)\MonoGame\v3.0\Assemblies\Windows\MonoGame.Framework.Net.dll + diff --git a/README.md b/README.md index 4e5f5bf..85e0a0b 100644 --- a/README.md +++ b/README.md @@ -1 +1,3 @@ Inspired by the great game Gravity Force 2 for the Amiga with support for playing over TCP/IP. + +Needs Monogame 3.4 \ No newline at end of file diff --git a/SpacePew.Common/SpacePew.Common.csproj b/SpacePew.Common/SpacePew.Common.csproj index 2c2486e..81c98c8 100644 --- a/SpacePew.Common/SpacePew.Common.csproj +++ b/SpacePew.Common/SpacePew.Common.csproj @@ -9,8 +9,9 @@ Properties SpacePew.Common SpacePew.Common - v4.5 + v4.6 512 + true diff --git a/SpacePew.Content/SpacePew.Content/SpacePew.Content.csproj b/SpacePew.Content/SpacePew.Content/SpacePew.Content.csproj deleted file mode 100644 index 02adf74..0000000 --- a/SpacePew.Content/SpacePew.Content/SpacePew.Content.csproj +++ /dev/null @@ -1,64 +0,0 @@ - - - - - {944BAED2-53A4-47E9-AE89-7F6C5843DE94} - {6D335F3A-9D43-41b4-9D22-F6F17C4BE596};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Windows - x86 - Library - Properties - ContentBuilder - IgnoreMe - v4.0 - Client - v4.0 - bin\$(Configuration) - Windows - HiDef - 3ba061e4-8ea0-40ef-a6b6-07a417ea841a - Library - x86 - false - - - Windows - - - Windows8 - - - Android - - - iOS - - - OSX - - - Linux - - - PSM - - - - - - - SpacePew.ContentContent - Content - - - - - - \ No newline at end of file diff --git a/SpacePew.Content/SpacePew.Content/SpacePew.Content.csproj.Linux.cachefile b/SpacePew.Content/SpacePew.Content/SpacePew.Content.csproj.Linux.cachefile deleted file mode 100644 index 0248252..0000000 --- a/SpacePew.Content/SpacePew.Content/SpacePew.Content.csproj.Linux.cachefile +++ /dev/null @@ -1,27 +0,0 @@ -Content\Fonts\ConsoleFont.xnb -Content\Fonts\NetFont.xnb -Content\Fonts\ScoreBoardFont.xnb -Content\Fonts\Default.xnb -Content\Music\mosaik-locusfruit.xnb -Content\Audio\Waves\bingo.xnb -Content\Audio\Waves\bullet_hit.xnb -Content\Audio\Waves\bullet_sound.xnb -Content\Audio\Waves\engine.xnb -Content\Audio\Waves\explosion.xnb -Content\Audio\Waves\land.xnb -Content\Audio\Waves\thump.xnb -Content\bullet.xnb -Content\explosion.xnb -Content\explosion_small.xnb -Content\longshot.xnb -Content\ParticleTextures\explosion.xnb -Content\ParticleTextures\smoke.xnb -Content\player.xnb -Content\player_thrusting.xnb -Content\scoreboard.xnb -Content\stars.xnb -Content\transparent_pixel.xnb -Content\Music\mosaik-locusfruit.wma -Content\Audio\SpacePew.xgs -Content\Audio\SpacePew.xwb -Content\Audio\SpacePew.xsb diff --git a/SpacePew.Content/SpacePew.Content/SpacePew.Content.csproj.PSM.cachefile b/SpacePew.Content/SpacePew.Content/SpacePew.Content.csproj.PSM.cachefile deleted file mode 100644 index 73abb50..0000000 --- a/SpacePew.Content/SpacePew.Content/SpacePew.Content.csproj.PSM.cachefile +++ /dev/null @@ -1,24 +0,0 @@ -Content\Fonts\ConsoleFont.xnb -Content\Fonts\NetFont.xnb -Content\Fonts\ScoreBoardFont.xnb -Content\Fonts\Default.xnb -Content\Audio\Waves\bingo.xnb -Content\Audio\Waves\bullet_hit.xnb -Content\Audio\Waves\bullet_sound.xnb -Content\Audio\Waves\engine.xnb -Content\Audio\Waves\explosion.xnb -Content\Audio\Waves\land.xnb -Content\Audio\Waves\thump.xnb -Content\Audio\Waves\beep.xnb -Content\bullet.xnb -Content\explosion.xnb -Content\explosion_small.xnb -Content\longshot.xnb -Content\ParticleTextures\explosion.xnb -Content\ParticleTextures\smoke.xnb -Content\player.xnb -Content\player_thrusting.xnb -Content\scoreboard.xnb -Content\stars.xnb -Content\transparent_pixel.xnb -Content\Audio\Waves\message.xnb diff --git a/SpacePew.Content/SpacePew.Content/SpacePew.Content.csproj.Windows.cachefile b/SpacePew.Content/SpacePew.Content/SpacePew.Content.csproj.Windows.cachefile deleted file mode 100644 index 0248252..0000000 --- a/SpacePew.Content/SpacePew.Content/SpacePew.Content.csproj.Windows.cachefile +++ /dev/null @@ -1,27 +0,0 @@ -Content\Fonts\ConsoleFont.xnb -Content\Fonts\NetFont.xnb -Content\Fonts\ScoreBoardFont.xnb -Content\Fonts\Default.xnb -Content\Music\mosaik-locusfruit.xnb -Content\Audio\Waves\bingo.xnb -Content\Audio\Waves\bullet_hit.xnb -Content\Audio\Waves\bullet_sound.xnb -Content\Audio\Waves\engine.xnb -Content\Audio\Waves\explosion.xnb -Content\Audio\Waves\land.xnb -Content\Audio\Waves\thump.xnb -Content\bullet.xnb -Content\explosion.xnb -Content\explosion_small.xnb -Content\longshot.xnb -Content\ParticleTextures\explosion.xnb -Content\ParticleTextures\smoke.xnb -Content\player.xnb -Content\player_thrusting.xnb -Content\scoreboard.xnb -Content\stars.xnb -Content\transparent_pixel.xnb -Content\Music\mosaik-locusfruit.wma -Content\Audio\SpacePew.xgs -Content\Audio\SpacePew.xwb -Content\Audio\SpacePew.xsb diff --git a/SpacePew.sln b/SpacePew.sln index 4ffa17f..55c8edc 100644 --- a/SpacePew.sln +++ b/SpacePew.sln @@ -1,561 +1,72 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2013 -VisualStudioVersion = 12.0.31010.0 +# Visual Studio 14 +VisualStudioVersion = 14.0.23107.0 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{91E40179-82B4-46A6-ACA4-F1CE7A36C0F6}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SpacePew", "SpacePew\SpacePew.csproj", "{8B1B6A0B-2F48-4FB4-936A-2086505B2914}" EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Library", "Library", "{E6EF59CA-FDE1-4AE8-8A8F-3C83D8730EE3}" - ProjectSection(SolutionItems) = preProject - ..\Library\ICSharpCode.SharpZipLib.dll = ..\Library\ICSharpCode.SharpZipLib.dll - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SpacePew", "SpacePew\SpacePew.csproj", "{1C82F1B3-6F3C-47EC-901A-E656D037F862}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SpacePew.Content", "SpacePew.Content\SpacePew.Content\SpacePew.Content.csproj", "{944BAED2-53A4-47E9-AE89-7F6C5843DE94}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SpacePew.ContentContent", "SpacePew.Content\SpacePew.ContentContent\SpacePew.ContentContent.contentproj", "{F5811120-B89A-4A2E-A0BD-551E9F06510D}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SpacePew.Common", "SpacePew.Common\SpacePew.Common.csproj", "{BA98D4CA-718B-4E50-AD4D-F48E8CA67624}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lidgren.Network", "Lidgren.Network\Lidgren.Network.csproj", "{49BA1C69-6104-41AC-A5D8-B54FA9F696E8}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TomShane.Neoforce.Controls", "Neoforce\TomShane.Neoforce.Controls.csproj", "{AC5F1CD8-AA8E-4DB5-814F-86C214175841}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SpacePew.MasterServer", "SpacePew.MasterServer\SpacePew.MasterServer.csproj", "{9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "References", "References", "{AC34EB05-CB95-4A1E-8C75-FE74BA4A1DD9}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SpacePew.Common", "SpacePew.Common\SpacePew.Common.csproj", "{BA98D4CA-718B-4E50-AD4D-F48E8CA67624}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SpacePew.MasterServer", "SpacePew.MasterServer\SpacePew.MasterServer.csproj", "{9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - Android|Any CPU = Android|Any CPU - Android|Mixed Platforms = Android|Mixed Platforms - Android|x86 = Android|x86 - Android|Xbox 360 = Android|Xbox 360 - Android|Zune = Android|Zune Debug|Any CPU = Debug|Any CPU - Debug|Mixed Platforms = Debug|Mixed Platforms Debug|x86 = Debug|x86 - Debug|Xbox 360 = Debug|Xbox 360 - Debug|Zune = Debug|Zune - iOS|Any CPU = iOS|Any CPU - iOS|Mixed Platforms = iOS|Mixed Platforms - iOS|x86 = iOS|x86 - iOS|Xbox 360 = iOS|Xbox 360 - iOS|Zune = iOS|Zune - Linux|Any CPU = Linux|Any CPU - Linux|Mixed Platforms = Linux|Mixed Platforms - Linux|x86 = Linux|x86 - Linux|Xbox 360 = Linux|Xbox 360 - Linux|Zune = Linux|Zune - OSX|Any CPU = OSX|Any CPU - OSX|Mixed Platforms = OSX|Mixed Platforms - OSX|x86 = OSX|x86 - OSX|Xbox 360 = OSX|Xbox 360 - OSX|Zune = OSX|Zune - PSM|Any CPU = PSM|Any CPU - PSM|Mixed Platforms = PSM|Mixed Platforms - PSM|x86 = PSM|x86 - PSM|Xbox 360 = PSM|Xbox 360 - PSM|Zune = PSM|Zune Release|Any CPU = Release|Any CPU - Release|Mixed Platforms = Release|Mixed Platforms Release|x86 = Release|x86 - Release|Xbox 360 = Release|Xbox 360 - Release|Zune = Release|Zune - ReleaseWithStatistics|Any CPU = ReleaseWithStatistics|Any CPU - ReleaseWithStatistics|Mixed Platforms = ReleaseWithStatistics|Mixed Platforms - ReleaseWithStatistics|x86 = ReleaseWithStatistics|x86 - ReleaseWithStatistics|Xbox 360 = ReleaseWithStatistics|Xbox 360 - ReleaseWithStatistics|Zune = ReleaseWithStatistics|Zune - Windows|Any CPU = Windows|Any CPU - Windows|Mixed Platforms = Windows|Mixed Platforms - Windows|x86 = Windows|x86 - Windows|Xbox 360 = Windows|Xbox 360 - Windows|Zune = Windows|Zune - Windows8|Any CPU = Windows8|Any CPU - Windows8|Mixed Platforms = Windows8|Mixed Platforms - Windows8|x86 = Windows8|x86 - Windows8|Xbox 360 = Windows8|Xbox 360 - Windows8|Zune = Windows8|Zune EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Android|Any CPU.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Android|Mixed Platforms.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Android|Mixed Platforms.Build.0 = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Android|x86.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Android|x86.Build.0 = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Android|Xbox 360.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Android|Zune.ActiveCfg = Debug|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Debug|Any CPU.ActiveCfg = Debug|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Debug|Mixed Platforms.ActiveCfg = Debug|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Debug|Mixed Platforms.Build.0 = Debug|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Debug|x86.ActiveCfg = Debug|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Debug|x86.Build.0 = Debug|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Debug|Xbox 360.ActiveCfg = Debug|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Debug|Zune.ActiveCfg = Debug|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.iOS|Any CPU.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.iOS|Mixed Platforms.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.iOS|Mixed Platforms.Build.0 = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.iOS|x86.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.iOS|x86.Build.0 = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.iOS|Xbox 360.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.iOS|Zune.ActiveCfg = Debug|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Linux|Any CPU.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Linux|Mixed Platforms.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Linux|Mixed Platforms.Build.0 = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Linux|x86.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Linux|x86.Build.0 = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Linux|Xbox 360.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Linux|Zune.ActiveCfg = Debug|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.OSX|Any CPU.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.OSX|Mixed Platforms.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.OSX|Mixed Platforms.Build.0 = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.OSX|x86.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.OSX|x86.Build.0 = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.OSX|Xbox 360.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.OSX|Zune.ActiveCfg = Debug|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.PSM|Any CPU.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.PSM|Mixed Platforms.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.PSM|Mixed Platforms.Build.0 = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.PSM|x86.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.PSM|x86.Build.0 = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.PSM|Xbox 360.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.PSM|Zune.ActiveCfg = Debug|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Release|Any CPU.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Release|Mixed Platforms.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Release|Mixed Platforms.Build.0 = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Release|x86.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Release|x86.Build.0 = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Release|Xbox 360.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Release|Zune.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.ReleaseWithStatistics|Any CPU.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.ReleaseWithStatistics|Mixed Platforms.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.ReleaseWithStatistics|Mixed Platforms.Build.0 = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.ReleaseWithStatistics|x86.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.ReleaseWithStatistics|x86.Build.0 = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.ReleaseWithStatistics|Xbox 360.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.ReleaseWithStatistics|Zune.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Windows|Any CPU.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Windows|Mixed Platforms.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Windows|Mixed Platforms.Build.0 = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Windows|x86.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Windows|x86.Build.0 = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Windows|Xbox 360.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Windows|Zune.ActiveCfg = Debug|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Windows8|Any CPU.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Windows8|Mixed Platforms.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Windows8|Mixed Platforms.Build.0 = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Windows8|x86.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Windows8|x86.Build.0 = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Windows8|Xbox 360.ActiveCfg = Release|x86 - {1C82F1B3-6F3C-47EC-901A-E656D037F862}.Windows8|Zune.ActiveCfg = Debug|x86 - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Android|Any CPU.ActiveCfg = Android|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Android|Any CPU.Build.0 = Android|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Android|Mixed Platforms.ActiveCfg = Android|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Android|Mixed Platforms.Build.0 = Android|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Android|x86.ActiveCfg = Android|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Android|Xbox 360.ActiveCfg = Android|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Android|Zune.ActiveCfg = Android|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Debug|Any CPU.ActiveCfg = PSM|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Debug|Any CPU.Build.0 = PSM|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Debug|Mixed Platforms.ActiveCfg = PSM|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Debug|Mixed Platforms.Build.0 = PSM|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Debug|x86.ActiveCfg = PSM|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Debug|Xbox 360.ActiveCfg = PSM|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Debug|Zune.ActiveCfg = Windows8|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.iOS|Any CPU.ActiveCfg = iOS|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.iOS|Any CPU.Build.0 = iOS|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.iOS|Mixed Platforms.ActiveCfg = iOS|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.iOS|Mixed Platforms.Build.0 = iOS|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.iOS|x86.ActiveCfg = iOS|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.iOS|Xbox 360.ActiveCfg = iOS|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.iOS|Zune.ActiveCfg = iOS|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Linux|Any CPU.ActiveCfg = Linux|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Linux|Any CPU.Build.0 = Linux|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Linux|Mixed Platforms.ActiveCfg = Linux|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Linux|Mixed Platforms.Build.0 = Linux|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Linux|x86.ActiveCfg = Linux|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Linux|Xbox 360.ActiveCfg = Linux|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Linux|Zune.ActiveCfg = Linux|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.OSX|Any CPU.ActiveCfg = OSX|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.OSX|Any CPU.Build.0 = OSX|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.OSX|Mixed Platforms.ActiveCfg = OSX|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.OSX|Mixed Platforms.Build.0 = OSX|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.OSX|x86.ActiveCfg = OSX|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.OSX|Xbox 360.ActiveCfg = OSX|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.OSX|Zune.ActiveCfg = OSX|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.PSM|Any CPU.ActiveCfg = PSM|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.PSM|Any CPU.Build.0 = PSM|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.PSM|Mixed Platforms.ActiveCfg = PSM|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.PSM|Mixed Platforms.Build.0 = PSM|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.PSM|x86.ActiveCfg = PSM|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.PSM|Xbox 360.ActiveCfg = PSM|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.PSM|Zune.ActiveCfg = PSM|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Release|Any CPU.ActiveCfg = PSM|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Release|Any CPU.Build.0 = PSM|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Release|Mixed Platforms.ActiveCfg = PSM|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Release|Mixed Platforms.Build.0 = PSM|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Release|x86.ActiveCfg = PSM|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Release|Xbox 360.ActiveCfg = PSM|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Release|Zune.ActiveCfg = Windows8|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.ReleaseWithStatistics|Any CPU.ActiveCfg = PSM|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.ReleaseWithStatistics|Any CPU.Build.0 = PSM|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.ReleaseWithStatistics|Mixed Platforms.ActiveCfg = PSM|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.ReleaseWithStatistics|Mixed Platforms.Build.0 = PSM|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.ReleaseWithStatistics|x86.ActiveCfg = PSM|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.ReleaseWithStatistics|Xbox 360.ActiveCfg = PSM|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.ReleaseWithStatistics|Zune.ActiveCfg = Windows8|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Windows|Any CPU.ActiveCfg = Windows|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Windows|Any CPU.Build.0 = Windows|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Windows|Mixed Platforms.ActiveCfg = Windows|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Windows|Mixed Platforms.Build.0 = Windows|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Windows|x86.ActiveCfg = Windows|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Windows|Xbox 360.ActiveCfg = Windows|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Windows|Zune.ActiveCfg = Windows|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Windows8|Any CPU.ActiveCfg = Windows8|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Windows8|Any CPU.Build.0 = Windows8|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Windows8|Mixed Platforms.ActiveCfg = Windows8|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Windows8|Mixed Platforms.Build.0 = Windows8|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Windows8|x86.ActiveCfg = Windows8|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Windows8|Xbox 360.ActiveCfg = Windows8|Any CPU - {944BAED2-53A4-47E9-AE89-7F6C5843DE94}.Windows8|Zune.ActiveCfg = Windows8|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.Android|Any CPU.ActiveCfg = Android|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.Android|Mixed Platforms.ActiveCfg = Android|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.Android|x86.ActiveCfg = Android|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.Android|Xbox 360.ActiveCfg = Android|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.Android|Zune.ActiveCfg = Android|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.Debug|Any CPU.ActiveCfg = PSM|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.Debug|Mixed Platforms.ActiveCfg = PSM|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.Debug|x86.ActiveCfg = PSM|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.Debug|Xbox 360.ActiveCfg = PSM|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.Debug|Zune.ActiveCfg = Windows8|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.iOS|Any CPU.ActiveCfg = iOS|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.iOS|Mixed Platforms.ActiveCfg = iOS|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.iOS|x86.ActiveCfg = iOS|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.iOS|Xbox 360.ActiveCfg = iOS|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.iOS|Zune.ActiveCfg = iOS|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.Linux|Any CPU.ActiveCfg = Linux|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.Linux|Mixed Platforms.ActiveCfg = Linux|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.Linux|x86.ActiveCfg = Linux|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.Linux|Xbox 360.ActiveCfg = Linux|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.Linux|Zune.ActiveCfg = Linux|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.OSX|Any CPU.ActiveCfg = OSX|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.OSX|Mixed Platforms.ActiveCfg = OSX|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.OSX|x86.ActiveCfg = OSX|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.OSX|Xbox 360.ActiveCfg = OSX|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.OSX|Zune.ActiveCfg = OSX|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.PSM|Any CPU.ActiveCfg = PSM|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.PSM|Mixed Platforms.ActiveCfg = PSM|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.PSM|x86.ActiveCfg = PSM|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.PSM|Xbox 360.ActiveCfg = PSM|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.PSM|Zune.ActiveCfg = PSM|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.Release|Any CPU.ActiveCfg = PSM|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.Release|Mixed Platforms.ActiveCfg = PSM|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.Release|x86.ActiveCfg = PSM|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.Release|Xbox 360.ActiveCfg = PSM|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.Release|Zune.ActiveCfg = Windows8|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.ReleaseWithStatistics|Any CPU.ActiveCfg = PSM|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.ReleaseWithStatistics|Mixed Platforms.ActiveCfg = PSM|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.ReleaseWithStatistics|x86.ActiveCfg = PSM|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.ReleaseWithStatistics|Xbox 360.ActiveCfg = PSM|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.ReleaseWithStatistics|Zune.ActiveCfg = Windows8|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.Windows|Any CPU.ActiveCfg = Windows|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.Windows|Mixed Platforms.ActiveCfg = Windows|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.Windows|x86.ActiveCfg = Windows|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.Windows|Xbox 360.ActiveCfg = Windows|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.Windows|Zune.ActiveCfg = Windows|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.Windows8|Any CPU.ActiveCfg = Windows8|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.Windows8|Mixed Platforms.ActiveCfg = Windows8|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.Windows8|x86.ActiveCfg = Windows8|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.Windows8|Xbox 360.ActiveCfg = Windows8|Any CPU - {F5811120-B89A-4A2E-A0BD-551E9F06510D}.Windows8|Zune.ActiveCfg = Windows8|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Android|Any CPU.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Android|Any CPU.Build.0 = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Android|Mixed Platforms.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Android|Mixed Platforms.Build.0 = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Android|x86.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Android|Xbox 360.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Android|Zune.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Debug|Any CPU.Build.0 = Debug|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Debug|x86.ActiveCfg = Debug|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Debug|Xbox 360.ActiveCfg = Debug|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Debug|Zune.ActiveCfg = Debug|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.iOS|Any CPU.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.iOS|Any CPU.Build.0 = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.iOS|Mixed Platforms.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.iOS|Mixed Platforms.Build.0 = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.iOS|x86.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.iOS|Xbox 360.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.iOS|Zune.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Linux|Any CPU.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Linux|Any CPU.Build.0 = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Linux|Mixed Platforms.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Linux|Mixed Platforms.Build.0 = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Linux|x86.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Linux|Xbox 360.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Linux|Zune.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.OSX|Any CPU.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.OSX|Any CPU.Build.0 = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.OSX|Mixed Platforms.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.OSX|Mixed Platforms.Build.0 = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.OSX|x86.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.OSX|Xbox 360.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.OSX|Zune.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.PSM|Any CPU.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.PSM|Any CPU.Build.0 = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.PSM|Mixed Platforms.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.PSM|Mixed Platforms.Build.0 = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.PSM|x86.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.PSM|Xbox 360.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.PSM|Zune.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Release|Any CPU.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Release|Any CPU.Build.0 = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Release|x86.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Release|Xbox 360.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Release|Zune.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.ReleaseWithStatistics|Any CPU.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.ReleaseWithStatistics|Any CPU.Build.0 = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.ReleaseWithStatistics|Mixed Platforms.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.ReleaseWithStatistics|Mixed Platforms.Build.0 = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.ReleaseWithStatistics|x86.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.ReleaseWithStatistics|Xbox 360.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.ReleaseWithStatistics|Zune.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Windows|Any CPU.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Windows|Any CPU.Build.0 = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Windows|Mixed Platforms.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Windows|Mixed Platforms.Build.0 = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Windows|x86.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Windows|Xbox 360.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Windows|Zune.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Windows8|Any CPU.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Windows8|Any CPU.Build.0 = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Windows8|Mixed Platforms.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Windows8|Mixed Platforms.Build.0 = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Windows8|x86.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Windows8|Xbox 360.ActiveCfg = Release|Any CPU - {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Windows8|Zune.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Android|Any CPU.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Android|Any CPU.Build.0 = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Android|Mixed Platforms.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Android|Mixed Platforms.Build.0 = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Android|x86.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Android|Xbox 360.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Android|Zune.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Debug|Any CPU.Build.0 = Debug|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Debug|x86.ActiveCfg = Debug|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Debug|Xbox 360.ActiveCfg = Debug|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Debug|Zune.ActiveCfg = Debug|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.iOS|Any CPU.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.iOS|Any CPU.Build.0 = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.iOS|Mixed Platforms.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.iOS|Mixed Platforms.Build.0 = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.iOS|x86.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.iOS|Xbox 360.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.iOS|Zune.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Linux|Any CPU.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Linux|Any CPU.Build.0 = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Linux|Mixed Platforms.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Linux|Mixed Platforms.Build.0 = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Linux|x86.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Linux|Xbox 360.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Linux|Zune.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.OSX|Any CPU.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.OSX|Any CPU.Build.0 = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.OSX|Mixed Platforms.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.OSX|Mixed Platforms.Build.0 = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.OSX|x86.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.OSX|Xbox 360.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.OSX|Zune.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.PSM|Any CPU.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.PSM|Any CPU.Build.0 = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.PSM|Mixed Platforms.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.PSM|Mixed Platforms.Build.0 = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.PSM|x86.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.PSM|Xbox 360.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.PSM|Zune.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Release|Any CPU.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Release|Any CPU.Build.0 = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Release|x86.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Release|Xbox 360.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Release|Zune.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.ReleaseWithStatistics|Any CPU.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.ReleaseWithStatistics|Any CPU.Build.0 = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.ReleaseWithStatistics|Mixed Platforms.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.ReleaseWithStatistics|Mixed Platforms.Build.0 = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.ReleaseWithStatistics|x86.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.ReleaseWithStatistics|Xbox 360.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.ReleaseWithStatistics|Zune.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Windows|Any CPU.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Windows|Any CPU.Build.0 = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Windows|Mixed Platforms.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Windows|Mixed Platforms.Build.0 = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Windows|x86.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Windows|Xbox 360.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Windows|Zune.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Windows8|Any CPU.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Windows8|Any CPU.Build.0 = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Windows8|Mixed Platforms.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Windows8|Mixed Platforms.Build.0 = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Windows8|x86.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Windows8|Xbox 360.ActiveCfg = Release|Any CPU - {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Windows8|Zune.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Android|Any CPU.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Android|Any CPU.Build.0 = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Android|Mixed Platforms.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Android|Mixed Platforms.Build.0 = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Android|x86.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Android|Xbox 360.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Android|Zune.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Debug|Any CPU.Build.0 = Debug|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Debug|x86.ActiveCfg = Debug|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Debug|Xbox 360.ActiveCfg = Debug|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Debug|Zune.ActiveCfg = Debug|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.iOS|Any CPU.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.iOS|Any CPU.Build.0 = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.iOS|Mixed Platforms.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.iOS|Mixed Platforms.Build.0 = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.iOS|x86.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.iOS|Xbox 360.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.iOS|Zune.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Linux|Any CPU.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Linux|Any CPU.Build.0 = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Linux|Mixed Platforms.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Linux|Mixed Platforms.Build.0 = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Linux|x86.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Linux|Xbox 360.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Linux|Zune.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.OSX|Any CPU.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.OSX|Any CPU.Build.0 = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.OSX|Mixed Platforms.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.OSX|Mixed Platforms.Build.0 = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.OSX|x86.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.OSX|Xbox 360.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.OSX|Zune.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.PSM|Any CPU.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.PSM|Any CPU.Build.0 = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.PSM|Mixed Platforms.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.PSM|Mixed Platforms.Build.0 = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.PSM|x86.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.PSM|Xbox 360.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.PSM|Zune.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Release|Any CPU.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Release|Any CPU.Build.0 = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Release|x86.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Release|Xbox 360.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Release|Zune.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.ReleaseWithStatistics|Any CPU.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.ReleaseWithStatistics|Any CPU.Build.0 = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.ReleaseWithStatistics|Mixed Platforms.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.ReleaseWithStatistics|Mixed Platforms.Build.0 = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.ReleaseWithStatistics|x86.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.ReleaseWithStatistics|Xbox 360.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.ReleaseWithStatistics|Zune.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Windows|Any CPU.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Windows|Any CPU.Build.0 = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Windows|Mixed Platforms.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Windows|Mixed Platforms.Build.0 = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Windows|x86.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Windows|Xbox 360.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Windows|Zune.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Windows8|Any CPU.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Windows8|Any CPU.Build.0 = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Windows8|Mixed Platforms.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Windows8|Mixed Platforms.Build.0 = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Windows8|x86.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Windows8|Xbox 360.ActiveCfg = Release|Any CPU - {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Windows8|Zune.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Android|Any CPU.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Android|Any CPU.Build.0 = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Android|Mixed Platforms.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Android|Mixed Platforms.Build.0 = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Android|x86.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Android|Xbox 360.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Android|Zune.ActiveCfg = Release|Any CPU + {8B1B6A0B-2F48-4FB4-936A-2086505B2914}.Debug|Any CPU.ActiveCfg = Debug|x86 + {8B1B6A0B-2F48-4FB4-936A-2086505B2914}.Debug|x86.ActiveCfg = Debug|x86 + {8B1B6A0B-2F48-4FB4-936A-2086505B2914}.Debug|x86.Build.0 = Debug|x86 + {8B1B6A0B-2F48-4FB4-936A-2086505B2914}.Release|Any CPU.ActiveCfg = Release|x86 + {8B1B6A0B-2F48-4FB4-936A-2086505B2914}.Release|x86.ActiveCfg = Release|x86 + {8B1B6A0B-2F48-4FB4-936A-2086505B2914}.Release|x86.Build.0 = Release|x86 {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Debug|Any CPU.Build.0 = Debug|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Debug|x86.ActiveCfg = Debug|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Debug|Xbox 360.ActiveCfg = Debug|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Debug|Zune.ActiveCfg = Debug|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.iOS|Any CPU.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.iOS|Any CPU.Build.0 = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.iOS|Mixed Platforms.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.iOS|Mixed Platforms.Build.0 = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.iOS|x86.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.iOS|Xbox 360.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.iOS|Zune.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Linux|Any CPU.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Linux|Any CPU.Build.0 = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Linux|Mixed Platforms.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Linux|Mixed Platforms.Build.0 = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Linux|x86.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Linux|Xbox 360.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Linux|Zune.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.OSX|Any CPU.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.OSX|Any CPU.Build.0 = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.OSX|Mixed Platforms.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.OSX|Mixed Platforms.Build.0 = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.OSX|x86.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.OSX|Xbox 360.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.OSX|Zune.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.PSM|Any CPU.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.PSM|Any CPU.Build.0 = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.PSM|Mixed Platforms.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.PSM|Mixed Platforms.Build.0 = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.PSM|x86.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.PSM|Xbox 360.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.PSM|Zune.ActiveCfg = Release|Any CPU + {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Debug|x86.Build.0 = Debug|Any CPU {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Release|Any CPU.ActiveCfg = Release|Any CPU {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Release|Any CPU.Build.0 = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Release|Mixed Platforms.Build.0 = Release|Any CPU {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Release|x86.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Release|Xbox 360.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Release|Zune.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.ReleaseWithStatistics|Any CPU.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.ReleaseWithStatistics|Any CPU.Build.0 = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.ReleaseWithStatistics|Mixed Platforms.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.ReleaseWithStatistics|Mixed Platforms.Build.0 = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.ReleaseWithStatistics|x86.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.ReleaseWithStatistics|Xbox 360.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.ReleaseWithStatistics|Zune.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Windows|Any CPU.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Windows|Any CPU.Build.0 = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Windows|Mixed Platforms.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Windows|Mixed Platforms.Build.0 = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Windows|x86.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Windows|Xbox 360.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Windows|Zune.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Windows8|Any CPU.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Windows8|Any CPU.Build.0 = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Windows8|Mixed Platforms.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Windows8|Mixed Platforms.Build.0 = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Windows8|x86.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Windows8|Xbox 360.ActiveCfg = Release|Any CPU - {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Windows8|Zune.ActiveCfg = Release|Any CPU + {BA98D4CA-718B-4E50-AD4D-F48E8CA67624}.Release|x86.Build.0 = Release|Any CPU + {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Debug|x86.ActiveCfg = Debug|Any CPU + {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Debug|x86.Build.0 = Debug|Any CPU + {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Release|Any CPU.Build.0 = Release|Any CPU + {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Release|x86.ActiveCfg = Release|Any CPU + {49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Release|x86.Build.0 = Release|Any CPU + {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Debug|x86.ActiveCfg = Debug|Any CPU + {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Debug|x86.Build.0 = Debug|Any CPU + {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Release|Any CPU.Build.0 = Release|Any CPU + {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Release|x86.ActiveCfg = Release|Any CPU + {AC5F1CD8-AA8E-4DB5-814F-86C214175841}.Release|x86.Build.0 = Release|Any CPU + {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Debug|x86.ActiveCfg = Debug|Any CPU + {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Debug|x86.Build.0 = Debug|Any CPU + {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Release|Any CPU.Build.0 = Release|Any CPU + {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Release|x86.ActiveCfg = Release|Any CPU + {9BFE240A-AEE0-4FD6-80B8-5846DCFAE95C}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution - {E6EF59CA-FDE1-4AE8-8A8F-3C83D8730EE3} = {91E40179-82B4-46A6-ACA4-F1CE7A36C0F6} - EndGlobalSection - GlobalSection(TestCaseManagementSettings) = postSolution - CategoryFile = GravityForce1.vsmdi + {49BA1C69-6104-41AC-A5D8-B54FA9F696E8} = {AC34EB05-CB95-4A1E-8C75-FE74BA4A1DD9} + {AC5F1CD8-AA8E-4DB5-814F-86C214175841} = {AC34EB05-CB95-4A1E-8C75-FE74BA4A1DD9} EndGlobalSection EndGlobal diff --git a/SpacePew.Content/SpacePew.ContentContent/Audio/Waves/beep.wav b/SpacePew/Content/Audio/Waves/beep.wav similarity index 100% rename from SpacePew.Content/SpacePew.ContentContent/Audio/Waves/beep.wav rename to SpacePew/Content/Audio/Waves/beep.wav diff --git a/SpacePew.Content/SpacePew.ContentContent/Audio/Waves/bingo.wav b/SpacePew/Content/Audio/Waves/bingo.wav similarity index 100% rename from SpacePew.Content/SpacePew.ContentContent/Audio/Waves/bingo.wav rename to SpacePew/Content/Audio/Waves/bingo.wav diff --git a/SpacePew.Content/SpacePew.ContentContent/Audio/Waves/bullet_hit.wav b/SpacePew/Content/Audio/Waves/bullet_hit.wav similarity index 100% rename from SpacePew.Content/SpacePew.ContentContent/Audio/Waves/bullet_hit.wav rename to SpacePew/Content/Audio/Waves/bullet_hit.wav diff --git a/SpacePew.Content/SpacePew.ContentContent/Audio/Waves/bullet_sound.wav b/SpacePew/Content/Audio/Waves/bullet_sound.wav similarity index 100% rename from SpacePew.Content/SpacePew.ContentContent/Audio/Waves/bullet_sound.wav rename to SpacePew/Content/Audio/Waves/bullet_sound.wav diff --git a/SpacePew.Content/SpacePew.ContentContent/Audio/Waves/engine.wav b/SpacePew/Content/Audio/Waves/engine.wav similarity index 100% rename from SpacePew.Content/SpacePew.ContentContent/Audio/Waves/engine.wav rename to SpacePew/Content/Audio/Waves/engine.wav diff --git a/SpacePew.Content/SpacePew.ContentContent/Audio/Waves/explosion.wav b/SpacePew/Content/Audio/Waves/explosion.wav similarity index 100% rename from SpacePew.Content/SpacePew.ContentContent/Audio/Waves/explosion.wav rename to SpacePew/Content/Audio/Waves/explosion.wav diff --git a/SpacePew.Content/SpacePew.ContentContent/Audio/Waves/land.wav b/SpacePew/Content/Audio/Waves/land.wav similarity index 100% rename from SpacePew.Content/SpacePew.ContentContent/Audio/Waves/land.wav rename to SpacePew/Content/Audio/Waves/land.wav diff --git a/SpacePew.Content/SpacePew.ContentContent/Audio/Waves/message.wav b/SpacePew/Content/Audio/Waves/message.wav similarity index 100% rename from SpacePew.Content/SpacePew.ContentContent/Audio/Waves/message.wav rename to SpacePew/Content/Audio/Waves/message.wav diff --git a/SpacePew.Content/SpacePew.ContentContent/Audio/Waves/thump.wav b/SpacePew/Content/Audio/Waves/thump.wav similarity index 100% rename from SpacePew.Content/SpacePew.ContentContent/Audio/Waves/thump.wav rename to SpacePew/Content/Audio/Waves/thump.wav diff --git a/SpacePew/Content/Content.mgcb b/SpacePew/Content/Content.mgcb new file mode 100644 index 0000000..05a9ad3 --- /dev/null +++ b/SpacePew/Content/Content.mgcb @@ -0,0 +1,214 @@ + +#----------------------------- Global Properties ----------------------------# + +/outputDir:bin +/intermediateDir:obj +/platform:Windows +/config: +/profile:Reach +/compress:False + +#-------------------------------- References --------------------------------# + + +#---------------------------------- Content ---------------------------------# + +#begin Fonts/ConsoleFont.spritefont +/importer:FontDescriptionImporter +/processor:FontDescriptionProcessor +/processorParam:TextureFormat=Compressed +/build:Fonts/ConsoleFont.spritefont + +#begin Fonts/NetFont.spritefont +/importer:FontDescriptionImporter +/processor:FontDescriptionProcessor +/processorParam:TextureFormat=Compressed +/build:Fonts/NetFont.spritefont + +#begin Fonts/ScoreBoardFont.spritefont +/importer:FontDescriptionImporter +/processor:FontDescriptionProcessor +/processorParam:TextureFormat=Compressed +/build:Fonts/ScoreBoardFont.spritefont + +#begin Audio/Waves/bingo.wav +/importer:WavImporter +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:Audio/Waves/bingo.wav + +#begin Audio/Waves/bullet_hit.wav +/importer:WavImporter +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:Audio/Waves/bullet_hit.wav + +#begin Audio/Waves/bullet_sound.wav +/importer:WavImporter +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:Audio/Waves/bullet_sound.wav + +#begin Audio/Waves/engine.wav +/importer:WavImporter +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:Audio/Waves/engine.wav + +#begin Audio/Waves/explosion.wav +/importer:WavImporter +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:Audio/Waves/explosion.wav + +#begin Audio/Waves/land.wav +/importer:WavImporter +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:Audio/Waves/land.wav + +#begin Audio/Waves/thump.wav +/importer:WavImporter +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:Audio/Waves/thump.wav + +#begin bullet.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:TextureFormat=Color +/build:bullet.png + +#begin explosion.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:TextureFormat=Color +/build:explosion.png + +#begin explosion_small.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:TextureFormat=Color +/build:explosion_small.png + +#begin longshot.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:TextureFormat=Color +/build:longshot.png + +#begin ParticleTextures/explosion.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:TextureFormat=Color +/build:ParticleTextures/explosion.png + +#begin ParticleTextures/smoke.bmp +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:TextureFormat=Color +/build:ParticleTextures/smoke.bmp + +#begin player.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:TextureFormat=Color +/build:player.png + +#begin player_thrusting.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:TextureFormat=Color +/build:player_thrusting.png + +#begin scoreboard.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:TextureFormat=Color +/build:scoreboard.png + +#begin stars.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:TextureFormat=Color +/build:stars.png + +#begin transparent_pixel.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:TextureFormat=Color +/build:transparent_pixel.png + +#begin Fonts/Default.spritefont +/importer:FontDescriptionImporter +/processor:FontDescriptionProcessor +/processorParam:TextureFormat=Compressed +/build:Fonts/Default.spritefont + +#begin Audio/Waves/beep.wav +/importer:WavImporter +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:Audio/Waves/beep.wav + +#begin Audio/Waves/message.wav +/importer:WavImporter +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:Audio/Waves/message.wav + diff --git a/SpacePew.Content/SpacePew.ContentContent/Fonts/ConsoleFont.spritefont b/SpacePew/Content/Fonts/ConsoleFont.spritefont similarity index 100% rename from SpacePew.Content/SpacePew.ContentContent/Fonts/ConsoleFont.spritefont rename to SpacePew/Content/Fonts/ConsoleFont.spritefont diff --git a/SpacePew.Content/SpacePew.ContentContent/Fonts/Default.spritefont b/SpacePew/Content/Fonts/Default.spritefont similarity index 100% rename from SpacePew.Content/SpacePew.ContentContent/Fonts/Default.spritefont rename to SpacePew/Content/Fonts/Default.spritefont diff --git a/SpacePew.Content/SpacePew.ContentContent/Fonts/NetFont.spritefont b/SpacePew/Content/Fonts/NetFont.spritefont similarity index 100% rename from SpacePew.Content/SpacePew.ContentContent/Fonts/NetFont.spritefont rename to SpacePew/Content/Fonts/NetFont.spritefont diff --git a/SpacePew.Content/SpacePew.ContentContent/Fonts/ScoreBoardFont.spritefont b/SpacePew/Content/Fonts/ScoreBoardFont.spritefont similarity index 100% rename from SpacePew.Content/SpacePew.ContentContent/Fonts/ScoreBoardFont.spritefont rename to SpacePew/Content/Fonts/ScoreBoardFont.spritefont diff --git a/SpacePew.Content/SpacePew.ContentContent/ParticleTextures/explosion.png b/SpacePew/Content/ParticleTextures/explosion.png similarity index 100% rename from SpacePew.Content/SpacePew.ContentContent/ParticleTextures/explosion.png rename to SpacePew/Content/ParticleTextures/explosion.png diff --git a/SpacePew.Content/SpacePew.ContentContent/ParticleTextures/smoke.bmp b/SpacePew/Content/ParticleTextures/smoke.bmp similarity index 100% rename from SpacePew.Content/SpacePew.ContentContent/ParticleTextures/smoke.bmp rename to SpacePew/Content/ParticleTextures/smoke.bmp diff --git a/SpacePew.Content/SpacePew.ContentContent/SpacePew.ContentContent.contentproj b/SpacePew/Content/SpacePew.ContentContent.contentproj similarity index 100% rename from SpacePew.Content/SpacePew.ContentContent/SpacePew.ContentContent.contentproj rename to SpacePew/Content/SpacePew.ContentContent.contentproj diff --git a/SpacePew/Content/SpacePew.ContentContent.mgcb b/SpacePew/Content/SpacePew.ContentContent.mgcb new file mode 100644 index 0000000..05a9ad3 --- /dev/null +++ b/SpacePew/Content/SpacePew.ContentContent.mgcb @@ -0,0 +1,214 @@ + +#----------------------------- Global Properties ----------------------------# + +/outputDir:bin +/intermediateDir:obj +/platform:Windows +/config: +/profile:Reach +/compress:False + +#-------------------------------- References --------------------------------# + + +#---------------------------------- Content ---------------------------------# + +#begin Fonts/ConsoleFont.spritefont +/importer:FontDescriptionImporter +/processor:FontDescriptionProcessor +/processorParam:TextureFormat=Compressed +/build:Fonts/ConsoleFont.spritefont + +#begin Fonts/NetFont.spritefont +/importer:FontDescriptionImporter +/processor:FontDescriptionProcessor +/processorParam:TextureFormat=Compressed +/build:Fonts/NetFont.spritefont + +#begin Fonts/ScoreBoardFont.spritefont +/importer:FontDescriptionImporter +/processor:FontDescriptionProcessor +/processorParam:TextureFormat=Compressed +/build:Fonts/ScoreBoardFont.spritefont + +#begin Audio/Waves/bingo.wav +/importer:WavImporter +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:Audio/Waves/bingo.wav + +#begin Audio/Waves/bullet_hit.wav +/importer:WavImporter +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:Audio/Waves/bullet_hit.wav + +#begin Audio/Waves/bullet_sound.wav +/importer:WavImporter +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:Audio/Waves/bullet_sound.wav + +#begin Audio/Waves/engine.wav +/importer:WavImporter +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:Audio/Waves/engine.wav + +#begin Audio/Waves/explosion.wav +/importer:WavImporter +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:Audio/Waves/explosion.wav + +#begin Audio/Waves/land.wav +/importer:WavImporter +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:Audio/Waves/land.wav + +#begin Audio/Waves/thump.wav +/importer:WavImporter +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:Audio/Waves/thump.wav + +#begin bullet.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:TextureFormat=Color +/build:bullet.png + +#begin explosion.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:TextureFormat=Color +/build:explosion.png + +#begin explosion_small.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:TextureFormat=Color +/build:explosion_small.png + +#begin longshot.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:TextureFormat=Color +/build:longshot.png + +#begin ParticleTextures/explosion.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:TextureFormat=Color +/build:ParticleTextures/explosion.png + +#begin ParticleTextures/smoke.bmp +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:TextureFormat=Color +/build:ParticleTextures/smoke.bmp + +#begin player.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:TextureFormat=Color +/build:player.png + +#begin player_thrusting.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:TextureFormat=Color +/build:player_thrusting.png + +#begin scoreboard.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:TextureFormat=Color +/build:scoreboard.png + +#begin stars.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:TextureFormat=Color +/build:stars.png + +#begin transparent_pixel.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:TextureFormat=Color +/build:transparent_pixel.png + +#begin Fonts/Default.spritefont +/importer:FontDescriptionImporter +/processor:FontDescriptionProcessor +/processorParam:TextureFormat=Compressed +/build:Fonts/Default.spritefont + +#begin Audio/Waves/beep.wav +/importer:WavImporter +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:Audio/Waves/beep.wav + +#begin Audio/Waves/message.wav +/importer:WavImporter +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:Audio/Waves/message.wav + diff --git a/SpacePew.Content/SpacePew.ContentContent/bullet.png b/SpacePew/Content/bullet.png similarity index 100% rename from SpacePew.Content/SpacePew.ContentContent/bullet.png rename to SpacePew/Content/bullet.png diff --git a/SpacePew.Content/SpacePew.ContentContent/explosion.png b/SpacePew/Content/explosion.png similarity index 100% rename from SpacePew.Content/SpacePew.ContentContent/explosion.png rename to SpacePew/Content/explosion.png diff --git a/SpacePew.Content/SpacePew.ContentContent/explosion_small.png b/SpacePew/Content/explosion_small.png similarity index 100% rename from SpacePew.Content/SpacePew.ContentContent/explosion_small.png rename to SpacePew/Content/explosion_small.png diff --git a/SpacePew.Content/SpacePew.ContentContent/longshot.png b/SpacePew/Content/longshot.png similarity index 100% rename from SpacePew.Content/SpacePew.ContentContent/longshot.png rename to SpacePew/Content/longshot.png diff --git a/SpacePew.Content/SpacePew.ContentContent/player.png b/SpacePew/Content/player.png similarity index 100% rename from SpacePew.Content/SpacePew.ContentContent/player.png rename to SpacePew/Content/player.png diff --git a/SpacePew.Content/SpacePew.ContentContent/player_thrusting.png b/SpacePew/Content/player_thrusting.png similarity index 100% rename from SpacePew.Content/SpacePew.ContentContent/player_thrusting.png rename to SpacePew/Content/player_thrusting.png diff --git a/SpacePew.Content/SpacePew.ContentContent/scoreboard.png b/SpacePew/Content/scoreboard.png similarity index 100% rename from SpacePew.Content/SpacePew.ContentContent/scoreboard.png rename to SpacePew/Content/scoreboard.png diff --git a/SpacePew.Content/SpacePew.ContentContent/stars.png b/SpacePew/Content/stars.png similarity index 100% rename from SpacePew.Content/SpacePew.ContentContent/stars.png rename to SpacePew/Content/stars.png diff --git a/SpacePew.Content/SpacePew.ContentContent/transparent_pixel.png b/SpacePew/Content/transparent_pixel.png similarity index 100% rename from SpacePew.Content/SpacePew.ContentContent/transparent_pixel.png rename to SpacePew/Content/transparent_pixel.png diff --git a/SpacePew/Game1.cs b/SpacePew/Game1.cs new file mode 100644 index 0000000..6afaeb7 --- /dev/null +++ b/SpacePew/Game1.cs @@ -0,0 +1,83 @@ +using Microsoft.Xna.Framework; +using Microsoft.Xna.Framework.Graphics; +using Microsoft.Xna.Framework.Input; + +namespace SpacePew +{ + /// + /// This is the main type for your game. + /// + public class Game1 : Game + { + GraphicsDeviceManager graphics; + SpriteBatch spriteBatch; + + public Game1() + { + graphics = new GraphicsDeviceManager(this); + Content.RootDirectory = "Content"; + } + + /// + /// Allows the game to perform any initialization it needs to before starting to run. + /// This is where it can query for any required services and load any non-graphic + /// related content. Calling base.Initialize will enumerate through any components + /// and initialize them as well. + /// + protected override void Initialize() + { + // TODO: Add your initialization logic here + + base.Initialize(); + } + + /// + /// LoadContent will be called once per game and is the place to load + /// all of your content. + /// + protected override void LoadContent() + { + // Create a new SpriteBatch, which can be used to draw textures. + spriteBatch = new SpriteBatch(GraphicsDevice); + + // TODO: use this.Content to load your game content here + } + + /// + /// UnloadContent will be called once per game and is the place to unload + /// game-specific content. + /// + protected override void UnloadContent() + { + // TODO: Unload any non ContentManager content here + } + + /// + /// Allows the game to run logic such as updating the world, + /// checking for collisions, gathering input, and playing audio. + /// + /// Provides a snapshot of timing values. + protected override void Update(GameTime gameTime) + { + if (GamePad.GetState(PlayerIndex.One).Buttons.Back == ButtonState.Pressed || Keyboard.GetState().IsKeyDown(Keys.Escape)) + Exit(); + + // TODO: Add your update logic here + + base.Update(gameTime); + } + + /// + /// This is called when the game should draw itself. + /// + /// Provides a snapshot of timing values. + protected override void Draw(GameTime gameTime) + { + GraphicsDevice.Clear(Color.CornflowerBlue); + + // TODO: Add your drawing code here + + base.Draw(gameTime); + } + } +} diff --git a/SpacePew/MainGame.cs b/SpacePew/MainGame.cs index 3543ba4..21f201f 100644 --- a/SpacePew/MainGame.cs +++ b/SpacePew/MainGame.cs @@ -15,7 +15,6 @@ using Color = Microsoft.Xna.Framework.Color; using Rectangle = Microsoft.Xna.Framework.Rectangle; using SpacePew.Extensions; using System.Linq; -using System.Windows.Forms; namespace SpacePew { @@ -139,7 +138,7 @@ namespace SpacePew _graphics.CreateDevice(); - Cursor.Hide(); + //Cursor.Hide(); _graphics.PreferredBackBufferWidth = 1366; _graphics.PreferredBackBufferHeight = 768; diff --git a/SpacePew/Networking/NetworkMessenger.cs b/SpacePew/Networking/NetworkMessenger.cs index c743e4b..eae9d5c 100644 --- a/SpacePew/Networking/NetworkMessenger.cs +++ b/SpacePew/Networking/NetworkMessenger.cs @@ -5,11 +5,9 @@ using System.Linq; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Audio; using Microsoft.Xna.Framework.Content; -using Microsoft.Xna.Framework.GamerServices; using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Input; using Microsoft.Xna.Framework.Media; -using Microsoft.Xna.Framework.Net; using Microsoft.Xna.Framework.Storage; using SpacePew.Models; diff --git a/SpacePew/Networking/ScoreBoard.cs b/SpacePew/Networking/ScoreBoard.cs index db63320..8566971 100644 --- a/SpacePew/Networking/ScoreBoard.cs +++ b/SpacePew/Networking/ScoreBoard.cs @@ -5,11 +5,9 @@ using System.Linq; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Audio; using Microsoft.Xna.Framework.Content; -using Microsoft.Xna.Framework.GamerServices; using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Input; using Microsoft.Xna.Framework.Media; -using Microsoft.Xna.Framework.Net; using Microsoft.Xna.Framework.Storage; using SpacePew.Models; diff --git a/SpacePew/Networking/UdpNetworkGui.cs b/SpacePew/Networking/UdpNetworkGui.cs index 8bf4b3e..c070972 100644 --- a/SpacePew/Networking/UdpNetworkGui.cs +++ b/SpacePew/Networking/UdpNetworkGui.cs @@ -4,11 +4,9 @@ using System.Linq; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Audio; using Microsoft.Xna.Framework.Content; -using Microsoft.Xna.Framework.GamerServices; using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Input; using Microsoft.Xna.Framework.Media; -using Microsoft.Xna.Framework.Net; using Microsoft.Xna.Framework.Storage; using System.Threading; using SpacePew.Models; diff --git a/SpacePew/SpacePew.csproj b/SpacePew/SpacePew.csproj index 6b869d2..996fd13 100644 --- a/SpacePew/SpacePew.csproj +++ b/SpacePew/SpacePew.csproj @@ -5,30 +5,17 @@ x86 8.0.30703 2.0 - {1C82F1B3-6F3C-47EC-901A-E656D037F862} + {8B1B6A0B-2F48-4FB4-936A-2086505B2914} WinExe Properties SpacePew SpacePew 512 - publish\ - true - Disk - false - Foreground - 7 - Days - false - false - true - 0 - 1.0.0.%2a - false - false - true - v4.5.1 - - + Windows + + + v4.6 + x86 @@ -62,6 +49,7 @@ + @@ -110,49 +98,37 @@ - + False ..\Library\ICSharpCode.SharpZipLib.dll - + + $(MSBuildProgramFiles32)\MonoGame\v3.0\Assemblies\Windows\MonoGame.Framework.dll + + False - C:\Program Files (x86)\MonoGame\v3.0\Assemblies\Windows\MonoGame.Framework.dll + C:\Program Files (x86)\MonoGame\v3.0\Assemblies\Windows\MonoGame.Framework.Net.dll ..\Library\NAudio.dll + + ..\Library\NAudio.WindowsMediaFormat.dll + ..\Library\NVorbis.dll ..\Library\NVorbis.NAudioSupport.dll - - False - C:\Program Files (x86)\MonoGame\v3.0\Assemblies\Windows\SharpDX.dll - - - False - C:\Program Files (x86)\MonoGame\v3.0\Assemblies\Windows\SharpDX.Direct3D11.dll - - - False - C:\Program Files (x86)\MonoGame\v3.0\Assemblies\Windows\SharpDX.MediaFoundation.dll - - - False - C:\Program Files (x86)\MonoGame\v3.0\Assemblies\Windows\SharpDX.XAudio2.dll + + ..\Library\NVorbis.OpenTKSupport.dll - - - SDL.dll - Always - PreserveNewest @@ -161,44 +137,7 @@ - - {49ba1c69-6104-41ac-a5d8-b54fa9f696e8} - Lidgren.Network - - - {ac5f1cd8-aa8e-4db5-814f-86c214175841} - TomShane.Neoforce.Controls - - - {ba98d4ca-718b-4e50-ad4d-f48e8ca67624} - SpacePew.Common - - - {944baed2-53a4-47e9-ae89-7f6c5843de94} - SpacePew.Content - - - - - False - Microsoft .NET Framework 4 %28x86 and x64%29 - true - - - False - .NET Framework 3.5 SP1 Client Profile - false - - - False - .NET Framework 3.5 SP1 - false - - - False - Windows Installer 4.5 - true - + @@ -221,11 +160,22 @@ PreserveNewest + + + {49ba1c69-6104-41ac-a5d8-b54fa9f696e8} + Lidgren.Network + + + {ac5f1cd8-aa8e-4db5-814f-86c214175841} + TomShane.Neoforce.Controls + + + {ba98d4ca-718b-4e50-ad4d-f48e8ca67624} + SpacePew.Common + + - - - - +