123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>netstandard2.0</TargetFramework>
- <PlatformTarget>x64</PlatformTarget>
- <PackageOutputPath>..\Bin\</PackageOutputPath>
- <Version>1.0.0</Version>
- <AssemblyVersion>1.0.0.4</AssemblyVersion>
- <BaseOutputPath>..\Bin\</BaseOutputPath>
- <Authors>Vinno.IDS</Authors>
- <Company>Vinno</Company>
- <Product>AutoBlineCalculation</Product>
- <FileVersion>1.0.0.4</FileVersion>
-
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
- <PlatformTarget>x64</PlatformTarget>
- <OutputPath>..\Bin\</OutputPath>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
- <DefineConstants>$(DefineConstants)TRACE;ENABLE_AF_DEBUG_LOGS;ENABLE_AF_DEBUG_IMAGES</DefineConstants>
- <LangVersion>preview</LangVersion>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
- <PlatformTarget>x64</PlatformTarget>
- <OutputPath>..\Bin\</OutputPath>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
- <DefineConstants>$(DefineConstants)</DefineConstants>
- <LangVersion>preview</LangVersion>
- </PropertyGroup>
- <Target Name="PreBuild" BeforeTargets="PreBuildEvent">
- <Exec Command="xcopy "$(OutputPath)*.dll" "$(SolutionDir)Bin\" /y
xcopy "..\ValidModels\*.emd" "$(OutputPath)Networks\" /y" />
- </Target>
- <ItemGroup>
- <PackageReference Include="Microsoft.ML.OnnxRuntime.Managed" Version="1.10.0" />
- </ItemGroup>
- <ItemGroup>
- <Reference Include="AI.Common">
- <HintPath>..\Depends\AI.Common.dll</HintPath>
- </Reference>
- </ItemGroup>
- <Target Name="PreBuild" BeforeTargets="PreBuildEvent">
- <Exec Command="xcopy "..\Depends\*.dll" "$(OutputPath)" /y
xcopy "..\ValidModels\*.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>
- </Project>
|