/src/LinFu.Proxy.Interfaces/LinFu.Proxy.Interfaces.csproj

http://github.com/philiplaureano/LinFu · MSBuild · 106 lines · 99 code · 0 blank · 7 comment · 4 complexity · 603fae5ced27bb4159109d84efeb6b34 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.30729</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{6C29A409-6148-49AC-A192-DC6F33F3304C}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>LinFu.Proxy.Interfaces</RootNamespace>
  12. <AssemblyName>LinFu.Proxy.Interfaces</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.Proxy.Interfaces.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.Proxy.Interfaces.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="CallAdapter.cs" />
  77. <Compile Include="FunctorAsInterceptor.cs" />
  78. <Compile Include="IExtractInterfaces.cs" />
  79. <Compile Include="IMethodBodyEmitter.cs" />
  80. <Compile Include="IMethodPicker.cs" />
  81. <Compile Include="IMethodBuilder.cs" />
  82. <Compile Include="IProxyCache.cs" />
  83. <Compile Include="IProxyMethodBuilder.cs" />
  84. <Compile Include="IProxy.cs" />
  85. <Compile Include="IProxyBuilder.cs" />
  86. <Compile Include="IProxyFactory.cs" />
  87. <Compile Include="ProxyFactoryExtensions.cs" />
  88. </ItemGroup>
  89. <ItemGroup>
  90. <ProjectReference Include="..\LinFu.AOP.Interfaces\LinFu.AOP.Interfaces.csproj">
  91. <Project>{0F8C48B0-4AE9-4429-AB90-C5141D710C2C}</Project>
  92. <Name>LinFu.AOP.Interfaces</Name>
  93. </ProjectReference>
  94. </ItemGroup>
  95. <ItemGroup>
  96. <None Include="packages.config" />
  97. </ItemGroup>
  98. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  99. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  100. Other similar extension points exist, see Microsoft.Common.targets.
  101. <Target Name="BeforeBuild">
  102. </Target>
  103. <Target Name="AfterBuild">
  104. </Target>
  105. -->
  106. </Project>