fix: add direct CronTimer reference refs NOISSUE
This commit is contained in:
49
CronTimer/CronTimer.csproj
Normal file
49
CronTimer/CronTimer.csproj
Normal file
@@ -0,0 +1,49 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<LangVersion>latest</LangVersion>
|
||||
<TargetFrameworks>net461;netstandard2.1</TargetFrameworks>
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<!-- AssemblyFileVersionAttribute -->
|
||||
<FileVersion>2.0.1</FileVersion>
|
||||
<!-- AssemblyInformationalVersionAttribute -->
|
||||
<Version>$(FileVersion)</Version>
|
||||
<!-- AssemblyVersionAttribute -->
|
||||
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||||
<!-- Nuget -->
|
||||
<PackageVersion>$(Version)</PackageVersion>
|
||||
<PackageId>CronTimer</PackageId>
|
||||
<Company>https://github.com/ramonsmits</Company>
|
||||
<Authors>ramonsmits</Authors>
|
||||
<Description>Simple .net Timer that is based on cron expressions with second accuracy to fire timer events to a very specific schedule.</Description>
|
||||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
|
||||
<PackageReleaseNotes></PackageReleaseNotes>
|
||||
<PackageProjectUrl>https://github.com/ramonsmits/CronTimer/tree/$(PackageVersion)</PackageProjectUrl>
|
||||
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
||||
<IncludeSymbols>True</IncludeSymbols>
|
||||
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
||||
<IncludeSource>True</IncludeSource>
|
||||
<RepositoryUrl>https://github.com/ramonsmits/CronTimer</RepositoryUrl>
|
||||
<Copyright>Copyright 2022 (c) Ramon Smits</Copyright>
|
||||
<PackageTags>cron timer</PackageTags>
|
||||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
||||
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
||||
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
|
||||
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="ncrontab" Version="3.3.1" />
|
||||
<PackageReference Include="TimeZoneConverter" Version="6.0.1" />
|
||||
</ItemGroup>
|
||||
|
||||
<!--<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.1'">
|
||||
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions">
|
||||
<Version>3.1.4</Version>
|
||||
</PackageReference>
|
||||
</ItemGroup>-->
|
||||
|
||||
</Project>
|
||||
Reference in New Issue
Block a user