/src/LinFu.Reflection/LinFu.Reflection.csproj

http://github.com/philiplaureano/LinFu · MSBuild · 96 lines · 89 code · 0 blank · 7 comment · 4 complexity · 8f89715b40b5f130b4f54f641518f53a 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>{22EEB00F-F471-486C-A6AD-60F088821C78}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>LinFu.Reflection</RootNamespace>
  12. <AssemblyName>LinFu.Reflection</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>bin\Debug\LinFu.Reflection.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>..\..\build\Release\</OutputPath>
  38. <DefineConstants>TRACE</DefineConstants>
  39. <ErrorReport>prompt</ErrorReport>
  40. <WarningLevel>4</WarningLevel>
  41. <DocumentationFile>..\..\build\Release\LinFu.Reflection.XML</DocumentationFile>
  42. <Prefer32Bit>false</Prefer32Bit>
  43. </PropertyGroup>
  44. <ItemGroup>
  45. <Reference Include="System" />
  46. <Reference Include="System.Core">
  47. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  48. </Reference>
  49. <Reference Include="System.Xml.Linq">
  50. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  51. </Reference>
  52. <Reference Include="System.Data.DataSetExtensions">
  53. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  54. </Reference>
  55. <Reference Include="System.Data" />
  56. <Reference Include="System.Xml" />
  57. </ItemGroup>
  58. <ItemGroup>
  59. <Compile Include="..\CommonAssemblyInfo.cs">
  60. <Link>Properties\CommonAssemblyInfo.cs</Link>
  61. </Compile>
  62. <Compile Include="AssemblyActionLoader.cs" />
  63. <Compile Include="AssemblyLoader.cs" />
  64. <Compile Include="AssemblyTargetLoader.cs" />
  65. <Compile Include="BasePluginLoader.cs" />
  66. <Compile Include="CollectionExtensions.cs" />
  67. <Compile Include="DefaultDirectoryLister.cs" />
  68. <Compile Include="Interfaces\IActionLoader.cs" />
  69. <Compile Include="Interfaces\IAssemblyLoader.cs" />
  70. <Compile Include="Interfaces\IAssemblyTargetLoader.cs" />
  71. <Compile Include="Interfaces\IDirectoryListing.cs" />
  72. <Compile Include="Interfaces\IInitialize.cs" />
  73. <Compile Include="Interfaces\ILoader.cs" />
  74. <Compile Include="Interfaces\ILoaderPlugin.cs" />
  75. <Compile Include="Interfaces\ITypeExtractor.cs" />
  76. <Compile Include="ListLoader.cs" />
  77. <Compile Include="Loader.cs" />
  78. <Compile Include="LoaderPluginAttribute.cs" />
  79. <Compile Include="PluginLoader.cs" />
  80. <Compile Include="Plugins\BaseLoaderPlugin.cs" />
  81. <Compile Include="Plugins\BaseTargetLoaderPlugin.cs" />
  82. <Compile Include="Runtime.cs" />
  83. <Compile Include="TypeExtractor.cs" />
  84. </ItemGroup>
  85. <ItemGroup>
  86. <None Include="LinFu.snk" />
  87. </ItemGroup>
  88. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  89. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  90. Other similar extension points exist, see Microsoft.Common.targets.
  91. <Target Name="BeforeBuild">
  92. </Target>
  93. <Target Name="AfterBuild">
  94. </Target>
  95. -->
  96. </Project>