QueryRetrieve SCP.csproj 4.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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>{8E430BBE-C5D2-40FB-9F26-7B2BCB2B3F2A}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <RootNamespace>QueryRetrieve_SCP</RootNamespace>
  10. <AssemblyName>QueryRetrieve SCP</AssemblyName>
  11. <TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  14. <NuGetPackageImportStamp>
  15. </NuGetPackageImportStamp>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <PlatformTarget>AnyCPU</PlatformTarget>
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>bin\Debug\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. <LangVersion>6</LangVersion>
  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. <LangVersion>6</LangVersion>
  44. <ErrorReport>prompt</ErrorReport>
  45. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  46. <Prefer32Bit>true</Prefer32Bit>
  47. </PropertyGroup>
  48. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
  49. <OutputPath>bin\x86\Release\</OutputPath>
  50. <DefineConstants>TRACE</DefineConstants>
  51. <Optimize>true</Optimize>
  52. <DebugType>pdbonly</DebugType>
  53. <PlatformTarget>x86</PlatformTarget>
  54. <ErrorReport>prompt</ErrorReport>
  55. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  56. <Prefer32Bit>true</Prefer32Bit>
  57. </PropertyGroup>
  58. <ItemGroup>
  59. <Reference Include="Dicom.Core, Version=4.0.4.0, Culture=neutral, PublicKeyToken=3a13f649e28eb09a, processorArchitecture=MSIL">
  60. <HintPath>..\..\packages\fo-dicom.Desktop.4.0.5\lib\net45\Dicom.Core.dll</HintPath>
  61. </Reference>
  62. <Reference Include="System" />
  63. <Reference Include="System.Core" />
  64. <Reference Include="System.Xml.Linq" />
  65. <Reference Include="System.Data.DataSetExtensions" />
  66. <Reference Include="Microsoft.CSharp" />
  67. <Reference Include="System.Data" />
  68. <Reference Include="System.Net.Http" />
  69. <Reference Include="System.Xml" />
  70. </ItemGroup>
  71. <ItemGroup>
  72. <Compile Include="..\..\SharedAssemblyInfo.cs">
  73. <Link>Properties\SharedAssemblyInfo.cs</Link>
  74. </Compile>
  75. <Compile Include="Model\IDicomImageFinderService.cs" />
  76. <Compile Include="Model\StupidSlowFinderService.cs" />
  77. <Compile Include="Program.cs" />
  78. <Compile Include="Properties\AssemblyInfo.cs" />
  79. <Compile Include="QRService.cs" />
  80. <Compile Include="QRServer.cs" />
  81. </ItemGroup>
  82. <ItemGroup>
  83. <None Include="App.config" />
  84. <None Include="packages.config" />
  85. </ItemGroup>
  86. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  87. <Import Project="..\..\packages\fo-dicom.Desktop.4.0.5\build\net45\fo-dicom.Desktop.targets" Condition="Exists('..\..\packages\fo-dicom.Desktop.4.0.5\build\net45\fo-dicom.Desktop.targets')" />
  88. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  89. <PropertyGroup>
  90. <ErrorText>Dieses Projekt verweist auf mindestens ein NuGet-Paket, das auf diesem Computer fehlt. Verwenden Sie die Wiederherstellung von NuGet-Paketen, um die fehlenden Dateien herunterzuladen. Weitere Informationen finden Sie unter "http://go.microsoft.com/fwlink/?LinkID=322105". Die fehlende Datei ist "{0}".</ErrorText>
  91. </PropertyGroup>
  92. <Error Condition="!Exists('..\..\packages\fo-dicom.Desktop.4.0.5\build\net45\fo-dicom.Desktop.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\fo-dicom.Desktop.4.0.5\build\net45\fo-dicom.Desktop.targets'))" />
  93. </Target>
  94. </Project>