Updating readme and added license

This commit is contained in:
Tyler Coles 2023-10-13 12:51:33 -04:00
parent 343a1b04a5
commit f1275079a6
3 changed files with 33 additions and 22 deletions

View File

@ -1,12 +1,12 @@
CronNET
crondotnet
---------------------------
CronNET is a simple C# library for running tasks based on a cron schedule.
crondotnet is a simple C# library for running tasks based on a cron schedule.
Cron Schedules
===============
CronNET supports most cron scheduling. See tests for supported formats.
crondotnet supports most cron scheduling. See tests for supported formats.
```
* * * * *
@ -32,14 +32,14 @@ CronNET supports most cron scheduling. See tests for supported formats.
How to install?
===============
You can install this [NuGet package](https://www.nuget.org/packages/Iminetsoft.CronNET)
You can install this [NuGet package](https://www.nuget.org/packages/crondotnet)
Console Example
===============
``` c#
using System.Threading;
using CronNET;
using crondotnet;
namespace CronNETExample.Console
{
@ -69,7 +69,7 @@ Windows Service Example
``` c#
using System.Threading;
using CronNET;
using crondotnet;
namespace CronNETExample.WindowsService
{

View File

@ -1,11 +1,16 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.33027.164
# Visual Studio Version 17
VisualStudioVersion = 17.7.34031.279
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "crondotnet", "crondotnet\crondotnet.csproj", "{F31D7AF3-FDFA-44F1-9C63-305BAF11D002}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "crondotnet", "crondotnet\crondotnet.csproj", "{F31D7AF3-FDFA-44F1-9C63-305BAF11D002}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "crondotnet.Tests", "crondotnet.Tests\crondotnet.Tests.csproj", "{6FCFBDF4-ECB7-4FC2-A376-E962B11D487D}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "crondotnet.Tests", "crondotnet.Tests\crondotnet.Tests.csproj", "{6FCFBDF4-ECB7-4FC2-A376-E962B11D487D}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{6753321E-D4F3-4199-872D-8986A596453E}"
ProjectSection(SolutionItems) = preProject
Readme.md = Readme.md
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution

View File

@ -1,14 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6;net7</TargetFrameworks>
<OutputType>Library</OutputType>
<RootNamespace>crondotnet</RootNamespace>
<AssemblyName>crondotnet</AssemblyName>
<Authors>kevinkolyar, iminet, tycoff</Authors>
<Product>C# library for running cron jobs on .NET</Product>
<PackageId>crondotnet</PackageId>
<PackageProjectUrl>https://github.com/tycoff/crondotnet</PackageProjectUrl>
<RepositoryUrl>https://github.com/tycoff/crondotnet</RepositoryUrl>
<PackageTags>dotnet Cron Crondaemon Crontab</PackageTags>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworks>net6;net7</TargetFrameworks>
<OutputType>Library</OutputType>
<RootNamespace>crondotnet</RootNamespace>
<AssemblyName>crondotnet</AssemblyName>
<Authors>kevinkolyar, iminet, tycoff</Authors>
<Product>C# library for running cron jobs on .NET</Product>
<PackageId>crondotnet</PackageId>
<PackageProjectUrl>https://github.com/tycoff/crondotnet</PackageProjectUrl>
<RepositoryUrl>https://github.com/tycoff/crondotnet</RepositoryUrl>
<PackageTags>dotnet Cron Crondaemon Crontab</PackageTags>
<Version>0.1.0.0</Version>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<None Include="..\Readme.md" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>