StarWarrior.Linux.csproj 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>10.0.0</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{2012F252-E53A-4900-A2C5-9550D008DF8B}</ProjectGuid>
  9. <OutputType>Exe</OutputType>
  10. <RootNamespace>StarWarrior</RootNamespace>
  11. <AssemblyName>StarWarrior</AssemblyName>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  14. <DebugSymbols>True</DebugSymbols>
  15. <DebugType>full</DebugType>
  16. <Optimize>False</Optimize>
  17. <OutputPath>bin\Debug</OutputPath>
  18. <DefineConstants>DEBUG;LINUX</DefineConstants>
  19. <ErrorReport>prompt</ErrorReport>
  20. <WarningLevel>4</WarningLevel>
  21. <ConsolePause>False</ConsolePause>
  22. </PropertyGroup>
  23. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  24. <DebugType>none</DebugType>
  25. <Optimize>False</Optimize>
  26. <OutputPath>bin\Release</OutputPath>
  27. <ErrorReport>prompt</ErrorReport>
  28. <WarningLevel>4</WarningLevel>
  29. <ConsolePause>False</ConsolePause>
  30. </PropertyGroup>
  31. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  32. <ItemGroup>
  33. <Compile Include="EntityFactory.cs">
  34. <Link>EntityFactory.cs</Link>
  35. </Compile>
  36. <Compile Include="Game1.cs">
  37. <Link>Game1.cs</Link>
  38. </Compile>
  39. <Compile Include="Pool.cs">
  40. <Link>Pool.cs</Link>
  41. </Compile>
  42. <Compile Include="Components\Enemy.cs">
  43. <Link>Components\Enemy.cs</Link>
  44. </Compile>
  45. <Compile Include="Components\Expires.cs">
  46. <Link>Components\Expires.cs</Link>
  47. </Compile>
  48. <Compile Include="Components\Health.cs">
  49. <Link>Components\Health.cs</Link>
  50. </Compile>
  51. <Compile Include="Components\SpatialForm.cs">
  52. <Link>Components\SpatialForm.cs</Link>
  53. </Compile>
  54. <Compile Include="Components\Transform.cs">
  55. <Link>Components\Transform.cs</Link>
  56. </Compile>
  57. <Compile Include="Components\Velocity.cs">
  58. <Link>Components\Velocity.cs</Link>
  59. </Compile>
  60. <Compile Include="Components\Weapon.cs">
  61. <Link>Components\Weapon.cs</Link>
  62. </Compile>
  63. <Compile Include="Primitives\Lines.cs">
  64. <Link>Primitives\Lines.cs</Link>
  65. </Compile>
  66. <Compile Include="Primitives\PrimitiveBatch.cs">
  67. <Link>Primitives\PrimitiveBatch.cs</Link>
  68. </Compile>
  69. <Compile Include="Primitives\Triangles.cs">
  70. <Link>Primitives\Triangles.cs</Link>
  71. </Compile>
  72. <Compile Include="Primitives\TrianglesStrip.cs">
  73. <Link>Primitives\TrianglesStrip.cs</Link>
  74. </Compile>
  75. <Compile Include="Spatials\EnemyShip.cs">
  76. <Link>Spatials\EnemyShip.cs</Link>
  77. </Compile>
  78. <Compile Include="Spatials\Explosion.cs">
  79. <Link>Spatials\Explosion.cs</Link>
  80. </Compile>
  81. <Compile Include="Spatials\Missile.cs">
  82. <Link>Spatials\Missile.cs</Link>
  83. </Compile>
  84. <Compile Include="Spatials\PlayerShip.cs">
  85. <Link>Spatials\PlayerShip.cs</Link>
  86. </Compile>
  87. <Compile Include="Spatials\ShipExplosion.cs">
  88. <Link>Spatials\ShipExplosion.cs</Link>
  89. </Compile>
  90. <Compile Include="Systems\CollisionSystem.cs">
  91. <Link>Systems\CollisionSystem.cs</Link>
  92. </Compile>
  93. <Compile Include="Systems\EnemyShipMovementSystem.cs">
  94. <Link>Systems\EnemyShipMovementSystem.cs</Link>
  95. </Compile>
  96. <Compile Include="Systems\EnemyShooterSystem.cs">
  97. <Link>Systems\EnemyShooterSystem.cs</Link>
  98. </Compile>
  99. <Compile Include="Systems\EnemySpawnSystem.cs">
  100. <Link>Systems\EnemySpawnSystem.cs</Link>
  101. </Compile>
  102. <Compile Include="Systems\ExpirationSystem.cs">
  103. <Link>Systems\ExpirationSystem.cs</Link>
  104. </Compile>
  105. <Compile Include="Systems\HealthBarRenderSystem.cs">
  106. <Link>Systems\HealthBarRenderSystem.cs</Link>
  107. </Compile>
  108. <Compile Include="Systems\HudRenderSystem.cs">
  109. <Link>Systems\HudRenderSystem.cs</Link>
  110. </Compile>
  111. <Compile Include="Systems\MovementSystem.cs">
  112. <Link>Systems\MovementSystem.cs</Link>
  113. </Compile>
  114. <Compile Include="Systems\PlayerShipControlSystem.cs">
  115. <Link>Systems\PlayerShipControlSystem.cs</Link>
  116. </Compile>
  117. <Compile Include="Systems\RenderSystem.cs">
  118. <Link>Systems\RenderSystem.cs</Link>
  119. </Compile>
  120. <Compile Include="Program.cs" />
  121. </ItemGroup>
  122. <ItemGroup>
  123. <None Include="Game.ico">
  124. <Link>Game.ico</Link>
  125. </None>
  126. <None Include="GameThumbnail.png">
  127. <Link>GameThumbnail.png</Link>
  128. </None>
  129. <None Include="PhoneGameThumb.png">
  130. <Link>PhoneGameThumb.png</Link>
  131. </None>
  132. <None Include="Readme.md">
  133. <Link>Readme.md</Link>
  134. </None>
  135. <None Include="Content\myFont.spritefont">
  136. <Link>Content\myFont.spritefont</Link>
  137. </None>
  138. </ItemGroup>
  139. <ItemGroup>
  140. <Reference Include="System" />
  141. <Reference Include="artemis">
  142. <HintPath>Artemis\PC\artemis.dll</HintPath>
  143. </Reference>
  144. </ItemGroup>
  145. <ItemGroup>
  146. <Content Include="Content\Arial.xnb">
  147. <Link>Content\Arial.xnb</Link>
  148. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  149. </Content>
  150. <Content Include="Content\bullet.png">
  151. <Link>Content\bullet.png</Link>
  152. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  153. </Content>
  154. <Content Include="Content\enemy.png">
  155. <Link>Content\enemy.png</Link>
  156. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  157. </Content>
  158. <Content Include="Content\explosion.png">
  159. <Link>Content\explosion.png</Link>
  160. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  161. </Content>
  162. <Content Include="Content\player.png">
  163. <Link>Content\player.png</Link>
  164. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  165. </Content>
  166. </ItemGroup>
  167. </Project>