1
0

BreastLesionDetectLib.csproj 880 B

123456789101112131415161718192021222324
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netstandard2.0</TargetFramework>
  4. </PropertyGroup>
  5. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  6. <PlatformTarget>x64</PlatformTarget>
  7. </PropertyGroup>
  8. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  9. <PlatformTarget>x64</PlatformTarget>
  10. </PropertyGroup>
  11. <Target Name="PostBuild" AfterTargets="PostBuildEvent">
  12. <Exec Command="xcopy &quot;$(SolutionDir)Depends\*.*&quot; &quot;$(SolutionDir)Bin\&quot; /y&#xD;&#xA;xcopy &quot;$(SolutionDir)ValidModels\*.emd&quot; &quot;$(SolutionDir)Bin\Networks\&quot; /y" />
  13. </Target>
  14. <ItemGroup>
  15. <PackageReference Include="Microsoft.ML.OnnxRuntime" Version="1.9.0" />
  16. <PackageReference Include="Microsoft.ML.OnnxRuntime.Managed" Version="1.9.0" />
  17. </ItemGroup>
  18. </Project>