DICOM Compare.csproj 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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)' == '' ">x86</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{1C0C476C-507D-453F-90C2-C1C5E4B35BEF}</ProjectGuid>
  9. <OutputType>WinExe</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>Dicom.Compare</RootNamespace>
  12. <AssemblyName>Dicom.Compare</AssemblyName>
  13. <TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
  14. <TargetFrameworkProfile>
  15. </TargetFrameworkProfile>
  16. <FileAlignment>512</FileAlignment>
  17. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
  18. <RestorePackages>true</RestorePackages>
  19. <NuGetPackageImportStamp>
  20. </NuGetPackageImportStamp>
  21. </PropertyGroup>
  22. <PropertyGroup>
  23. <StartupObject>Dicom.Compare.Program</StartupObject>
  24. </PropertyGroup>
  25. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
  26. <DebugSymbols>true</DebugSymbols>
  27. <OutputPath>bin\Debug\</OutputPath>
  28. <DefineConstants>DEBUG;TRACE</DefineConstants>
  29. <DebugType>full</DebugType>
  30. <PlatformTarget>AnyCPU</PlatformTarget>
  31. <ErrorReport>prompt</ErrorReport>
  32. <CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
  33. <CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
  34. <CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
  35. <Prefer32Bit>false</Prefer32Bit>
  36. </PropertyGroup>
  37. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
  38. <OutputPath>bin\Release\</OutputPath>
  39. <DefineConstants>TRACE</DefineConstants>
  40. <Optimize>true</Optimize>
  41. <DebugType>pdbonly</DebugType>
  42. <PlatformTarget>AnyCPU</PlatformTarget>
  43. <ErrorReport>prompt</ErrorReport>
  44. <CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
  45. <CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
  46. <Prefer32Bit>false</Prefer32Bit>
  47. </PropertyGroup>
  48. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
  49. <DebugSymbols>true</DebugSymbols>
  50. <OutputPath>bin\x86\Debug\</OutputPath>
  51. <DefineConstants>DEBUG;TRACE</DefineConstants>
  52. <DebugType>full</DebugType>
  53. <PlatformTarget>x86</PlatformTarget>
  54. <ErrorReport>prompt</ErrorReport>
  55. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  56. <CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
  57. <CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
  58. </PropertyGroup>
  59. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
  60. <OutputPath>bin\x86\Release\</OutputPath>
  61. <DefineConstants>TRACE</DefineConstants>
  62. <Optimize>true</Optimize>
  63. <DebugType>pdbonly</DebugType>
  64. <PlatformTarget>x86</PlatformTarget>
  65. <ErrorReport>prompt</ErrorReport>
  66. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  67. <CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
  68. <CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
  69. </PropertyGroup>
  70. <ItemGroup>
  71. <Reference Include="Dicom.Core, Version=4.0.4.0, Culture=neutral, PublicKeyToken=3a13f649e28eb09a, processorArchitecture=MSIL">
  72. <HintPath>..\..\packages\fo-dicom.Desktop.4.0.5\lib\net45\Dicom.Core.dll</HintPath>
  73. </Reference>
  74. <Reference Include="System" />
  75. <Reference Include="System.Core" />
  76. <Reference Include="System.Drawing" />
  77. <Reference Include="System.Windows.Forms" />
  78. </ItemGroup>
  79. <ItemGroup>
  80. <Compile Include="..\..\SharedAssemblyInfo.cs">
  81. <Link>Properties\SharedAssemblyInfo.cs</Link>
  82. </Compile>
  83. <Compile Include="ListViewEx.cs">
  84. <SubType>Component</SubType>
  85. </Compile>
  86. <Compile Include="MainForm.cs">
  87. <SubType>Form</SubType>
  88. </Compile>
  89. <Compile Include="MainForm.Designer.cs">
  90. <DependentUpon>MainForm.cs</DependentUpon>
  91. </Compile>
  92. <Compile Include="Program.cs" />
  93. <Compile Include="Properties\AssemblyInfo.cs" />
  94. <EmbeddedResource Include="MainForm.resx">
  95. <DependentUpon>MainForm.cs</DependentUpon>
  96. </EmbeddedResource>
  97. <EmbeddedResource Include="Properties\Resources.resx">
  98. <Generator>ResXFileCodeGenerator</Generator>
  99. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  100. <SubType>Designer</SubType>
  101. </EmbeddedResource>
  102. <Compile Include="Properties\Resources.Designer.cs">
  103. <AutoGen>True</AutoGen>
  104. <DependentUpon>Resources.resx</DependentUpon>
  105. <DesignTime>True</DesignTime>
  106. </Compile>
  107. <None Include="app.config">
  108. <SubType>Designer</SubType>
  109. </None>
  110. <None Include="packages.config" />
  111. <None Include="Properties\Settings.settings">
  112. <Generator>SettingsSingleFileGenerator</Generator>
  113. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  114. </None>
  115. <Compile Include="Properties\Settings.Designer.cs">
  116. <AutoGen>True</AutoGen>
  117. <DependentUpon>Settings.settings</DependentUpon>
  118. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  119. </Compile>
  120. </ItemGroup>
  121. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  122. <Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
  123. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  124. <PropertyGroup>
  125. <ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
  126. </PropertyGroup>
  127. <Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
  128. <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'))" />
  129. </Target>
  130. <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')" />
  131. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  132. Other similar extension points exist, see Microsoft.Common.targets.
  133. <Target Name="BeforeBuild">
  134. </Target>
  135. <Target Name="AfterBuild">
  136. </Target>
  137. -->
  138. </Project>