/examples/LinFu.AOP.Samples/SampleLibrary/SampleLibrary.csproj

http://github.com/philiplaureano/LinFu · MSBuild · 97 lines · 90 code · 0 blank · 7 comment · 4 complexity · fbc840a9dfb58dcbe850f76af9133590 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)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>9.0.30729</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{40E585A8-2D84-45C9-8EE8-9600152D8D96}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>SampleLibrary</RootNamespace>
  12. <AssemblyName>SampleLibrary</AssemblyName>
  13. <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <FileUpgradeFlags>
  16. </FileUpgradeFlags>
  17. <OldToolsVersion>3.5</OldToolsVersion>
  18. <UpgradeBackupLocation />
  19. <TargetFrameworkProfile />
  20. <PublishUrl>publish\</PublishUrl>
  21. <Install>true</Install>
  22. <InstallFrom>Disk</InstallFrom>
  23. <UpdateEnabled>false</UpdateEnabled>
  24. <UpdateMode>Foreground</UpdateMode>
  25. <UpdateInterval>7</UpdateInterval>
  26. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  27. <UpdatePeriodically>false</UpdatePeriodically>
  28. <UpdateRequired>false</UpdateRequired>
  29. <MapFileExtensions>true</MapFileExtensions>
  30. <ApplicationRevision>0</ApplicationRevision>
  31. <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
  32. <IsWebBootstrapper>false</IsWebBootstrapper>
  33. <UseApplicationTrust>false</UseApplicationTrust>
  34. <BootstrapperEnabled>true</BootstrapperEnabled>
  35. </PropertyGroup>
  36. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  37. <DebugSymbols>true</DebugSymbols>
  38. <DebugType>full</DebugType>
  39. <Optimize>false</Optimize>
  40. <OutputPath>bin\Debug\</OutputPath>
  41. <DefineConstants>DEBUG;TRACE</DefineConstants>
  42. <ErrorReport>prompt</ErrorReport>
  43. <WarningLevel>4</WarningLevel>
  44. </PropertyGroup>
  45. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  46. <DebugType>pdbonly</DebugType>
  47. <Optimize>true</Optimize>
  48. <OutputPath>bin\Release\</OutputPath>
  49. <DefineConstants>TRACE</DefineConstants>
  50. <ErrorReport>prompt</ErrorReport>
  51. <WarningLevel>4</WarningLevel>
  52. </PropertyGroup>
  53. <ItemGroup>
  54. <Reference Include="LinFu.Core, Version=2.3.0.19881, Culture=neutral, PublicKeyToken=a4c63a184389506f, processorArchitecture=MSIL">
  55. <SpecificVersion>False</SpecificVersion>
  56. <HintPath>..\lib\LinFu.Core.dll</HintPath>
  57. </Reference>
  58. <Reference Include="System" />
  59. </ItemGroup>
  60. <ItemGroup>
  61. <Compile Include="BankAccount.cs" />
  62. <Compile Include="Employee.cs" />
  63. <Compile Include="Properties\AssemblyInfo.cs" />
  64. </ItemGroup>
  65. <ItemGroup>
  66. <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
  67. <Visible>False</Visible>
  68. <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
  69. <Install>false</Install>
  70. </BootstrapperPackage>
  71. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  72. <Visible>False</Visible>
  73. <ProductName>.NET Framework 3.5 SP1</ProductName>
  74. <Install>true</Install>
  75. </BootstrapperPackage>
  76. <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
  77. <Visible>False</Visible>
  78. <ProductName>Windows Installer 3.1</ProductName>
  79. <Install>true</Install>
  80. </BootstrapperPackage>
  81. </ItemGroup>
  82. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  83. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  84. Other similar extension points exist, see Microsoft.Common.targets.
  85. <Target Name="BeforeBuild">
  86. </Target>
  87. <Target Name="AfterBuild">
  88. </Target>
  89. -->
  90. <PropertyGroup>
  91. <PostWeaveTaskLocation>$(MSBuildProjectDirectory)\$(OutputPath)\..\..\..\lib\LinFu.Core.dll</PostWeaveTaskLocation>
  92. </PropertyGroup>
  93. <UsingTask TaskName="PostWeaveTask" AssemblyFile="$(PostWeaveTaskLocation)" />
  94. <Target Name="AfterBuild">
  95. <PostWeaveTask TargetFile="$(MSBuildProjectDirectory)\$(OutputPath)$(MSBuildProjectName).dll" InterceptAllExceptions="false" InterceptAllFields="false" InterceptAllNewInstances="false" InterceptAllMethodCalls="false" InterceptAllMethodBodies="true" />
  96. </Target>
  97. </Project>