54 lines
3.0 KiB
XML
54 lines
3.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<OutputType>library</OutputType>
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<HoursSinceNovember122024>$([System.Math]::Floor($([MSBuild]::Divide($([MSBuild]::Subtract($([System.DateTimeOffset]::UtcNow.ToUnixTimeSeconds()), 1731369600)), 3600))))</HoursSinceNovember122024>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<PackageId>Phares.AA.FaceRecognitionDotNet</PackageId>
|
|
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
|
<Version>9.0.104.$([System.Math]::Floor($([MSBuild]::Divide($([MSBuild]::Subtract($([System.DateTimeOffset]::UtcNow.ToUnixTimeSeconds()), 1731369600)), 3600))))</Version>
|
|
<Authors>Mike Phares</Authors>
|
|
<Company>Phares</Company>
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<IsWindows Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Windows)))' == 'true'">true</IsWindows>
|
|
<IsOSX Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))' == 'true'">true</IsOSX>
|
|
<IsLinux Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))' == 'true'">true</IsLinux>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(IsWindows)'=='true'">
|
|
<DefineConstants>Windows</DefineConstants>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(IsOSX)'=='true'">
|
|
<DefineConstants>OSX</DefineConstants>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(IsLinux)'=='true'">
|
|
<DefineConstants>Linux</DefineConstants>
|
|
</PropertyGroup>
|
|
<ItemGroup Condition="'$(RuntimeIdentifier)' == 'browser-wasm'">
|
|
<SupportedPlatform Include="browser" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="DlibDotNet" Version="19.21.0.20220724" />
|
|
<!--PackageReference Include="configuration.MKL" Version="19.21.0.20210302" /-->
|
|
<!--PackageReference Include="DlibDotNet-WithCUDA" Version="19.17.0.20190429" /-->
|
|
<!--PackageReference Include="configuration.CUDA92" Version="19.21.0.20210302" /-->
|
|
<!--PackageReference Include="configuration.CUDA102" Version="19.21.0.20210302" /-->
|
|
<!--PackageReference Include="configuration.CUDA110" Version="19.21.0.20210302" /-->
|
|
<!--PackageReference Include="configuration.CUDA111" Version="19.21.0.20210302" /-->
|
|
<!--PackageReference Include="configuration.CUDA112" Version="19.21.0.20210302" /-->
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Shared\AA.Shared.csproj" />
|
|
</ItemGroup>
|
|
</Project> |