/dbg/dbg.csproj

http://github.com/jbevain/cecil · MSBuild · 85 lines · 78 code · 0 blank · 7 comment · 6 complexity · bf4b001c2f585033028a479d24b9cfc4 MD5 · raw file

  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)' == '' ">net_4_0_Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>9.0.30729</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{89A775F3-64AB-485E-B958-60C25254B732}</ProjectGuid>
  9. <OutputType>Exe</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>dbg</RootNamespace>
  12. <AssemblyName>dbg</AssemblyName>
  13. <FileAlignment>512</FileAlignment>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_3_5_Debug|AnyCPU' ">
  16. <DebugSymbols>true</DebugSymbols>
  17. <DebugType>full</DebugType>
  18. <Optimize>false</Optimize>
  19. <OutputPath>bin\net_3_5_Debug\</OutputPath>
  20. <DefineConstants>DEBUG;TRACE;NET_3_5</DefineConstants>
  21. <ErrorReport>prompt</ErrorReport>
  22. <WarningLevel>4</WarningLevel>
  23. <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_3_5_Release|AnyCPU' ">
  26. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>bin\net_3_5_Release\</OutputPath>
  29. <DefineConstants>TRACE;NET_3_5</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
  33. </PropertyGroup>
  34. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_4_0_Debug|AnyCPU' ">
  35. <DebugSymbols>true</DebugSymbols>
  36. <DebugType>full</DebugType>
  37. <Optimize>false</Optimize>
  38. <OutputPath>bin\net_4_0_Debug\</OutputPath>
  39. <DefineConstants>DEBUG;TRACE;NET_3_5;NET_4_0</DefineConstants>
  40. <ErrorReport>prompt</ErrorReport>
  41. <WarningLevel>4</WarningLevel>
  42. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  43. </PropertyGroup>
  44. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_4_0_Release|AnyCPU' ">
  45. <DebugType>pdbonly</DebugType>
  46. <Optimize>true</Optimize>
  47. <OutputPath>bin\net_4_0_Release\</OutputPath>
  48. <DefineConstants>TRACE;NET_3_5;NET_4_0</DefineConstants>
  49. <ErrorReport>prompt</ErrorReport>
  50. <WarningLevel>4</WarningLevel>
  51. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  52. </PropertyGroup>
  53. <ItemGroup>
  54. <Reference Include="System" />
  55. <Reference Include="System.Core">
  56. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  57. </Reference>
  58. </ItemGroup>
  59. <ItemGroup>
  60. <Compile Include="Program.cs" />
  61. <Compile Include="Properties\AssemblyInfo.cs" />
  62. </ItemGroup>
  63. <ItemGroup>
  64. <ProjectReference Include="..\Mono.Cecil.csproj">
  65. <Project>{D68133BD-1E63-496E-9EDE-4FBDBF77B486}</Project>
  66. <Name>Mono.Cecil</Name>
  67. </ProjectReference>
  68. <ProjectReference Include="..\rocks\Mono.Cecil.Rocks.csproj">
  69. <Project>{FBC6DD59-D09D-499C-B03C-99C1C78FF2AC}</Project>
  70. <Name>Mono.Cecil.Rocks</Name>
  71. </ProjectReference>
  72. <ProjectReference Include="..\symbols\mdb\Mono.Cecil.Mdb.csproj">
  73. <Project>{8559DD7F-A16F-46D0-A05A-9139FAEBA8FD}</Project>
  74. <Name>Mono.Cecil.Mdb</Name>
  75. </ProjectReference>
  76. </ItemGroup>
  77. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  78. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  79. Other similar extension points exist, see Microsoft.Common.targets.
  80. <Target Name="BeforeBuild">
  81. </Target>
  82. <Target Name="AfterBuild">
  83. </Target>
  84. -->
  85. </Project>