TiledSprites.Linux.csproj 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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)' == '' ">x86</Platform>
  6. <ProductVersion>9.0.21022</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{86A619E2-C8F0-452B-A762-C69D5BB07C98}</ProjectGuid>
  9. <OutputType>Exe</OutputType>
  10. <RootNamespace>TiledSprites</RootNamespace>
  11. <AssemblyName>TiledSprites</AssemblyName>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  14. <DebugSymbols>True</DebugSymbols>
  15. <DebugType>full</DebugType>
  16. <Optimize>False</Optimize>
  17. <OutputPath>bin\Debug</OutputPath>
  18. <DefineConstants>DEBUG</DefineConstants>
  19. <ErrorReport>prompt</ErrorReport>
  20. <WarningLevel>4</WarningLevel>
  21. <PlatformTarget>x86</PlatformTarget>
  22. <ConsolePause>False</ConsolePause>
  23. </PropertyGroup>
  24. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  25. <DebugType>none</DebugType>
  26. <Optimize>False</Optimize>
  27. <OutputPath>bin\Release</OutputPath>
  28. <ErrorReport>prompt</ErrorReport>
  29. <WarningLevel>4</WarningLevel>
  30. <PlatformTarget>x86</PlatformTarget>
  31. <ConsolePause>False</ConsolePause>
  32. </PropertyGroup>
  33. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  34. <ItemGroup>
  35. <Reference Include="System" />
  36. <Reference Include="System.Xml" />
  37. <Reference Include="System.Core" />
  38. <Reference Include="System.Xml.Linq" />
  39. <Reference Include="System.Drawing" />
  40. </ItemGroup>
  41. <ItemGroup>
  42. <None Include="Info.plist" />
  43. <None Include="Default.png">
  44. <Link>Default.png</Link>
  45. </None>
  46. <None Include="TiledSprites.icns" />
  47. </ItemGroup>
  48. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  49. <ItemGroup>
  50. <Compile Include="main.cs" />
  51. <Compile Include="AnimatedSprite.cs">
  52. <Link>AnimatedSprite.cs</Link>
  53. </Compile>
  54. <Compile Include="Camera2D.cs">
  55. <Link>Camera2D.cs</Link>
  56. </Compile>
  57. <Compile Include="SpriteSheet.cs">
  58. <Link>SpriteSheet.cs</Link>
  59. </Compile>
  60. <Compile Include="TiledSprites.cs">
  61. <Link>TiledSprites.cs</Link>
  62. </Compile>
  63. <Compile Include="TileGrid.cs">
  64. <Link>TileGrid.cs</Link>
  65. </Compile>
  66. </ItemGroup>
  67. <ItemGroup>
  68. <Content Include="Content\ball.png">
  69. <Link>Content\ball.png</Link>
  70. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  71. </Content>
  72. <Content Include="Content\clouds.png">
  73. <Link>Content\clouds.png</Link>
  74. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  75. </Content>
  76. <Content Include="Content\ground.png">
  77. <Link>Content\ground.png</Link>
  78. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  79. </Content>
  80. <Content Include="GameThumbnail.png" />
  81. </ItemGroup>
  82. </Project>