/examples/ioc/Extensibility/SamplePlugin/SamplePlugin.csproj

http://github.com/philiplaureano/LinFu · MSBuild · 92 lines · 85 code · 0 blank · 7 comment · 4 complexity · 2bf9390fb9b66a5482efb86561658415 MD5 · raw file

  1. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
  2. <PropertyGroup>
  3. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  4. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  5. <ProductVersion>9.0.21022</ProductVersion>
  6. <SchemaVersion>2.0</SchemaVersion>
  7. <ProjectGuid>{1CEB2EA8-7077-4A0E-885F-7206C08DB7DC}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>SamplePlugin</RootNamespace>
  11. <AssemblyName>SamplePlugin</AssemblyName>
  12. <FileUpgradeFlags>
  13. </FileUpgradeFlags>
  14. <OldToolsVersion>2.0</OldToolsVersion>
  15. <UpgradeBackupLocation>
  16. </UpgradeBackupLocation>
  17. <PublishUrl>publish\</PublishUrl>
  18. <Install>true</Install>
  19. <InstallFrom>Disk</InstallFrom>
  20. <UpdateEnabled>false</UpdateEnabled>
  21. <UpdateMode>Foreground</UpdateMode>
  22. <UpdateInterval>7</UpdateInterval>
  23. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  24. <UpdatePeriodically>false</UpdatePeriodically>
  25. <UpdateRequired>false</UpdateRequired>
  26. <MapFileExtensions>true</MapFileExtensions>
  27. <ApplicationRevision>0</ApplicationRevision>
  28. <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
  29. <IsWebBootstrapper>false</IsWebBootstrapper>
  30. <UseApplicationTrust>false</UseApplicationTrust>
  31. <BootstrapperEnabled>true</BootstrapperEnabled>
  32. <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
  33. </PropertyGroup>
  34. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  35. <DebugSymbols>true</DebugSymbols>
  36. <DebugType>full</DebugType>
  37. <Optimize>false</Optimize>
  38. <OutputPath>bin\Debug\</OutputPath>
  39. <DefineConstants>DEBUG;TRACE</DefineConstants>
  40. <ErrorReport>prompt</ErrorReport>
  41. <WarningLevel>4</WarningLevel>
  42. </PropertyGroup>
  43. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  44. <DebugType>pdbonly</DebugType>
  45. <Optimize>true</Optimize>
  46. <OutputPath>bin\Release\</OutputPath>
  47. <DefineConstants>TRACE</DefineConstants>
  48. <ErrorReport>prompt</ErrorReport>
  49. <WarningLevel>4</WarningLevel>
  50. </PropertyGroup>
  51. <ItemGroup>
  52. <Reference Include="LinFu.Core, Version=2.0.1.17052, Culture=neutral, processorArchitecture=MSIL">
  53. <SpecificVersion>False</SpecificVersion>
  54. <HintPath>..\..\bin\LinFu.Core.dll</HintPath>
  55. </Reference>
  56. <Reference Include="System" />
  57. <Reference Include="System.Core">
  58. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  59. </Reference>
  60. <Reference Include="System.Data" />
  61. <Reference Include="System.Xml" />
  62. </ItemGroup>
  63. <ItemGroup>
  64. <Compile Include="ExamplePlugin.cs" />
  65. <Compile Include="Properties\AssemblyInfo.cs" />
  66. </ItemGroup>
  67. <ItemGroup>
  68. <BootstrapperPackage Include="Microsoft.Net.Framework.2.0">
  69. <Visible>False</Visible>
  70. <ProductName>.NET Framework 2.0 %28x86%29</ProductName>
  71. <Install>true</Install>
  72. </BootstrapperPackage>
  73. <BootstrapperPackage Include="Microsoft.Net.Framework.3.0">
  74. <Visible>False</Visible>
  75. <ProductName>.NET Framework 3.0 %28x86%29</ProductName>
  76. <Install>false</Install>
  77. </BootstrapperPackage>
  78. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5">
  79. <Visible>False</Visible>
  80. <ProductName>.NET Framework 3.5</ProductName>
  81. <Install>false</Install>
  82. </BootstrapperPackage>
  83. </ItemGroup>
  84. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  85. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  86. Other similar extension points exist, see Microsoft.Common.targets.
  87. <Target Name="BeforeBuild">
  88. </Target>
  89. <Target Name="AfterBuild">
  90. </Target>
  91. -->
  92. </Project>