12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>netstandard2.0</TargetFramework>
- <Platforms>x64</Platforms>
- <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
- <BaseOutputPath>bin\</BaseOutputPath>
- <AllowUnsafeBlocks>False</AllowUnsafeBlocks>
- </PropertyGroup>
- <Target Name="PreBuild" BeforeTargets="PreBuildEvent">
- <Exec Command="xcopy "..\Depends\*.dll" "$(OutputPath)" /y
xcopy "..\Depends\Networks\*.emd" "$(OutputPath)Networks\" /y" />
- </Target>
- <Target Name="PostBuild" AfterTargets="PostBuildEvent">
- <Exec Command="xcopy "$(OutputPath)*.dll" "$(SolutionDir)Bin\" /y
xcopy "$(OutputPath)Networks\*.emd" "$(SolutionDir)Bin\Networks\" /y" />
- </Target>
- <ItemGroup>
- <Compile Remove="AIClipImageStorer.cs" />
- <Compile Remove="CarotidLowerIntimaMeasurement.cs" />
- <Compile Remove="CarotidUpperIntimaMeasurement.cs" />
- <Compile Remove="CntkCpu.cs" />
- <Compile Remove="CntkDetect.cs" />
- <Compile Remove="DetectVessel.cs" />
- <Compile Remove="GetIntimaImage.cs" />
- <Compile Remove="GetModelVesselAndPlaque.cs" />
- <Compile Remove="ImageTools.cs" />
- <Compile Remove="MathTools2D.cs" />
- <Compile Remove="PointsSmooth.cs" />
- <Compile Remove="RemovePit.cs" />
- </ItemGroup>
- <ItemGroup>
- <None Remove="Cntk.Core.Managed-2.7.dll" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\IntimediaMeasurement\IntimediaMeasurement.vcxproj" />
- <ProjectReference Include="..\PlaqueProcessingCpp\PlaqueProcessingCpp.vcxproj" />
- </ItemGroup>
- <ItemGroup>
- <Reference Include="AI.Common">
- <HintPath>..\Depends\AI.Common.dll</HintPath>
- </Reference>
- <Reference Include="AI.DiagSystem">
- <HintPath>..\Depends\AI.DiagSystem.dll</HintPath>
- </Reference>
- <Reference Include="AI.Reconstruction">
- <HintPath>..\Bin\netstandard2.0\AI.Reconstruction.dll</HintPath>
- </Reference>
- <Reference Include="ImageShowUtilsLib">
- <HintPath>..\Depends\ImageShowUtilsLib.dll</HintPath>
- </Reference>
- </ItemGroup>
- </Project>
|