/src/LinFu.IoC.Common/LinFu.IoC.Common.csproj

http://github.com/philiplaureano/LinFu · MSBuild · 90 lines · 83 code · 0 blank · 7 comment · 4 complexity · 89b7e55ee774c5074989102dcb4bf283 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>{D027A765-4D2E-48AE-9D83-C5F5AFA7D8C1}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>LinFu.IoC.Common</RootNamespace>
  12. <AssemblyName>LinFu.IoC.Common</AssemblyName>
  13. <TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <SignAssembly>true</SignAssembly>
  16. <AssemblyOriginatorKeyFile>LinFu.snk</AssemblyOriginatorKeyFile>
  17. <FileUpgradeFlags>
  18. </FileUpgradeFlags>
  19. <OldToolsVersion>3.5</OldToolsVersion>
  20. <UpgradeBackupLocation />
  21. <TargetFrameworkProfile />
  22. </PropertyGroup>
  23. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  24. <DebugSymbols>true</DebugSymbols>
  25. <DebugType>full</DebugType>
  26. <Optimize>false</Optimize>
  27. <OutputPath>..\..\build\Debug\</OutputPath>
  28. <DefineConstants>DEBUG;TRACE</DefineConstants>
  29. <ErrorReport>prompt</ErrorReport>
  30. <WarningLevel>4</WarningLevel>
  31. <DocumentationFile>..\..\build\Debug\LinFu.IoC.Common.XML</DocumentationFile>
  32. <Prefer32Bit>false</Prefer32Bit>
  33. </PropertyGroup>
  34. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  35. <DebugType>pdbonly</DebugType>
  36. <Optimize>true</Optimize>
  37. <OutputPath>bin\Release\</OutputPath>
  38. <DefineConstants>TRACE</DefineConstants>
  39. <ErrorReport>prompt</ErrorReport>
  40. <WarningLevel>4</WarningLevel>
  41. <Prefer32Bit>false</Prefer32Bit>
  42. </PropertyGroup>
  43. <ItemGroup>
  44. <Reference Include="System" />
  45. <Reference Include="System.Core">
  46. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  47. </Reference>
  48. <Reference Include="System.Xml.Linq">
  49. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  50. </Reference>
  51. <Reference Include="System.Data.DataSetExtensions">
  52. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  53. </Reference>
  54. <Reference Include="System.Data" />
  55. <Reference Include="System.Xml" />
  56. </ItemGroup>
  57. <ItemGroup>
  58. <Compile Include="FactoryAttribute.cs" />
  59. <Compile Include="IContainer.cs" />
  60. <Compile Include="IFactory.cs" />
  61. <Compile Include="IFactoryRequest.cs" />
  62. <Compile Include="IInitialize.cs" />
  63. <Compile Include="ImplementsAttribute.cs" />
  64. <Compile Include="IPostProcessor.cs" />
  65. <Compile Include="IPreprocessor.cs" />
  66. <Compile Include="IServiceContainer.cs" />
  67. <Compile Include="IServiceInfo.cs" />
  68. <Compile Include="IServiceRequest.cs" />
  69. <Compile Include="IServiceRequestResult.cs" />
  70. <Compile Include="LifecycleType.cs" />
  71. <Compile Include="Properties\AssemblyInfo.cs" />
  72. </ItemGroup>
  73. <ItemGroup>
  74. <ProjectReference Include="..\LinFu.Reflection\LinFu.Reflection.csproj">
  75. <Project>{22EEB00F-F471-486C-A6AD-60F088821C78}</Project>
  76. <Name>LinFu.Reflection</Name>
  77. </ProjectReference>
  78. </ItemGroup>
  79. <ItemGroup>
  80. <None Include="LinFu.snk" />
  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. </Project>