1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProductVersion>10.0.0</ProductVersion>
- <SchemaVersion>2.0</SchemaVersion>
- <ProjectGuid>{9522776F-02BA-4BED-B8BB-6BAE580F4068}</ProjectGuid>
- <ProjectTypeGuids>{948B3504-5B70-4649-8FE4-BDE1FB46EC69};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
- <OutputType>Exe</OutputType>
- <RootNamespace>RobotRampage</RootNamespace>
- <AssemblyName>RobotRampage</AssemblyName>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\Debug</OutputPath>
- <DefineConstants>DEBUG</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <ConsolePause>false</ConsolePause>
- <EnableCodeSigning>false</EnableCodeSigning>
- <CreatePackage>false</CreatePackage>
- <EnablePackageSigning>false</EnablePackageSigning>
- <IncludeMonoRuntime>false</IncludeMonoRuntime>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>none</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\Release</OutputPath>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <ConsolePause>false</ConsolePause>
- <EnableCodeSigning>false</EnableCodeSigning>
- <CreatePackage>false</CreatePackage>
- <EnablePackageSigning>false</EnablePackageSigning>
- <IncludeMonoRuntime>false</IncludeMonoRuntime>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="System" />
- <Reference Include="System.Xml" />
- <Reference Include="System.Core" />
- <Reference Include="System.Xml.Linq" />
- <Reference Include="System.Drawing" />
- <Reference Include="MonoMac" />
- </ItemGroup>
- <ItemGroup>
- <None Include="Info.plist">
- </None>
- <None Include="Game.ico" />
- <None Include="GameThumbnail.png" />
- <None Include="README.md" />
- </ItemGroup>
- <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
- <Import Project="$(MSBuildExtensionsPath)\Mono\MonoMac\v0.0\Mono.MonoMac.targets" />
- <ItemGroup>
- <ProjectReference Include="..\..\..\..\MonoGame.Framework\MonoGame.Framework.MacOS.csproj">
- <Project>{36C538E6-C32A-4A8D-A39C-566173D7118E}</Project>
- <Name>MonoGame.Framework.MacOS</Name>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup>
- <Folder Include="Content\" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="Content\Fonts\Pericles14.xnb" />
- <Content Include="Content\Textures\SpriteSheet.xnb" />
- <Content Include="Content\Textures\TitleScreen.xnb" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Camera.cs" />
- <Compile Include="ComputerTerminal.cs" />
- <Compile Include="EffectsManager.cs" />
- <Compile Include="Enemy.cs" />
- <Compile Include="EnemyManager.cs" />
- <Compile Include="Game1.cs" />
- <Compile Include="GameManager.cs" />
- <Compile Include="GoalManager.cs" />
- <Compile Include="Particle.cs" />
- <Compile Include="PathFinder.cs" />
- <Compile Include="PathNode.cs" />
- <Compile Include="Player.cs" />
- <Compile Include="Program.cs" />
- <Compile Include="Sprite.cs" />
- <Compile Include="TileMap.cs" />
- <Compile Include="WeaponManager.cs" />
- </ItemGroup>
- </Project>
|