/MonoPunk.csproj
http://github.com/dabrorius/MonoPunk · MSBuild · 63 lines · 63 code · 0 blank · 0 comment · 4 complexity · 0293b398fd756b83466b3a3815eda279 MD5 · raw file
- <?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>{7A94864D-E061-4FDB-9853-6591F6B4ABF3}</ProjectGuid>
- <OutputType>Library</OutputType>
- <RootNamespace>MonoPunk</RootNamespace>
- <AssemblyName>MonoPunk</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>
- </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>
- </PropertyGroup>
- <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
- <ItemGroup>
- <Compile Include="Engine.cs" />
- <Compile Include="Entity.cs" />
- <Compile Include="Graphic.cs" />
- <Compile Include="Mask.cs" />
- <Compile Include="MP.cs" />
- <Compile Include="World.cs" />
- <Compile Include="graphics\Image.cs" />
- <Compile Include="masks\Hitbox.cs" />
- <Compile Include="utils\Input.cs" />
- <Compile Include="graphics\Spritemap.cs" />
- <Compile Include="graphics\Anim.cs" />
- <Compile Include="graphics\Backdrop.cs" />
- <Compile Include="graphics\Tilemap.cs" />
- </ItemGroup>
- <ItemGroup>
- <Reference Include="System" />
- <Reference Include="System.Core" />
- <Reference Include="System.Drawing" />
- <Reference Include="System.Xml" />
- <Reference Include="System.Xml.Linq" />
- <Reference Include="MonoGame.Framework, Version=3.0.0.0, Culture=neutral">
- <Private>False</Private>
- </Reference>
- </ItemGroup>
- <ItemGroup>
- <None Include="README.txt" />
- </ItemGroup>
- <ItemGroup>
- <Folder Include="utils\" />
- </ItemGroup>
- </Project>