Examples.csproj 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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>{81158C54-C830-4056-B5D6-AE9059741B20}</ProjectGuid>
  9. <OutputType>Exe</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>Examples</RootNamespace>
  12. <AssemblyName>Examples</AssemblyName>
  13. <FileAlignment>512</FileAlignment>
  14. <StartupObject>Examples.Program</StartupObject>
  15. <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. <PlatformTarget>x86</PlatformTarget>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. <PlatformTarget>x86</PlatformTarget>
  35. </PropertyGroup>
  36. <ItemGroup>
  37. <Reference Include="System" />
  38. <Reference Include="System.Drawing" />
  39. </ItemGroup>
  40. <ItemGroup>
  41. <Compile Include="Program.cs" />
  42. <Compile Include="Properties\AssemblyInfo.cs" />
  43. </ItemGroup>
  44. <ItemGroup>
  45. <ProjectReference Include="..\SharpFont\SharpFont.csproj">
  46. <Project>{C293DB32-FA42-486D-B128-5A12522FAE4E}</Project>
  47. <Name>SharpFont</Name>
  48. </ProjectReference>
  49. </ItemGroup>
  50. <ItemGroup />
  51. <ItemGroup>
  52. <Content Include="Fonts\SIL Open Font License 1.1.txt">
  53. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  54. </Content>
  55. <Content Include="freetype.dll">
  56. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  57. </Content>
  58. <Content Include="FTL.TXT">
  59. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  60. </Content>
  61. </ItemGroup>
  62. <ItemGroup>
  63. <None Include="Fonts\Cousine-Regular-Latin.ttf">
  64. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  65. </None>
  66. </ItemGroup>
  67. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  68. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  69. Other similar extension points exist, see Microsoft.Common.targets.
  70. <Target Name="BeforeBuild">
  71. </Target>
  72. <Target Name="AfterBuild">
  73. </Target>
  74. -->
  75. </Project>