123456789101112131415161718192021222324252627 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>netstandard2.0</TargetFramework>
- <Platforms>x64</Platforms>
- </PropertyGroup>
- <ItemGroup>
- <Compile Remove="MathTools3D.cs" />
- <Compile Remove="SliceHelper.cs" />
- <Compile Remove="SurfaceFile.cs" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\AI.Reconstruction\AI.Reconstruction.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Reference Include="AI.Common">
- <HintPath>..\Depends\AI.Common.dll</HintPath>
- </Reference>
- <Reference Include="AI.DiagSystem">
- <HintPath>..\Depends\AI.DiagSystem.dll</HintPath>
- </Reference>
- </ItemGroup>
- </Project>
|