Reconstruction3DHelper.csproj 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netstandard2.0</TargetFramework>
  4. <Platforms>x64</Platforms>
  5. <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
  6. <BaseOutputPath>bin\</BaseOutputPath>
  7. <AllowUnsafeBlocks>False</AllowUnsafeBlocks>
  8. </PropertyGroup>
  9. <Target Name="PreBuild" BeforeTargets="PreBuildEvent">
  10. <Exec Command="xcopy &quot;..\Depends\*.dll&quot; &quot;$(OutputPath)&quot; /y&#xD;&#xA;xcopy &quot;..\Depends\Networks\*.emd&quot; &quot;$(OutputPath)Networks\&quot; /y" />
  11. </Target>
  12. <Target Name="PostBuild" AfterTargets="PostBuildEvent">
  13. <Exec Command="xcopy &quot;$(OutputPath)*.dll&quot; &quot;$(SolutionDir)Bin\&quot; /y&#xD;&#xA;xcopy &quot;$(OutputPath)Networks\*.emd&quot; &quot;$(SolutionDir)Bin\Networks\&quot; /y" />
  14. </Target>
  15. <ItemGroup>
  16. <Compile Remove="AIClipImageStorer.cs" />
  17. <Compile Remove="CarotidLowerIntimaMeasurement.cs" />
  18. <Compile Remove="CarotidUpperIntimaMeasurement.cs" />
  19. <Compile Remove="CntkCpu.cs" />
  20. <Compile Remove="CntkDetect.cs" />
  21. <Compile Remove="DetectVessel.cs" />
  22. <Compile Remove="GetIntimaImage.cs" />
  23. <Compile Remove="GetModelVesselAndPlaque.cs" />
  24. <Compile Remove="ImageTools.cs" />
  25. <Compile Remove="MathTools2D.cs" />
  26. <Compile Remove="PointsSmooth.cs" />
  27. <Compile Remove="RemovePit.cs" />
  28. </ItemGroup>
  29. <ItemGroup>
  30. <None Remove="Cntk.Core.Managed-2.7.dll" />
  31. </ItemGroup>
  32. <ItemGroup>
  33. <ProjectReference Include="..\IntimediaMeasurement\IntimediaMeasurement.vcxproj" />
  34. <ProjectReference Include="..\PlaqueProcessingCpp\PlaqueProcessingCpp.vcxproj" />
  35. </ItemGroup>
  36. <ItemGroup>
  37. <Reference Include="AI.Common">
  38. <HintPath>..\Depends\AI.Common.dll</HintPath>
  39. </Reference>
  40. <Reference Include="AI.DiagSystem">
  41. <HintPath>..\Depends\AI.DiagSystem.dll</HintPath>
  42. </Reference>
  43. <Reference Include="AI.Reconstruction">
  44. <HintPath>..\Bin\netstandard2.0\AI.Reconstruction.dll</HintPath>
  45. </Reference>
  46. <Reference Include="ImageShowUtilsLib">
  47. <HintPath>..\Depends\ImageShowUtilsLib.dll</HintPath>
  48. </Reference>
  49. </ItemGroup>
  50. </Project>