/src/PostWeaver/PostWeaver.csproj

http://github.com/philiplaureano/LinFu · MSBuild · 104 lines · 97 code · 0 blank · 7 comment · 4 complexity · 3ed0a8fc8d5ae27a8bf5b7def1cc87fe 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>{D616982C-D439-4B5C-B1A8-79BD4E7044FB}</ProjectGuid>
  9. <OutputType>Exe</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>PostWeaver</RootNamespace>
  12. <AssemblyName>PostWeaver</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>bin\Debug\</OutputPath>
  26. <DefineConstants>DEBUG;TRACE</DefineConstants>
  27. <ErrorReport>prompt</ErrorReport>
  28. <WarningLevel>4</WarningLevel>
  29. <Prefer32Bit>false</Prefer32Bit>
  30. </PropertyGroup>
  31. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  32. <DebugType>pdbonly</DebugType>
  33. <Optimize>true</Optimize>
  34. <OutputPath>bin\Release\</OutputPath>
  35. <DefineConstants>TRACE</DefineConstants>
  36. <ErrorReport>prompt</ErrorReport>
  37. <WarningLevel>4</WarningLevel>
  38. <Prefer32Bit>false</Prefer32Bit>
  39. </PropertyGroup>
  40. <ItemGroup>
  41. <Reference Include="Mono.Cecil, Version=0.9.6.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756">
  42. <HintPath>..\packages\Mono.Cecil.0.9.6.4\lib\net45\Mono.Cecil.dll</HintPath>
  43. <Private>True</Private>
  44. </Reference>
  45. <Reference Include="Mono.Cecil.Mdb, Version=0.9.6.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756">
  46. <HintPath>..\packages\Mono.Cecil.0.9.6.4\lib\net45\Mono.Cecil.Mdb.dll</HintPath>
  47. <Private>True</Private>
  48. </Reference>
  49. <Reference Include="Mono.Cecil.Pdb, Version=0.9.6.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756">
  50. <HintPath>..\packages\Mono.Cecil.0.9.6.4\lib\net45\Mono.Cecil.Pdb.dll</HintPath>
  51. <Private>True</Private>
  52. </Reference>
  53. <Reference Include="Mono.Cecil.Rocks, Version=0.9.6.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756">
  54. <HintPath>..\packages\Mono.Cecil.0.9.6.4\lib\net45\Mono.Cecil.Rocks.dll</HintPath>
  55. <Private>True</Private>
  56. </Reference>
  57. <Reference Include="System" />
  58. <Reference Include="System.Core">
  59. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  60. </Reference>
  61. <Reference Include="System.Xml.Linq">
  62. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  63. </Reference>
  64. <Reference Include="System.Data.DataSetExtensions">
  65. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  66. </Reference>
  67. <Reference Include="System.Data" />
  68. <Reference Include="System.Xml" />
  69. </ItemGroup>
  70. <ItemGroup>
  71. <Compile Include="Program.cs" />
  72. <Compile Include="Properties\AssemblyInfo.cs" />
  73. </ItemGroup>
  74. <ItemGroup>
  75. <ProjectReference Include="..\LinFu.AOP.Interfaces\LinFu.AOP.Interfaces.csproj">
  76. <Project>{0F8C48B0-4AE9-4429-AB90-C5141D710C2C}</Project>
  77. <Name>LinFu.AOP.Interfaces</Name>
  78. </ProjectReference>
  79. <ProjectReference Include="..\LinFu.AOP\LinFu.AOP.Cecil.csproj">
  80. <Project>{613B6547-DCBB-4505-82B8-B4179BFC95CE}</Project>
  81. <Name>LinFu.AOP.Cecil</Name>
  82. </ProjectReference>
  83. <ProjectReference Include="..\LinFu.Reflection.Emit\LinFu.Reflection.Emit.csproj">
  84. <Project>{22B3D63C-29E9-49D3-86CB-28FF7D2C70E7}</Project>
  85. <Name>LinFu.Reflection.Emit</Name>
  86. </ProjectReference>
  87. <ProjectReference Include="..\LinFu.Reflection\LinFu.Reflection.csproj">
  88. <Project>{22EEB00F-F471-486C-A6AD-60F088821C78}</Project>
  89. <Name>LinFu.Reflection</Name>
  90. </ProjectReference>
  91. </ItemGroup>
  92. <ItemGroup>
  93. <None Include="app.config" />
  94. <None Include="packages.config" />
  95. </ItemGroup>
  96. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  97. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  98. Other similar extension points exist, see Microsoft.Common.targets.
  99. <Target Name="BeforeBuild">
  100. </Target>
  101. <Target Name="AfterBuild">
  102. </Target>
  103. -->
  104. </Project>