/src/LinFu.Reflection.Emit/LinFu.Reflection.Emit.csproj

http://github.com/philiplaureano/LinFu · MSBuild · 95 lines · 88 code · 0 blank · 7 comment · 4 complexity · e7b67b6ab730d18d44961a07f4a92945 MD5 · raw file

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>9.0.21022</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{22B3D63C-29E9-49D3-86CB-28FF7D2C70E7}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>LinFu.Reflection.Emit</RootNamespace>
  12. <AssemblyName>LinFu.Reflection.Emit</AssemblyName>
  13. <TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <FileUpgradeFlags>
  16. </FileUpgradeFlags>
  17. <OldToolsVersion>3.5</OldToolsVersion>
  18. <UpgradeBackupLocation />
  19. <TargetFrameworkProfile />
  20. </PropertyGroup>
  21. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  22. <DebugSymbols>true</DebugSymbols>
  23. <DebugType>full</DebugType>
  24. <Optimize>false</Optimize>
  25. <OutputPath>..\..\build\Debug\</OutputPath>
  26. <DefineConstants>DEBUG;TRACE</DefineConstants>
  27. <ErrorReport>prompt</ErrorReport>
  28. <WarningLevel>4</WarningLevel>
  29. <DocumentationFile>..\..\build\Debug\LinFu.Reflection.Emit.XML</DocumentationFile>
  30. <Prefer32Bit>false</Prefer32Bit>
  31. </PropertyGroup>
  32. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  33. <DebugType>pdbonly</DebugType>
  34. <Optimize>true</Optimize>
  35. <OutputPath>..\..\build\Release\</OutputPath>
  36. <DefineConstants>TRACE</DefineConstants>
  37. <ErrorReport>prompt</ErrorReport>
  38. <WarningLevel>4</WarningLevel>
  39. <DocumentationFile>..\..\build\Release\LinFu.Reflection.Emit.XML</DocumentationFile>
  40. <Prefer32Bit>false</Prefer32Bit>
  41. </PropertyGroup>
  42. <ItemGroup>
  43. <Reference Include="Mono.Cecil, Version=0.9.6.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756">
  44. <HintPath>..\packages\Mono.Cecil.0.9.6.4\lib\net45\Mono.Cecil.dll</HintPath>
  45. <Private>True</Private>
  46. </Reference>
  47. <Reference Include="Mono.Cecil.Mdb, Version=0.9.6.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756">
  48. <HintPath>..\packages\Mono.Cecil.0.9.6.4\lib\net45\Mono.Cecil.Mdb.dll</HintPath>
  49. <Private>True</Private>
  50. </Reference>
  51. <Reference Include="Mono.Cecil.Pdb, Version=0.9.6.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756">
  52. <HintPath>..\packages\Mono.Cecil.0.9.6.4\lib\net45\Mono.Cecil.Pdb.dll</HintPath>
  53. <Private>True</Private>
  54. </Reference>
  55. <Reference Include="Mono.Cecil.Rocks, Version=0.9.6.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756">
  56. <HintPath>..\packages\Mono.Cecil.0.9.6.4\lib\net45\Mono.Cecil.Rocks.dll</HintPath>
  57. <Private>True</Private>
  58. </Reference>
  59. <Reference Include="System" />
  60. <Reference Include="System.Core">
  61. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  62. </Reference>
  63. <Reference Include="System.Xml.Linq">
  64. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  65. </Reference>
  66. <Reference Include="System.Data.DataSetExtensions">
  67. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  68. </Reference>
  69. <Reference Include="System.Data" />
  70. <Reference Include="System.Xml" />
  71. </ItemGroup>
  72. <ItemGroup>
  73. <Compile Include="..\CommonAssemblyInfo.cs">
  74. <Link>Properties\CommonAssemblyInfo.cs</Link>
  75. </Compile>
  76. <Compile Include="AssemblyDefinitionExtensions.cs" />
  77. <Compile Include="ILProcessorExtensions.cs" />
  78. <Compile Include="Interfaces\ITypeBuilder.cs" />
  79. <Compile Include="MethodDefinitionExtensions.cs" />
  80. <Compile Include="ModuleDefinitionExtensions.cs" />
  81. <Compile Include="ParameterDefinitionExtensions.cs" />
  82. <Compile Include="TypeDefinitionExtensions.cs" />
  83. </ItemGroup>
  84. <ItemGroup>
  85. <None Include="packages.config" />
  86. </ItemGroup>
  87. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  88. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  89. Other similar extension points exist, see Microsoft.Common.targets.
  90. <Target Name="BeforeBuild">
  91. </Target>
  92. <Target Name="AfterBuild">
  93. </Target>
  94. -->
  95. </Project>