First commit

This commit is contained in:
Imi
2023-09-29 13:11:03 +02:00
parent fcde0d2975
commit 7c3fc98e5d
105 changed files with 1458 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Iminetsoft.CronNET</id>
<version>8.0.1</version>
<authors>kevinkolyar, iminet</authors>
<icon>iminetsoft.png</icon>
<readme>Readme.md</readme>
<projectUrl>https://github.com/iminet/CronNET</projectUrl>
<description>C# library for running cron jobs on .NET</description>
<releaseNotes>Added package icon</releaseNotes>
<tags>dotnet Cron Crondaemon Crontab</tags>
<repository url="https://github.com/iminet/CronNET" />
<dependencies>
<group targetFramework="net5.0">
<dependency id="Newtonsoft.Json" version="13.0.3" exclude="Build,Analyzers" />
<dependency id="System.Drawing.Common" version="7.0.0" exclude="Build,Analyzers" />
<dependency id="System.Resources.Extensions" version="7.0.0" exclude="Build,Analyzers" />
</group>
<group targetFramework="net6.0">
<dependency id="Newtonsoft.Json" version="13.0.3" exclude="Build,Analyzers" />
<dependency id="System.Drawing.Common" version="7.0.0" exclude="Build,Analyzers" />
<dependency id="System.Resources.Extensions" version="7.0.0" exclude="Build,Analyzers" />
</group>
</dependencies>
</metadata>
<files>
<file src="C:\Users\kincs\source\repos\ImgBBApi\bin\Debug\net5.0\CronNET.dll" target="lib\net5.0\CronNET.dll" />
<file src="C:\Users\kincs\source\repos\ImgBBApi\bin\Debug\net6.0\CronNET.dll" target="lib\net6.0\CronNET.dll" />
<file src="C:\Users\kincs\source\repos\ImgBBApi\Resources\iminetsoft.png" target="\iminetsoft.png" />
<file src="C:\Users\kincs\source\repos\ImgBBApi\Readme.md" target="\Readme.md" />
</files>
</package>

View File

@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Iminetsoft.ImgBBApi</id>
<version>1.0.1</version>
<authors>iminet</authors>
<icon>iminetsoft.png</icon>
<readme>Readme.md</readme>
<projectUrl>https://github.com/iminet/CronNET</projectUrl>
<description>C# library for ImgBB</description>
<releaseNotes>Added package icon</releaseNotes>
<tags>dotnet ImgBB, image, imageupload, API</tags>
<repository url="https://github.com/iminet/CronNET" />
<dependencies>
<group targetFramework="net5.0">
<dependency id="Newtonsoft.Json" version="13.0.3" exclude="Build,Analyzers" />
<dependency id="System.Drawing.Common" version="7.0.0" exclude="Build,Analyzers" />
<dependency id="System.Resources.Extensions" version="7.0.0" exclude="Build,Analyzers" />
</group>
<group targetFramework="net6.0">
<dependency id="Newtonsoft.Json" version="13.0.3" exclude="Build,Analyzers" />
<dependency id="System.Drawing.Common" version="7.0.0" exclude="Build,Analyzers" />
<dependency id="System.Resources.Extensions" version="7.0.0" exclude="Build,Analyzers" />
</group>
</dependencies>
</metadata>
<files>
<file src="C:\Users\kincs\source\repos\ImgBBApi\bin\Debug\net5.0\ImgBBApi.dll" target="lib\net5.0\ImgBBApi.dll" />
<file src="C:\Users\kincs\source\repos\ImgBBApi\bin\Debug\net6.0\ImgBBApi.dll" target="lib\net6.0\ImgBBApi.dll" />
<file src="C:\Users\kincs\source\repos\ImgBBApi\Resources\iminetsoft.png" target="\iminetsoft.png" />
<file src="C:\Users\kincs\source\repos\ImgBBApi\Readme.md" target="\Readme.md" />
</files>
</package>

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.0", FrameworkDisplayName = ".NET Framework 4")]

View File

@@ -0,0 +1,3 @@
is_global = true
build_property.RootNamespace = CronNET
build_property.ProjectDir = C:\Users\kincs\source\repos\ImgBBApi\

Binary file not shown.

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.5", FrameworkDisplayName = "")]

Binary file not shown.

View File

@@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("ImgBBApi")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("ImgBBApi")]
[assembly: System.Reflection.AssemblyTitleAttribute("ImgBBApi")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
832aaba013b84d3d47cf36ca53dcafe1234b8ac8

View File

@@ -0,0 +1,3 @@
is_global = true
build_property.RootNamespace = CronNET
build_property.ProjectDir = C:\Users\kincs\source\repos\ImgBBApi\

View File

@@ -0,0 +1,8 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;

Binary file not shown.

View File

@@ -0,0 +1 @@
7d7c8dc253aec797f8c63206a1796e3b64d9a2bd

View File

@@ -0,0 +1,5 @@
C:\Users\kincs\source\repos\ImgBBApi\obj\Debug\net45\ImgBBApi.csproj.AssemblyReference.cache
C:\Users\kincs\source\repos\ImgBBApi\obj\Debug\net45\CronNET.Properties.Resources.resources
C:\Users\kincs\source\repos\ImgBBApi\obj\Debug\net45\ImgBBApi.csproj.GenerateResource.cache
C:\Users\kincs\source\repos\ImgBBApi\obj\Debug\net45\ImgBBApi.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\kincs\source\repos\ImgBBApi\obj\Debug\net45\ImgBBApi.csproj.CoreCompileInputs.cache

Binary file not shown.

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")]

View File

@@ -0,0 +1,3 @@
is_global = true
build_property.RootNamespace = CronNET
build_property.ProjectDir = C:\Users\kincs\source\repos\ImgBBApi\

Binary file not shown.

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8.5", FrameworkDisplayName = "")]

View File

@@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("ImgBBApi")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("ImgBBApi")]
[assembly: System.Reflection.AssemblyTitleAttribute("ImgBBApi")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
832aaba013b84d3d47cf36ca53dcafe1234b8ac8

View File

@@ -0,0 +1,3 @@
is_global = true
build_property.RootNamespace = CronNET
build_property.ProjectDir = C:\Users\kincs\source\repos\ImgBBApi\

View File

@@ -0,0 +1,8 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;

Binary file not shown.

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = ".NET 5.0")]

View File

@@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("ImgBBApi")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("ImgBBApi")]
[assembly: System.Reflection.AssemblyTitleAttribute("ImgBBApi")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
832aaba013b84d3d47cf36ca53dcafe1234b8ac8

View File

@@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net5.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = ImgBBApi
build_property.ProjectDir = C:\Users\kincs\source\repos\ImgBBApi\

View File

@@ -0,0 +1,8 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;

Binary file not shown.

View File

@@ -0,0 +1 @@
dcf2eaaba221741fd7361d4eff27d9d5e7e18f91

View File

@@ -0,0 +1,12 @@
C:\Users\kincs\source\repos\ImgBBApi\obj\Debug\net5.0\ImgBBApi.csproj.AssemblyReference.cache
C:\Users\kincs\source\repos\ImgBBApi\obj\Debug\net5.0\ImgBBApi.csproj.GenerateResource.cache
C:\Users\kincs\source\repos\ImgBBApi\obj\Debug\net5.0\ImgBBApi.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\kincs\source\repos\ImgBBApi\obj\Debug\net5.0\ImgBBApi.csproj.CoreCompileInputs.cache
C:\Users\kincs\source\repos\ImgBBApi\bin\Debug\net5.0\ImgBBApi.deps.json
C:\Users\kincs\source\repos\ImgBBApi\bin\Debug\net5.0\ImgBBApi.dll
C:\Users\kincs\source\repos\ImgBBApi\bin\Debug\net5.0\ImgBBApi.pdb
C:\Users\kincs\source\repos\ImgBBApi\obj\Debug\net5.0\ImgBBApi.Properties.Resources.resources
C:\Users\kincs\source\repos\ImgBBApi\obj\Debug\net5.0\ImgBBApi.dll
C:\Users\kincs\source\repos\ImgBBApi\obj\Debug\net5.0\refint\ImgBBApi.dll
C:\Users\kincs\source\repos\ImgBBApi\obj\Debug\net5.0\ImgBBApi.pdb
C:\Users\kincs\source\repos\ImgBBApi\obj\Debug\net5.0\ref\ImgBBApi.dll

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]

View File

@@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("ImgBBApi")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("ImgBBApi")]
[assembly: System.Reflection.AssemblyTitleAttribute("ImgBBApi")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
832aaba013b84d3d47cf36ca53dcafe1234b8ac8

View File

@@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net6.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = ImgBBApi
build_property.ProjectDir = C:\Users\kincs\source\repos\ImgBBApi\

View File

@@ -0,0 +1,8 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;

Binary file not shown.

View File

@@ -0,0 +1 @@
90b2958116f5d9142abe5e060b864c26012e5b7b

View File

@@ -0,0 +1,12 @@
C:\Users\kincs\source\repos\ImgBBApi\obj\Debug\net6.0\ImgBBApi.csproj.AssemblyReference.cache
C:\Users\kincs\source\repos\ImgBBApi\obj\Debug\net6.0\ImgBBApi.csproj.GenerateResource.cache
C:\Users\kincs\source\repos\ImgBBApi\obj\Debug\net6.0\ImgBBApi.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\kincs\source\repos\ImgBBApi\obj\Debug\net6.0\ImgBBApi.csproj.CoreCompileInputs.cache
C:\Users\kincs\source\repos\ImgBBApi\bin\Debug\net6.0\ImgBBApi.deps.json
C:\Users\kincs\source\repos\ImgBBApi\bin\Debug\net6.0\ImgBBApi.dll
C:\Users\kincs\source\repos\ImgBBApi\bin\Debug\net6.0\ImgBBApi.pdb
C:\Users\kincs\source\repos\ImgBBApi\obj\Debug\net6.0\ImgBBApi.Properties.Resources.resources
C:\Users\kincs\source\repos\ImgBBApi\obj\Debug\net6.0\ImgBBApi.dll
C:\Users\kincs\source\repos\ImgBBApi\obj\Debug\net6.0\refint\ImgBBApi.dll
C:\Users\kincs\source\repos\ImgBBApi\obj\Debug\net6.0\ImgBBApi.pdb
C:\Users\kincs\source\repos\ImgBBApi\obj\Debug\net6.0\ref\ImgBBApi.dll

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]

View File

@@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("ImgBBApi")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("ImgBBApi")]
[assembly: System.Reflection.AssemblyTitleAttribute("ImgBBApi")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
832aaba013b84d3d47cf36ca53dcafe1234b8ac8

View File

@@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net7.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = CronNET
build_property.ProjectDir = C:\Users\kincs\source\repos\ImgBBApi\

View File

@@ -0,0 +1,8 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;

Binary file not shown.

View File

@@ -0,0 +1,3 @@
C:\Users\kincs\source\repos\ImgBBApi\obj\Debug\net7.0\ImgBBApi.csproj.AssemblyReference.cache
C:\Users\kincs\source\repos\ImgBBApi\obj\Debug\net7.0\CronNET.Properties.Resources.resources
C:\Users\kincs\source\repos\ImgBBApi\obj\Debug\net7.0\ImgBBApi.csproj.GenerateResource.cache

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.0", FrameworkDisplayName = ".NET Standard 2.0")]

View File

@@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("ImgBBApi")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("ImgBBApi")]
[assembly: System.Reflection.AssemblyTitleAttribute("ImgBBApi")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
832aaba013b84d3d47cf36ca53dcafe1234b8ac8

View File

@@ -0,0 +1,3 @@
is_global = true
build_property.RootNamespace = CronNET
build_property.ProjectDir = C:\Users\kincs\source\repos\ImgBBApi\

View File

@@ -0,0 +1,8 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;

Binary file not shown.