mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-16 21:00:14 +00:00
118 lines
5.1 KiB
XML
118 lines
5.1 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||
|
|
<ItemGroup Label="ProjectConfigurations">
|
||
|
|
<ProjectConfiguration Include="Debug|Win32">
|
||
|
|
<Configuration>Debug</Configuration>
|
||
|
|
<Platform>Win32</Platform>
|
||
|
|
</ProjectConfiguration>
|
||
|
|
<ProjectConfiguration Include="Release|Win32">
|
||
|
|
<Configuration>Release</Configuration>
|
||
|
|
<Platform>Win32</Platform>
|
||
|
|
</ProjectConfiguration>
|
||
|
|
<ProjectConfiguration Include="Debug|x64">
|
||
|
|
<Configuration>Debug</Configuration>
|
||
|
|
<Platform>x64</Platform>
|
||
|
|
</ProjectConfiguration>
|
||
|
|
<ProjectConfiguration Include="Release|x64">
|
||
|
|
<Configuration>Release</Configuration>
|
||
|
|
<Platform>x64</Platform>
|
||
|
|
</ProjectConfiguration>
|
||
|
|
</ItemGroup>
|
||
|
|
<PropertyGroup>
|
||
|
|
<EnableNuGetPackageRestore>true</EnableNuGetPackageRestore>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<Import Project="Microsoft.AI.MachineLearning.Tests.props" />
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<CppWinRTPackage>true</CppWinRTPackage>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="Microsoft.AI.MachineLearning" Version="$(WindowsAIVersion)" targetframework="native" />
|
||
|
|
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="2.0.200615.7" targetframework="native" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<ClCompile Include="main.cpp">
|
||
|
|
<FileType>Document</FileType>
|
||
|
|
<DeploymentContent>true</DeploymentContent>
|
||
|
|
</ClCompile>
|
||
|
|
</ItemGroup>
|
||
|
|
<ItemGroup>
|
||
|
|
<None Include="..\..\testdata\squeezenet.onnx">
|
||
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||
|
|
<Visible>true</Visible>
|
||
|
|
</None>
|
||
|
|
</ItemGroup>
|
||
|
|
<ItemGroup>
|
||
|
|
<None Include="..\..\..\winml\test\collateral\images\kitten_224.png">
|
||
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||
|
|
<Visible>true</Visible>
|
||
|
|
</None>
|
||
|
|
</ItemGroup>
|
||
|
|
<PropertyGroup Label="Globals">
|
||
|
|
<VCProjectVersion>16.0</VCProjectVersion>
|
||
|
|
<ProjectGuid>{3BB97C0D-DEC9-4828-A821-78147AE5A488}</ProjectGuid>
|
||
|
|
<Keyword>Win32Proj</Keyword>
|
||
|
|
<RootNamespace>Microsoft.AI.MachineLearning.Tests</RootNamespace>
|
||
|
|
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
|
||
|
|
</PropertyGroup>
|
||
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||
|
|
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||
|
|
<PlatformToolset>v142</PlatformToolset>
|
||
|
|
</PropertyGroup>
|
||
|
|
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||
|
|
<PlatformToolset>v142</PlatformToolset>
|
||
|
|
</PropertyGroup>
|
||
|
|
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||
|
|
<PlatformToolset>v142</PlatformToolset>
|
||
|
|
</PropertyGroup>
|
||
|
|
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||
|
|
<PlatformToolset>v142</PlatformToolset>
|
||
|
|
</PropertyGroup>
|
||
|
|
<PropertyGroup>
|
||
|
|
<ConfigurationType>Application</ConfigurationType>
|
||
|
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||
|
|
<CharacterSet>Unicode</CharacterSet>
|
||
|
|
</PropertyGroup>
|
||
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||
|
|
<ImportGroup Label="ExtensionSettings">
|
||
|
|
</ImportGroup>
|
||
|
|
<ImportGroup Label="Shared">
|
||
|
|
</ImportGroup>
|
||
|
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||
|
|
</ImportGroup>
|
||
|
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||
|
|
</ImportGroup>
|
||
|
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||
|
|
</ImportGroup>
|
||
|
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||
|
|
</ImportGroup>
|
||
|
|
<PropertyGroup Label="UserMacros" />
|
||
|
|
<PropertyGroup>
|
||
|
|
<LinkIncremental>true</LinkIncremental>
|
||
|
|
</PropertyGroup>
|
||
|
|
<ItemDefinitionGroup>
|
||
|
|
<ClCompile>
|
||
|
|
<PrecompiledHeader>
|
||
|
|
</PrecompiledHeader>
|
||
|
|
<WarningLevel>Level3</WarningLevel>
|
||
|
|
<SDLCheck>true</SDLCheck>
|
||
|
|
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||
|
|
<ConformanceMode>true</ConformanceMode>
|
||
|
|
<LanguageStandard>stdcpp17</LanguageStandard>
|
||
|
|
</ClCompile>
|
||
|
|
<Link>
|
||
|
|
<SubSystem>Console</SubSystem>
|
||
|
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||
|
|
</Link>
|
||
|
|
</ItemDefinitionGroup>
|
||
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||
|
|
<ImportGroup Label="ExtensionTargets">
|
||
|
|
</ImportGroup>
|
||
|
|
</Project>
|