45 lines
2.3 KiB
XML
45 lines
2.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<RuntimeIdentifiers>win-x64;linux-x64</RuntimeIdentifiers>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<HoursSinceNovember142023>$([System.Math]::Floor($([MSBuild]::Divide($([MSBuild]::Subtract($([System.DateTimeOffset]::UtcNow.ToUnixTimeSeconds()), 1699920000)), 3600))))</HoursSinceNovember142023>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<PackageId>Phares.AA.Shared</PackageId>
|
|
<Version>8.0.114.$([System.Math]::Floor($([MSBuild]::Divide($([MSBuild]::Subtract($([System.DateTimeOffset]::UtcNow.ToUnixTimeSeconds()), 1699920000)), 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="System.Text.Json" Version="9.0.3" />
|
|
</ItemGroup>
|
|
</Project> |