/src/SampleFileWatcherLibrary/SampleFileWatcherLibrary.csproj

http://github.com/philiplaureano/LinFu · MSBuild · 80 lines · 73 code · 0 blank · 7 comment · 4 complexity · 971f2e4604280c6aa0d1c1d24145775a 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>{C93694B2-A776-4D91-8C1A-2A73B2479133}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>SampleFileWatcherLibrary</RootNamespace>
  12. <AssemblyName>SampleFileWatcherLibrary</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>..\..\build\Debug\UnitTests\</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="SampleFileWatcherServiceClassAddedAtRuntime.cs" />
  56. <Compile Include="Properties\AssemblyInfo.cs" />
  57. </ItemGroup>
  58. <ItemGroup>
  59. <ProjectReference Include="..\LinFu.IoC.Common\LinFu.IoC.Common.csproj">
  60. <Project>{D027A765-4D2E-48AE-9D83-C5F5AFA7D8C1}</Project>
  61. <Name>LinFu.IoC.Common</Name>
  62. </ProjectReference>
  63. <ProjectReference Include="..\LinFu.IoC\LinFu.IoC.csproj">
  64. <Project>{FA3D5517-EFF4-4363-AFF2-EF67B981334E}</Project>
  65. <Name>LinFu.IoC</Name>
  66. </ProjectReference>
  67. <ProjectReference Include="..\SampleLibrary\SampleLibrary.csproj">
  68. <Project>{DEFBEF97-B03C-448F-9518-394735439E2E}</Project>
  69. <Name>SampleLibrary</Name>
  70. </ProjectReference>
  71. </ItemGroup>
  72. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  73. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  74. Other similar extension points exist, see Microsoft.Common.targets.
  75. <Target Name="BeforeBuild">
  76. </Target>
  77. <Target Name="AfterBuild">
  78. </Target>
  79. -->
  80. </Project>