54 lines
2.8 KiB
XML
54 lines
2.8 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.Distance</PackageId>
|
|
<Version>9.0.104.$([System.Math]::Floor($([MSBuild]::Divide($([MSBuild]::Subtract($([System.DateTimeOffset]::UtcNow.ToUnixTimeSeconds()), 1731369600)), 3600))))</Version>
|
|
<Company>Phares</Company>
|
|
<Authors>Mike Phares</Authors>
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
<PackageReadmeFile>read-me.md</PackageReadmeFile>
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
</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>
|
|
<None Include=".vscode\read-me.md" Pack="true" PackagePath="\"/>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Humanizer.Core" Version="2.14.1" />
|
|
<PackageReference Include="MetadataExtractor" Version="2.8.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.1" />
|
|
<PackageReference Include="WindowsShortcutFactory" Version="1.2.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\FaceRecognitionDotNet\AA.FaceRecognitionDotNet.csproj" />
|
|
<ProjectReference Include="..\Metadata\AA.Metadata.csproj" />
|
|
<ProjectReference Include="..\Shared\AA.Shared.csproj" />
|
|
</ItemGroup>
|
|
</Project> |