hours-since-april-18-2019

This commit is contained in:
2025-08-13 18:59:23 -07:00
parent cb333ec871
commit ae70dda4c9
3 changed files with 36 additions and 7 deletions

19
.vscode/tasks.json vendored
View File

@ -7,8 +7,23 @@
"type": "process",
"args": [
"build",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
"--configuration",
"Release"
],
"problemMatcher": "$msCompile"
},
{
"label": "Push Package",
"command": "dotnet",
"type": "process",
"args": [
"nuget",
"push",
"PDF-Text-Stripper/bin/Release/Infineon.Mesa.PDF.Text.Stripper.4.8.0.asdf.nupkg",
"--api-key",
"asdf",
"--source",
"https://api.nuget.org/v3/index.json"
],
"problemMatcher": "$msCompile"
},

View File

@ -1,15 +1,29 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Authors>Mike Phares</Authors>
<Company>Infineon Technologies Americas Corp.</Company>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<LangVersion>10.0</LangVersion>
<OutputType>Exe</OutputType>
<PackageId>Infineon.Mesa.PDF.Text.Stripper</PackageId>
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
<TargetFrameworks>net48</TargetFrameworks>
<Version>4.8.0.2</Version>
</PropertyGroup>
<PropertyGroup>
<HoursSinceApril182019>$([System.Math]::Floor($([MSBuild]::Divide($([MSBuild]::Subtract($([System.DateTimeOffset]::UtcNow.ToUnixTimeSeconds()), 1555545600)), 3600))))</HoursSinceApril182019>
</PropertyGroup>
<PropertyGroup>
<Authors>Mike Phares</Authors>
<LangVersion>10.0</LangVersion>
<IncludeSymbols>true</IncludeSymbols>
<PackageReadmeFile>README.md</PackageReadmeFile>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>Infineon.Mesa.PDF.Text.Stripper</PackageId>
<Company>Infineon Technologies Americas Corp.</Company>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Version>4.8.0.$([System.Math]::Floor($([MSBuild]::Divide($([MSBuild]::Subtract($([System.DateTimeOffset]::UtcNow.ToUnixTimeSeconds()), 1555545600)), 3600))))</Version>
</PropertyGroup>
<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net48' ">
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Core" />

View File

@ -1,6 +1,6 @@
{
"sdk": {
"version": "8.0.100"
"version": "8.0.118"
}
}