Draw2D.Linux.csproj 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{8CFEF1FE-9E32-43EB-A730-EB3AACDC77B1}</ProjectGuid>
  9. <OutputType>Exe</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>Draw2D</RootNamespace>
  12. <AssemblyName>Draw2D</AssemblyName>
  13. <FileAlignment>512</FileAlignment>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  16. <PlatformTarget>x86</PlatformTarget>
  17. <DebugSymbols>True</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>False</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE;WINDOWS</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  26. <PlatformTarget>x86</PlatformTarget>
  27. <DebugType>pdbonly</DebugType>
  28. <Optimize>True</Optimize>
  29. <OutputPath>bin\Release\</OutputPath>
  30. <DefineConstants>TRACE;WINDOWS</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <Compile Include="FPSCounterComponent.cs">
  36. <Link>FPSCounterComponent.cs</Link>
  37. </Compile>
  38. <Compile Include="Game1.cs">
  39. <Link>Game1.cs</Link>
  40. </Compile>
  41. <Compile Include="main.cs" />
  42. </ItemGroup>
  43. <ItemGroup>
  44. <Content Include="Content\monogameicon.png">
  45. <Link>Content\monogameicon.png</Link>
  46. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  47. </Content>
  48. <Content Include="Content\purpleBall.xnb">
  49. <Link>Content\purpleBall.xnb</Link>
  50. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  51. </Content>
  52. <Content Include="Content\spriteFont1.xnb">
  53. <Link>Content\spriteFont1.xnb</Link>
  54. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  55. </Content>
  56. <Content Include="Default.png">
  57. <Link>Default.png</Link>
  58. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  59. </Content>
  60. </ItemGroup>
  61. <ItemGroup>
  62. <Reference Include="System" />
  63. <Reference Include="System.Xml" />
  64. </ItemGroup>
  65. <ItemGroup>
  66. <Content Include="Default.png">
  67. <Link>Default.png</Link>
  68. </Content>
  69. </ItemGroup>
  70. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  71. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  72. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  73. Other similar extension points exist, see Microsoft.Common.targets.
  74. <Target Name="BeforeBuild">
  75. </Target>
  76. <Target Name="AfterBuild">
  77. </Target>
  78. -->
  79. </Project>