TaskDatabase.csproj 4.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{ADE36AA5-FCA8-4E5B-A27E-2360884404B3}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>TaskDatabase</RootNamespace>
  11. <AssemblyName>TaskDatabase</AssemblyName>
  12. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <Deterministic>true</Deterministic>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>..\..\OutputDll\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>..\..\OutputDll\</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. </PropertyGroup>
  33. <ItemGroup>
  34. <Reference Include="Antlr3.Runtime, Version=3.5.0.2, Culture=neutral, PublicKeyToken=eb42632606e9261f, processorArchitecture=MSIL">
  35. <HintPath>..\..\packages\Antlr3.Runtime.3.5.1\lib\net40-client\Antlr3.Runtime.dll</HintPath>
  36. </Reference>
  37. <Reference Include="Iesi.Collections, Version=4.0.0.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4, processorArchitecture=MSIL">
  38. <HintPath>..\..\packages\Iesi.Collections.4.0.4\lib\net461\Iesi.Collections.dll</HintPath>
  39. </Reference>
  40. <Reference Include="Microsoft.QualityTools.Testing.Fakes, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  41. <SpecificVersion>False</SpecificVersion>
  42. </Reference>
  43. <Reference Include="Newtonsoft.Json, Version=11.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  44. <HintPath>..\..\packages\Newtonsoft.Json.11.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
  45. </Reference>
  46. <Reference Include="NHibernate, Version=5.2.0.0, Culture=neutral, PublicKeyToken=aa95f207798dfdb4, processorArchitecture=MSIL">
  47. <HintPath>..\..\packages\NHibernate.5.2.7\lib\net461\NHibernate.dll</HintPath>
  48. </Reference>
  49. <Reference Include="Remotion.Linq, Version=2.2.0.0, Culture=neutral, PublicKeyToken=fee00910d6e5f53b, processorArchitecture=MSIL">
  50. <HintPath>..\..\packages\Remotion.Linq.2.2.0\lib\net45\Remotion.Linq.dll</HintPath>
  51. </Reference>
  52. <Reference Include="Remotion.Linq.EagerFetching, Version=2.2.0.0, Culture=neutral, PublicKeyToken=fee00910d6e5f53b, processorArchitecture=MSIL">
  53. <HintPath>..\packages\Remotion.Linq.EagerFetching.2.2.0\lib\net45\Remotion.Linq.EagerFetching.dll</HintPath>
  54. </Reference>
  55. <Reference Include="System" />
  56. <Reference Include="System.ComponentModel" />
  57. <Reference Include="System.ComponentModel.DataAnnotations" />
  58. <Reference Include="System.Configuration" />
  59. <Reference Include="System.Configuration.Install" />
  60. <Reference Include="System.Core" />
  61. <Reference Include="System.Drawing" />
  62. <Reference Include="System.Drawing.Design" />
  63. <Reference Include="System.Management" />
  64. <Reference Include="System.ServiceModel" />
  65. <Reference Include="System.Transactions" />
  66. <Reference Include="System.Xml.Linq" />
  67. <Reference Include="System.Data.DataSetExtensions" />
  68. <Reference Include="Microsoft.CSharp" />
  69. <Reference Include="System.Data" />
  70. <Reference Include="System.Net.Http" />
  71. <Reference Include="System.Xml" />
  72. </ItemGroup>
  73. <ItemGroup>
  74. <Compile Include="Model\TaskModel.cs" />
  75. <Compile Include="NHibernateHelper.cs" />
  76. <Compile Include="Model\DownloadTaskModel.cs" />
  77. <Compile Include="Properties\AssemblyInfo.cs" />
  78. <Compile Include="TaskService.cs" />
  79. </ItemGroup>
  80. <ItemGroup>
  81. <None Include="packages.config" />
  82. </ItemGroup>
  83. <ItemGroup>
  84. <EmbeddedResource Include="Mappings\TaskModel.hbm.xml">
  85. <SubType>Designer</SubType>
  86. </EmbeddedResource>
  87. </ItemGroup>
  88. <ItemGroup>
  89. <Content Include="hibernate.cfg.xml">
  90. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  91. <SubType>Designer</SubType>
  92. </Content>
  93. </ItemGroup>
  94. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  95. </Project>