Tools.csproj 681 B

123456789101112131415161718192021222324252627
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netstandard2.0</TargetFramework>
  4. <Platforms>x64</Platforms>
  5. </PropertyGroup>
  6. <ItemGroup>
  7. <Compile Remove="MathTools3D.cs" />
  8. <Compile Remove="SliceHelper.cs" />
  9. <Compile Remove="SurfaceFile.cs" />
  10. </ItemGroup>
  11. <ItemGroup>
  12. <ProjectReference Include="..\AI.Reconstruction\AI.Reconstruction.csproj" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <Reference Include="AI.Common">
  16. <HintPath>..\Depends\AI.Common.dll</HintPath>
  17. </Reference>
  18. <Reference Include="AI.DiagSystem">
  19. <HintPath>..\Depends\AI.DiagSystem.dll</HintPath>
  20. </Reference>
  21. </ItemGroup>
  22. </Project>