Worklist SCP.csproj 4.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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_SCP</RootNamespace>
  10. <AssemblyName>Worklist SCP</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. </ItemGroup>
  70. <ItemGroup>
  71. <Compile Include="..\..\SharedAssemblyInfo.cs">
  72. <Link>Properties\SharedAssemblyInfo.cs</Link>
  73. </Compile>
  74. <Compile Include="Model\IMppsSource.cs" />
  75. <Compile Include="Model\IWorklistItemsSource.cs" />
  76. <Compile Include="Model\MppsHandler.cs" />
  77. <Compile Include="Model\WorklistHandler.cs" />
  78. <Compile Include="Model\WorklistItem.cs" />
  79. <Compile Include="Model\WorklistItemsProvider.cs" />
  80. <Compile Include="Program.cs" />
  81. <Compile Include="Properties\AssemblyInfo.cs" />
  82. <Compile Include="WorklistServer.cs" />
  83. <Compile Include="WorklistService.cs" />
  84. </ItemGroup>
  85. <ItemGroup>
  86. <None Include="App.config" />
  87. <None Include="packages.config" />
  88. </ItemGroup>
  89. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  90. <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')" />
  91. <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')" />
  92. </Project>