Worklist.csproj 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" 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>{78E5DF7A-8829-450B-800C-B5079BC9106D}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <RootNamespace>Worklist</RootNamespace>
  10. <AssemblyName>Worklist</AssemblyName>
  11. <TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  14. <TargetFrameworkProfile />
  15. <NuGetPackageImportStamp>
  16. </NuGetPackageImportStamp>
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  19. <PlatformTarget>x86</PlatformTarget>
  20. <DebugSymbols>true</DebugSymbols>
  21. <DebugType>full</DebugType>
  22. <Optimize>false</Optimize>
  23. <OutputPath>bin\Debug\</OutputPath>
  24. <DefineConstants>DEBUG;TRACE</DefineConstants>
  25. <ErrorReport>prompt</ErrorReport>
  26. <WarningLevel>4</WarningLevel>
  27. </PropertyGroup>
  28. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  29. <PlatformTarget>AnyCPU</PlatformTarget>
  30. <DebugType>pdbonly</DebugType>
  31. <Optimize>true</Optimize>
  32. <OutputPath>bin\Release\</OutputPath>
  33. <DefineConstants>TRACE</DefineConstants>
  34. <ErrorReport>prompt</ErrorReport>
  35. <WarningLevel>4</WarningLevel>
  36. </PropertyGroup>
  37. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
  38. <DebugSymbols>true</DebugSymbols>
  39. <OutputPath>bin\x86\Debug\</OutputPath>
  40. <DefineConstants>DEBUG;TRACE</DefineConstants>
  41. <DebugType>full</DebugType>
  42. <PlatformTarget>x86</PlatformTarget>
  43. <ErrorReport>prompt</ErrorReport>
  44. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  45. <Prefer32Bit>true</Prefer32Bit>
  46. </PropertyGroup>
  47. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
  48. <OutputPath>bin\x86\Release\</OutputPath>
  49. <DefineConstants>TRACE</DefineConstants>
  50. <Optimize>true</Optimize>
  51. <DebugType>pdbonly</DebugType>
  52. <PlatformTarget>x86</PlatformTarget>
  53. <ErrorReport>prompt</ErrorReport>
  54. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  55. <Prefer32Bit>true</Prefer32Bit>
  56. </PropertyGroup>
  57. <ItemGroup>
  58. <Reference Include="System" />
  59. <Reference Include="System.Core" />
  60. <Reference Include="System.Xml.Linq" />
  61. <Reference Include="System.Data.DataSetExtensions" />
  62. <Reference Include="Microsoft.CSharp" />
  63. <Reference Include="System.Data" />
  64. <Reference Include="System.Net.Http" />
  65. <Reference Include="System.Xml" />
  66. <Reference Include="Dicom.Core">
  67. <HintPath>..\..\packages\fo-dicom.Desktop.4.0.7\lib\net45\Dicom.Core.dll</HintPath>
  68. </Reference>
  69. <Reference Include="mscorlib" />
  70. <Reference Include="System.ComponentModel" />
  71. <Reference Include="System.ComponentModel.DataAnnotations" />
  72. <Reference Include="System.Configuration" />
  73. <Reference Include="System.Configuration.Install" />
  74. <Reference Include="System.Management" />
  75. <Reference Include="System.Transactions" />
  76. <Reference Include="Newtonsoft.Json">
  77. <HintPath>packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
  78. </Reference>
  79. <Reference Include="Owin">
  80. <HintPath>packages\Owin.1.0\lib\net40\Owin.dll</HintPath>
  81. </Reference>
  82. <Reference Include="FreeSql">
  83. <HintPath>packages\FreeSql.2.5.200\lib\net45\FreeSql.dll</HintPath>
  84. </Reference>
  85. <Reference Include="System.Data.Common">
  86. <HintPath>packages\System.Data.Common.4.3.0\lib\net451\System.Data.Common.dll</HintPath>
  87. </Reference>
  88. <Reference Include="System.Data.SqlClient">
  89. <HintPath>packages\System.Data.SqlClient.4.8.2\lib\net451\System.Data.SqlClient.dll</HintPath>
  90. </Reference>
  91. <Reference Include="FreeSql.Provider.SqlServer">
  92. <HintPath>packages\FreeSql.Provider.SqlServer.2.5.200\lib\net451\FreeSql.Provider.SqlServer.dll</HintPath>
  93. </Reference>
  94. </ItemGroup>
  95. <ItemGroup>
  96. <Compile Include="..\..\SharedAssemblyInfo.cs">
  97. <Link>Properties\SharedAssemblyInfo.cs</Link>
  98. </Compile>
  99. <Compile Include="Model\IMppsSource.cs" />
  100. <Compile Include="Model\IWorklistItemsSource.cs" />
  101. <Compile Include="Model\MppsHandler.cs" />
  102. <Compile Include="Model\WorklistJsonHandler.cs" />
  103. <Compile Include="Model\WorklistItem.cs" />
  104. <Compile Include="Model\WorklistItemsProvider.cs" />
  105. <Compile Include="Program.cs" />
  106. <Compile Include="Properties\AssemblyInfo.cs" />
  107. <Compile Include="WorklistServer.cs" />
  108. <Compile Include="WorklistService.cs" />
  109. <Compile Include="Model\WorklistApiHandler.cs" />
  110. <Compile Include="Model\WorklistHandler.cs" />
  111. <Compile Include="Model\WorklistSQLServerHandler.cs" />
  112. <Compile Include="Model\bean\View_PACS.cs" />
  113. </ItemGroup>
  114. <ItemGroup>
  115. <None Include="App.config" />
  116. <None Include="packages.config" />
  117. <None Include="exam.json">
  118. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  119. </None>
  120. </ItemGroup>
  121. <ItemGroup>
  122. <Folder Include="Model\bean\" />
  123. </ItemGroup>
  124. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  125. <Import Project="packages\fo-dicom.Desktop.4.0.7\build\net45\fo-dicom.Desktop.targets" Condition="Exists('packages\fo-dicom.Desktop.4.0.7\build\net45\fo-dicom.Desktop.targets')" />
  126. <Import Project="..\..\packages\fo-dicom.Desktop.4.0.7\build\net45\fo-dicom.Desktop.targets" Condition="Exists('..\..\packages\fo-dicom.Desktop.4.0.7\build\net45\fo-dicom.Desktop.targets')" />
  127. </Project>