/src/SampleLibrary/SampleLibrary.csproj

http://github.com/philiplaureano/LinFu · MSBuild · 166 lines · 159 code · 0 blank · 7 comment · 4 complexity · 9d16289f2f8d130b3cdb6b60ac6b7029 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>{DEFBEF97-B03C-448F-9518-394735439E2E}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>SampleLibrary</RootNamespace>
  12. <AssemblyName>SampleLibrary</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="System" />
  42. <Reference Include="System.Core">
  43. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  44. </Reference>
  45. <Reference Include="System.Xml.Linq">
  46. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  47. </Reference>
  48. <Reference Include="System.Data.DataSetExtensions">
  49. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  50. </Reference>
  51. <Reference Include="System.Data" />
  52. <Reference Include="System.Xml" />
  53. </ItemGroup>
  54. <ItemGroup>
  55. <Compile Include="AOP\SampleAroundInvoke.cs" />
  56. <Compile Include="AOP\SampleAroundInvokeProvider.cs" />
  57. <Compile Include="AOP\SampleBootstrapComponent.cs" />
  58. <Compile Include="AOP\SampleClassWithByRefMethod.cs" />
  59. <Compile Include="AOP\SampleClassWithMethodHavingOutParameters.cs" />
  60. <Compile Include="AOP\SampleClassWithNewInstanceCall.cs" />
  61. <Compile Include="AOP\SampleClassWithNonVirtualMethod.cs" />
  62. <Compile Include="AOP\SampleClassWithReadOnlyField.cs" />
  63. <Compile Include="AOP\SampleClassWithThirdPartyMethodCall.cs" />
  64. <Compile Include="AOP\SampleInterceptor.cs" />
  65. <Compile Include="AOP\SampleMethodReplacement.cs" />
  66. <Compile Include="AOP\SampleMethodReplacementProvider.cs" />
  67. <Compile Include="AOP\SampleServiceImplementation.cs" />
  68. <Compile Include="AOP\SampleStaticClassWithStaticMethod.cs" />
  69. <Compile Include="AOP\SampleTypeActivator.cs" />
  70. <Compile Include="IOC\BugFixes\IMyService.cs" />
  71. <Compile Include="IOC\BugFixes\MyClass.cs" />
  72. <Compile Include="IOC\BugFixes\MyFactory.cs" />
  73. <Compile Include="IOC\BugFixes\MyService.cs" />
  74. <Compile Include="IOC\ISampleInterceptedInterface.cs" />
  75. <Compile Include="IOC\ISampleServiceOfT.cs" />
  76. <Compile Include="IOC\ISampleServiceWithGenericMethods.cs" />
  77. <Compile Include="IOC\ISampleWrappedInterface.cs" />
  78. <Compile Include="IOC\ITargetHolder.cs" />
  79. <Compile Include="IOC\SampleAroundInvokeInterceptorClass.cs" />
  80. <Compile Include="IOC\SampleClassWithAdditionalArgument.cs" />
  81. <Compile Include="IOC\SampleClassWithArrayPropertyDependency.cs" />
  82. <Compile Include="IOC\SampleClassWithFactoryDependency.cs" />
  83. <Compile Include="IOC\SampleClassWithGenericMethod.cs" />
  84. <Compile Include="IOC\SampleClassWithInjectionField.cs" />
  85. <Compile Include="IOC\SampleClassWithInjectionMethod.cs" />
  86. <Compile Include="IOC\SampleClassWithInjectionProperties.cs" />
  87. <Compile Include="IOC\SampleClassWithMultipleNonServiceArgumentConstructors.cs" />
  88. <Compile Include="IOC\SampleClassWithNamedParameters.cs" />
  89. <Compile Include="IOC\SampleClassWithNonServiceArgument.cs" />
  90. <Compile Include="IOC\SampleClassWithServiceArrayAsConstructorArgument.cs" />
  91. <Compile Include="IOC\SampleClassWithUnmarkedInjectionProperties.cs" />
  92. <Compile Include="IOC\SampleDuckTypeImplementation.cs" />
  93. <Compile Include="IOC\SampleEnum.cs" />
  94. <Compile Include="IOC\SampleFactoryWithConstructorArguments.cs" />
  95. <Compile Include="IOC\SampleGenericClassWithOpenGenericImplementation.cs" />
  96. <Compile Include="IOC\SampleGenericClassWithSpecificGenericTypeImplementation.cs" />
  97. <Compile Include="IOC\SampleInterceptorClass.cs" />
  98. <Compile Include="IOC\SampleInternalService.cs" />
  99. <Compile Include="IOC\SampleLazyService.cs" />
  100. <Compile Include="IOC\SamplePreprocessor.cs" />
  101. <Compile Include="IOC\SampleRecursiveTestComponent1.cs" />
  102. <Compile Include="IOC\SampleRecursiveTestComponent2.cs" />
  103. <Compile Include="IOC\SampleServiceOfT.cs" />
  104. <Compile Include="IOC\SampleStronglyTypedFactoryWithNamedService.cs" />
  105. <Compile Include="Proxy\ClassWithNestedOpenGenericParameters.cs" />
  106. <Compile Include="Proxy\SampleClassWithPropertyInitializedInCtor.cs" />
  107. <Compile Include="Proxy\ClassWithGenericMethod.cs" />
  108. <Compile Include="Proxy\ClassWithMethodReturnTypeFromGenericTypeArguments.cs" />
  109. <Compile Include="Proxy\ClassWithMethodReturnValueFromTypeArgument.cs" />
  110. <Compile Include="Proxy\ClassWithOpenGenericParameters.cs" />
  111. <Compile Include="Proxy\ClassWithParametersFromGenericMethodTypeArguments.cs" />
  112. <Compile Include="Proxy\ClassWithParametersFromHostGenericTypeArguments.cs" />
  113. <Compile Include="Proxy\ClassWithVirtualMethodWithOutParameter.cs" />
  114. <Compile Include="Proxy\DerivedClassWithVirtualByRefMethod.cs" />
  115. <Compile Include="Proxy\ClassWithVirtualByRefMethod.cs" />
  116. <Compile Include="IOC\FirstOncePerRequestService.cs" />
  117. <Compile Include="IOC\FirstSingletonService.cs" />
  118. <Compile Include="IOC\IInjectionTarget.cs" />
  119. <Compile Include="IOC\ISampleGenericService.cs" />
  120. <Compile Include="IOC\ISampleService.cs" />
  121. <Compile Include="IOC\SampleClass.cs" />
  122. <Compile Include="IOC\SampleClassWithMultipleConstructors.cs" />
  123. <Compile Include="IOC\SampleClassWithServiceEnumerableAsConstructorArgument.cs" />
  124. <Compile Include="IOC\SampleClassWithSingleArgumentConstructor.cs" />
  125. <Compile Include="Properties\AssemblyInfo.cs" />
  126. <Compile Include="IOC\SampleFactory.cs" />
  127. <Compile Include="IOC\SampleGenericImplementation.cs" />
  128. <Compile Include="IOC\SampleOpenGenericFactory.cs" />
  129. <Compile Include="IOC\SamplePostProcessor.cs" />
  130. <Compile Include="IOC\SampleStronglyTypedFactory.cs" />
  131. <Compile Include="IOC\SecondOncePerRequestService.cs" />
  132. <Compile Include="IOC\SecondSingletonService.cs" />
  133. <Compile Include="Proxy\ClassWithGenericTypeDefinitionReturnType.cs" />
  134. <Compile Include="Proxy\SerializableInterceptor.cs" />
  135. </ItemGroup>
  136. <ItemGroup>
  137. <ProjectReference Include="..\LinFu.AOP.Interfaces\LinFu.AOP.Interfaces.csproj">
  138. <Project>{0F8C48B0-4AE9-4429-AB90-C5141D710C2C}</Project>
  139. <Name>LinFu.AOP.Interfaces</Name>
  140. </ProjectReference>
  141. <ProjectReference Include="..\LinFu.IoC.Common\LinFu.IoC.Common.csproj">
  142. <Project>{D027A765-4D2E-48AE-9D83-C5F5AFA7D8C1}</Project>
  143. <Name>LinFu.IoC.Common</Name>
  144. </ProjectReference>
  145. <ProjectReference Include="..\LinFu.IoC\LinFu.IoC.csproj">
  146. <Project>{FA3D5517-EFF4-4363-AFF2-EF67B981334E}</Project>
  147. <Name>LinFu.IoC</Name>
  148. </ProjectReference>
  149. <ProjectReference Include="..\LinFu.Proxy.Extensions\LinFu.Proxy.Extensions.csproj">
  150. <Project>{DC20B330-B410-481D-A192-D82A07D2C7EF}</Project>
  151. <Name>LinFu.Proxy.Extensions</Name>
  152. </ProjectReference>
  153. <ProjectReference Include="..\LinFu.Reflection\LinFu.Reflection.csproj">
  154. <Project>{22EEB00F-F471-486C-A6AD-60F088821C78}</Project>
  155. <Name>LinFu.Reflection</Name>
  156. </ProjectReference>
  157. </ItemGroup>
  158. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  159. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  160. Other similar extension points exist, see Microsoft.Common.targets.
  161. <Target Name="BeforeBuild">
  162. </Target>
  163. <Target Name="AfterBuild">
  164. </Target>
  165. -->
  166. </Project>