GAM456-SpaceInvaders / SpaceInvaders / SpaceInvaders.csproj
SpaceInvaders.csproj
Raw
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProjectGuid>{24756376-AB42-4ADA-A243-7928AE596B22}</ProjectGuid>
    <OutputType>Exe</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>SpaceInvaders</RootNamespace>
    <AssemblyName>SpaceInvaders</AssemblyName>
    <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
    <FileAlignment>512</FileAlignment>
    <IsWebBootstrapper>false</IsWebBootstrapper>
    <TargetFrameworkProfile />
    <PublishUrl>publish\</PublishUrl>
    <Install>true</Install>
    <InstallFrom>Disk</InstallFrom>
    <UpdateEnabled>false</UpdateEnabled>
    <UpdateMode>Foreground</UpdateMode>
    <UpdateInterval>7</UpdateInterval>
    <UpdateIntervalUnits>Days</UpdateIntervalUnits>
    <UpdatePeriodically>false</UpdatePeriodically>
    <UpdateRequired>false</UpdateRequired>
    <MapFileExtensions>true</MapFileExtensions>
    <ApplicationRevision>0</ApplicationRevision>
    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
    <UseApplicationTrust>false</UseApplicationTrust>
    <BootstrapperEnabled>true</BootstrapperEnabled>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <PlatformTarget>x86</PlatformTarget>
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>bin\Debug\</OutputPath>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <PlatformTarget>x86</PlatformTarget>
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>bin\Release\</OutputPath>
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="AzulCoreCLRDebug">
      <HintPath>Resources\AzulCoreCLRDebug.dll</HintPath>
    </Reference>
    <Reference Include="irrKlang.NET4">
      <HintPath>Resources\irrKlang.NET4.dll</HintPath>
    </Reference>
    <Reference Include="System" />
    <Reference Include="System.Core" />
    <Reference Include="System.Xml.Linq" />
    <Reference Include="System.Data.DataSetExtensions" />
    <Reference Include="Microsoft.CSharp" />
    <Reference Include="System.Data" />
    <Reference Include="System.Xml" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="0_Input\InputObserver.cs" />
    <Compile Include="0_Input\InputSubject.cs" />
    <Compile Include="0_Input\Observers\StateObserver.cs" />
    <Compile Include="0_Input\Observers\ToggleObserver.cs" />
    <Compile Include="0_Input\Simulation.cs" />
    <Compile Include="0_Manager\Manager.cs" />
    <Compile Include="0_Manager\DLink\DLink.cs" />
    <Compile Include="0_Manager\DLink\DLinkIterator.cs" />
    <Compile Include="0_Manager\DLink\DLinkMan.cs" />
    <Compile Include="1_Sprite\SpriteProxy\NullProxy.cs" />
    <Compile Include="3_Timer\Commands\AnimateGrid.cs" />
    <Compile Include="3_Timer\Commands\AnimateUFO.cs" />
    <Compile Include="3_Timer\Commands\AnimateBombDrop.cs" />
    <Compile Include="3_Timer\Commands\Attract1.cs" />
    <Compile Include="3_Timer\Commands\Attract2.cs" />
    <Compile Include="3_Timer\Commands\DeployUFO.cs" />
    <Compile Include="3_Timer\Commands\PlayAlienSounds.cs" />
    <Compile Include="3_Timer\Commands\ReviveShip.cs" />
    <Compile Include="3_Timer\GlobalTimer.cs" />
    <Compile Include="4_GameObject\Aliens\AlienColumn.cs" />
    <Compile Include="4_GameObject\Aliens\AlienFactory.cs" />
    <Compile Include="4_GameObject\Aliens\AlienGrid.cs" />
    <Compile Include="4_GameObject\Aliens\Aliens.cs" />
    <Compile Include="4_GameObject\Aliens\CrabAlien.cs" />
    <Compile Include="4_GameObject\Aliens\UFOAlienRoot.cs" />
    <Compile Include="4_GameObject\Bomb\Bombs.cs" />
    <Compile Include="4_GameObject\Bumper\BumperRoot.cs" />
    <Compile Include="4_GameObject\Bumper\Bumpers.cs" />
    <Compile Include="4_GameObject\DelayObjectMan.cs" />
    <Compile Include="4_GameObject\GhostMan.cs" />
    <Compile Include="4_GameObject\Missile\MissileGroup.cs" />
    <Compile Include="4_GameObject\Shield\ShieldBrick.cs" />
    <Compile Include="4_GameObject\Shield\ShieldFactory.cs" />
    <Compile Include="4_GameObject\Bumper\LeftBumper.cs" />
    <Compile Include="4_GameObject\Bumper\RightBumper.cs" />
    <Compile Include="4_GameObject\Ship\MissileState\ShipMissileFlying.cs" />
    <Compile Include="4_GameObject\Ship\MissileState\ShipMissileReady.cs" />
    <Compile Include="4_GameObject\Ship\ShipRoot.cs" />
    <Compile Include="4_GameObject\Walls\WallGroup.cs" />
    <Compile Include="4_GameObject\Walls\Walls.cs" />
    <Compile Include="5_Composite\Component.cs" />
    <Compile Include="5_Composite\Composite.cs" />
    <Compile Include="5_Composite\ForwardIterator.cs" />
    <Compile Include="4_GameObject\Walls\BottomWall.cs" />
    <Compile Include="6_Collision\CollisionObject.cs" />
    <Compile Include="6_Collision\CollisionPair.cs" />
    <Compile Include="6_Collision\CollisionPairMan.cs" />
    <Compile Include="6_Collision\CollisionRect.cs" />
    <Compile Include="6_Collision\AlienObservers\InvaderDeathObserver.cs" />
    <Compile Include="6_Collision\SystemObservers\PlayerPointsObserver.cs" />
    <Compile Include="6_Collision\AlienObservers\RemoveAlienObserver.cs" />
    <Compile Include="6_Collision\OtherObservers\RemoveBombObserver.cs" />
    <Compile Include="6_Collision\OtherObservers\RemoveBrickObserver.cs" />
    <Compile Include="6_Collision\OtherObservers\RemoveMissileObserver.cs" />
    <Compile Include="6_Collision\AlienObservers\RemoveUFOObserver.cs" />
    <Compile Include="6_Collision\ShipObservers\ShipDeathObserver.cs" />
    <Compile Include="6_Collision\ShipObservers\ShipExplosionObserver.cs" />
    <Compile Include="6_Collision\ShipObservers\ShipMoveObserver.cs" />
    <Compile Include="6_Font\Font.cs" />
    <Compile Include="6_Font\FontMan.cs" />
    <Compile Include="6_Collision\AlienObservers\AlienGridObserver.cs" />
    <Compile Include="6_Collision\CollisionObserver.cs" />
    <Compile Include="6_Collision\CollisionSubject.cs" />
    <Compile Include="4_GameObject\Bomb\Bomb.cs" />
    <Compile Include="4_GameObject\Bomb\BombRoot.cs" />
    <Compile Include="4_GameObject\Bomb\Strategy\FallDagger.cs" />
    <Compile Include="4_GameObject\Bomb\Strategy\FallStraight.cs" />
    <Compile Include="4_GameObject\Bomb\Strategy\FallStrategy.cs" />
    <Compile Include="4_GameObject\Bomb\Strategy\FallZigzag.cs" />
    <Compile Include="7_GameState\GameContext.cs" />
    <Compile Include="7_GameState\State.cs" />
    <Compile Include="7_GameState\State_Attract.cs" />
    <Compile Include="7_GameState\State_End.cs" />
    <Compile Include="7_GameState\State_Play2.cs" />
    <Compile Include="7_GameState\State_Play.cs" />
    <Compile Include="7_Player\Player.cs" />
    <Compile Include="7_Player\PlayerMan.cs" />
    <Compile Include="Game.cs" />
    <Compile Include="1_Image\Image.cs" />
    <Compile Include="1_Image\ImageMan.cs" />
    <Compile Include="1_Image\ImageNode.cs" />
    <Compile Include="4_GameObject\GameObject.cs" />
    <Compile Include="0_Input\InputTest.cs" />
    <Compile Include="0_Manager\Iterator.cs" />
    <Compile Include="0_Manager\List.cs" />
    <Compile Include="5_Composite\Leaf.cs" />
    <Compile Include="4_GameObject\Walls\LeftWall.cs" />
    <Compile Include="6_Font\Glyph.cs" />
    <Compile Include="6_Font\GlyphMan.cs" />
    <Compile Include="0_Input\InputMan.cs" />
    <Compile Include="Main.cs" />
    <Compile Include="0_Manager\Node.cs" />
    <Compile Include="4_GameObject\ObjectNode.cs" />
    <Compile Include="4_GameObject\NullObject.cs" />
    <Compile Include="4_GameObject\ObjectNodeMan.cs" />
    <Compile Include="4_GameObject\Aliens\OctopusAlien.cs" />
    <Compile Include="4_GameObject\Missile\Missiles.cs" />
    <Compile Include="0_Input\Observers\MoveLeftObserver.cs" />
    <Compile Include="0_Input\Observers\MoveRightObserver.cs" />
    <Compile Include="Properties\AssemblyInfo.cs" />
    <Compile Include="0_Manager\SLink\SLink.cs" />
    <Compile Include="0_Manager\SLink\SLinkIterator.cs" />
    <Compile Include="0_Manager\SLink\SLinkMan.cs" />
    <Compile Include="1_Texture\Texture.cs" />
    <Compile Include="1_Texture\TextureMan.cs" />
    <Compile Include="1_Sprite\Sprite.cs" />
    <Compile Include="1_Sprite\SpriteMan.cs" />
    <Compile Include="1_Sprite\SpriteBatch\SpriteBatch.cs" />
    <Compile Include="1_Sprite\SpriteBatch\SpriteBatchMan.cs" />
    <Compile Include="1_Sprite\SpriteBase.cs" />
    <Compile Include="1_Sprite\SpriteBatch\SpriteNode.cs" />
    <Compile Include="1_Sprite\SpriteBatch\SpriteNodeMan.cs" />
    <Compile Include="6_Sound\SoundManager.cs" />
    <Compile Include="1_Sprite\SpriteBox\SpriteBox.cs" />
    <Compile Include="1_Sprite\SpriteBox\SpriteBoxMan.cs" />
    <Compile Include="3_Timer\Command.cs" />
    <Compile Include="3_Timer\TimerEvent.cs" />
    <Compile Include="3_Timer\TimerEventMan.cs" />
    <Compile Include="3_Timer\Commands\AnimateSprite.cs" />
    <Compile Include="1_Sprite\SpriteProxy\SpriteProxy.cs" />
    <Compile Include="1_Sprite\SpriteProxy\SpriteProxyMan.cs" />
    <Compile Include="4_GameObject\Aliens\SquidAlien.cs" />
    <Compile Include="5_Composite\TreeIterator.cs" />
    <Compile Include="5_Composite\ReverseIterator.cs" />
    <Compile Include="4_GameObject\Walls\RightWall.cs" />
    <Compile Include="4_GameObject\Missile\Missile.cs" />
    <Compile Include="4_GameObject\Walls\TopWall.cs" />
    <Compile Include="4_GameObject\Aliens\UFOAlien.cs" />
    <Compile Include="4_GameObject\Shield\ShieldColumn.cs" />
    <Compile Include="4_GameObject\Shield\ShieldGrid.cs" />
    <Compile Include="4_GameObject\Shield\Shields.cs" />
    <Compile Include="6_Collision\Visitor.cs" />
    <Compile Include="1_Sprite\SpriteFont\SpriteFont.cs" />
    <Compile Include="4_GameObject\Shield\ShieldRoot.cs" />
    <Compile Include="4_GameObject\Ship\Ship.cs" />
    <Compile Include="4_GameObject\Ship\Ships.cs" />
    <Compile Include="0_Input\Observers\ShootObserver.cs" />
    <Compile Include="4_GameObject\Ship\ShipMan.cs" />
    <Compile Include="4_GameObject\Ship\MissileState\ShipMissileState.cs" />
    <Compile Include="4_GameObject\Ship\MoveState\ShipMoveState.cs" />
    <Compile Include="4_GameObject\Ship\MoveState\ShipMoveBoth.cs" />
    <Compile Include="4_GameObject\Ship\MoveState\ShipMoveLeft.cs" />
    <Compile Include="4_GameObject\Ship\MoveState\ShipMoveRight.cs" />
    <Compile Include="6_Collision\ShipObservers\ShipReadyObserver.cs" />
  </ItemGroup>
  <ItemGroup>
    <None Include="0_Diagrams\2_Image.cd" />
    <None Include="0_Diagrams\01_Manager.cd" />
    <None Include="0_Diagrams\3_Texture.cd" />
    <None Include="0_Diagrams\4_Sprite.cd" />
    <None Include="0_Diagrams\4_SpriteBatch.cd" />
    <None Include="0_Diagrams\0_Overall.cd" />
    <None Include="0_Diagrams\ClassDiagram1.cd" />
    <None Include="0_Diagrams\Command.cd" />
    <None Include="0_Diagrams\61_Animation.cd" />
    <None Include="0_Diagrams\62_Proxy.cd" />
    <None Include="0_Diagrams\State_Scene.cd" />
    <None Include="0_Diagrams\Visitor.cd" />
    <None Include="0_Diagrams\Composite.cd" />
    <None Include="0_Diagrams\Iterator.cd" />
    <None Include="0_Diagrams\Collision.cd" />
    <None Include="0_Diagrams\8_Font.cd" />
    <None Include="0_Diagrams\Strategy.cd" />
    <None Include="0_Diagrams\Observer.cd" />
    <None Include="App.config" />
    <None Include="Resources\Consolas20pt.tga" />
    <None Include="Resources\Consolas36pt.tga" />
    <None Include="Resources\HotPink.tga" />
    <None Include="Resources\Brick.tga" />
    <None Include="Resources\SpaceInvaders.tga" />
    <None Include="Resources\spriteLineRender.fs.glsl" />
    <None Include="Resources\spriteLineRender.vs.glsl" />
    <None Include="Resources\SpriteModel.azul" />
    <None Include="Resources\spriteRender.fs.glsl" />
    <None Include="Resources\spriteRender.vs.glsl" />
  </ItemGroup>
  <ItemGroup>
    <BootstrapperPackage Include=".NETFramework,Version=v4.5">
      <Visible>False</Visible>
      <ProductName>Microsoft .NET Framework 4.5 %28x86 and x64%29</ProductName>
      <Install>true</Install>
    </BootstrapperPackage>
    <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
      <Visible>False</Visible>
      <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
      <Install>false</Install>
    </BootstrapperPackage>
    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
      <Visible>False</Visible>
      <ProductName>.NET Framework 3.5 SP1</ProductName>
      <Install>false</Install>
    </BootstrapperPackage>
  </ItemGroup>
  <ItemGroup>
    <Content Include="Resources\AzulCoreCLRDebug.dll" />
    <Content Include="Resources\Consolas20pt.xml" />
    <Content Include="Resources\Consolas36pt.xml" />
    <Content Include="Resources\explosion.wav" />
    <Content Include="Resources\fastinvader1.wav" />
    <Content Include="Resources\fastinvader2.wav" />
    <Content Include="Resources\fastinvader3.wav" />
    <Content Include="Resources\fastinvader4.wav" />
    <Content Include="Resources\ikpFlac.dll" />
    <Content Include="Resources\ikpMP3.dll" />
    <Content Include="Resources\invaderkilled.wav" />
    <Content Include="Resources\irrKlang.NET4.dll" />
    <Content Include="Resources\shoot.wav" />
    <Content Include="Resources\SpaceInvaders.xml" />
    <Content Include="Resources\ufo_highpitch.wav" />
    <Content Include="Resources\ufo_lowpitch.wav" />
  </ItemGroup>
  <ItemGroup />
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  <PropertyGroup>
    <PostBuildEvent>
    </PostBuildEvent>
  </PropertyGroup>
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
       Other similar extension points exist, see Microsoft.Common.targets.
  <Target Name="BeforeBuild">
  </Target>
  <Target Name="AfterBuild">
  </Target>
  -->
</Project>