diff --git a/.vs/ImgBBApi/DesignTimeBuild/.dtbcache.v2 b/.vs/ImgBBApi/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..9422142 Binary files /dev/null and b/.vs/ImgBBApi/DesignTimeBuild/.dtbcache.v2 differ diff --git a/.vs/ImgBBApi/FileContentIndex/029b30ac-e57a-4d5b-8de5-c19e0c1226c5.vsidx b/.vs/ImgBBApi/FileContentIndex/029b30ac-e57a-4d5b-8de5-c19e0c1226c5.vsidx new file mode 100644 index 0000000..f4f6b77 Binary files /dev/null and b/.vs/ImgBBApi/FileContentIndex/029b30ac-e57a-4d5b-8de5-c19e0c1226c5.vsidx differ diff --git a/.vs/ImgBBApi/FileContentIndex/4ff5a94f-cf90-4d27-a41b-6ac83154298b.vsidx b/.vs/ImgBBApi/FileContentIndex/4ff5a94f-cf90-4d27-a41b-6ac83154298b.vsidx new file mode 100644 index 0000000..db7cf33 Binary files /dev/null and b/.vs/ImgBBApi/FileContentIndex/4ff5a94f-cf90-4d27-a41b-6ac83154298b.vsidx differ diff --git a/.vs/ImgBBApi/FileContentIndex/89741055-22c1-429c-8e5c-a360cea6cfcc.vsidx b/.vs/ImgBBApi/FileContentIndex/89741055-22c1-429c-8e5c-a360cea6cfcc.vsidx new file mode 100644 index 0000000..67cdc53 Binary files /dev/null and b/.vs/ImgBBApi/FileContentIndex/89741055-22c1-429c-8e5c-a360cea6cfcc.vsidx differ diff --git a/.vs/ImgBBApi/FileContentIndex/92272350-fcbf-436a-8f87-8ed8e7e6a036.vsidx b/.vs/ImgBBApi/FileContentIndex/92272350-fcbf-436a-8f87-8ed8e7e6a036.vsidx new file mode 100644 index 0000000..07b102e Binary files /dev/null and b/.vs/ImgBBApi/FileContentIndex/92272350-fcbf-436a-8f87-8ed8e7e6a036.vsidx differ diff --git a/.vs/ImgBBApi/FileContentIndex/f1594b63-4a37-4e91-8400-856c7d3d3a53.vsidx b/.vs/ImgBBApi/FileContentIndex/f1594b63-4a37-4e91-8400-856c7d3d3a53.vsidx new file mode 100644 index 0000000..83d6880 Binary files /dev/null and b/.vs/ImgBBApi/FileContentIndex/f1594b63-4a37-4e91-8400-856c7d3d3a53.vsidx differ diff --git a/.vs/ImgBBApi/v17/.futdcache.v2 b/.vs/ImgBBApi/v17/.futdcache.v2 new file mode 100644 index 0000000..107e9af Binary files /dev/null and b/.vs/ImgBBApi/v17/.futdcache.v2 differ diff --git a/.vs/ImgBBApi/v17/.suo b/.vs/ImgBBApi/v17/.suo new file mode 100644 index 0000000..bc08aa3 Binary files /dev/null and b/.vs/ImgBBApi/v17/.suo differ diff --git a/.vs/ProjectEvaluation/imgbbapi.metadata.v7.bin b/.vs/ProjectEvaluation/imgbbapi.metadata.v7.bin new file mode 100644 index 0000000..85ca79c Binary files /dev/null and b/.vs/ProjectEvaluation/imgbbapi.metadata.v7.bin differ diff --git a/.vs/ProjectEvaluation/imgbbapi.projects.v7.bin b/.vs/ProjectEvaluation/imgbbapi.projects.v7.bin new file mode 100644 index 0000000..02822ef Binary files /dev/null and b/.vs/ProjectEvaluation/imgbbapi.projects.v7.bin differ diff --git a/ImgBBApi.cs b/ImgBBApi.cs new file mode 100644 index 0000000..fbaccb7 --- /dev/null +++ b/ImgBBApi.cs @@ -0,0 +1,50 @@ +using Newtonsoft.Json.Linq; +using System; +using System.Collections.Generic; +using System.IO; +using System.Net.Http; +using System.Threading.Tasks; + +namespace Iminetsoft +{ + public class ImgBBApi + { + public string ApiKey { get; set; } = String.Empty; + + public ImgBBApi() { } + + public ImgBBApi(string apikey) { ApiKey = apikey; } + + public async Task> UploadImgbbAsync(List ImagePaths) + { + List LinksToUploadedImages = new List(); + string ResponseJsonContent = string.Empty; + + using (HttpClient client = new HttpClient()) + { + try + { + foreach (string imagePath in ImagePaths) + { + /* SORGU GONDERDIK VE JSON RESPONSE-U ELDE ETDIK: */ + string requestUrl = $"https://api.imgbb.com/1/upload?key={ApiKey}"; + MultipartFormDataContent content = new MultipartFormDataContent(); + string base64OfImage = Convert.ToBase64String(File.ReadAllBytes(imagePath)); + content.Add(new StringContent(base64OfImage), "image"); + content.Add(new StringContent(Path.GetFileNameWithoutExtension(imagePath)), "name"); + HttpRequestMessage request = new HttpRequestMessage(HttpMethod.Post, requestUrl) { Content = content }; + HttpResponseMessage response = await client.SendAsync(request); + ResponseJsonContent = await response.Content.ReadAsStringAsync(); + + /* JSON RESPONSE-DAN LAZIMI HISSELERI EXTRACT EDEK: */ + JObject jsonObject = JObject.Parse(ResponseJsonContent); + LinksToUploadedImages.Add(jsonObject.SelectToken("data.url").ToString()); + } + } + catch { } + } + + return LinksToUploadedImages; + } + } +} \ No newline at end of file diff --git a/ImgBBApi.csproj b/ImgBBApi.csproj new file mode 100644 index 0000000..772f118 --- /dev/null +++ b/ImgBBApi.csproj @@ -0,0 +1,53 @@ + + + + net5.0;net6.0 + disable + Library + ImgBBApi + ImgBBApi + Added package icon + 1.0.1 + 1.0.1 + 1.0.1 + iminet + C# library for ImgBB + Iminetsoft.ImgBBApi + iminetsoft.png + https://github.com/iminet/CronNET + https://github.com/iminet/CronNET + dotnet ImgBB, image, imageupload, API + Readme.md + C# library for ImgBB + false + true + false + + + + + + + + + + + + + + + + True + True + Resources.resx + + + + + + ResXFileCodeGenerator + Resources.Designer.cs + + + + diff --git a/ImgBBApi.sln b/ImgBBApi.sln new file mode 100644 index 0000000..363844e --- /dev/null +++ b/ImgBBApi.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.7.34003.232 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ImgBBApi", "ImgBBApi.csproj", "{BC926B9D-04DE-40D5-A61D-605F94E31B6F}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {BC926B9D-04DE-40D5-A61D-605F94E31B6F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {BC926B9D-04DE-40D5-A61D-605F94E31B6F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BC926B9D-04DE-40D5-A61D-605F94E31B6F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {BC926B9D-04DE-40D5-A61D-605F94E31B6F}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {2FA7D562-6EF2-4D18-9AE4-E5A869434F96} + EndGlobalSection +EndGlobal diff --git a/Properties/Resources.Designer.cs b/Properties/Resources.Designer.cs new file mode 100644 index 0000000..a07e4ac --- /dev/null +++ b/Properties/Resources.Designer.cs @@ -0,0 +1,73 @@ +//------------------------------------------------------------------------------ +// +// 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. +// +//------------------------------------------------------------------------------ + +namespace ImgBBApi.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ImgBBApi.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap iminetsoft { + get { + object obj = ResourceManager.GetObject("iminetsoft", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + } +} diff --git a/Properties/Resources.resx b/Properties/Resources.resx new file mode 100644 index 0000000..c07f08a --- /dev/null +++ b/Properties/Resources.resx @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + ..\Resources\iminetsoft.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + \ No newline at end of file diff --git a/Resources/iminetsoft.png b/Resources/iminetsoft.png new file mode 100644 index 0000000..fe2f0f4 Binary files /dev/null and b/Resources/iminetsoft.png differ diff --git a/bin/Debug/Iminetsoft.ImgBBApi.1.0.1.nupkg b/bin/Debug/Iminetsoft.ImgBBApi.1.0.1.nupkg new file mode 100644 index 0000000..ec11bf9 Binary files /dev/null and b/bin/Debug/Iminetsoft.ImgBBApi.1.0.1.nupkg differ diff --git a/bin/Debug/net5.0/ImgBBApi.deps.json b/bin/Debug/net5.0/ImgBBApi.deps.json new file mode 100644 index 0000000..c1a8311 --- /dev/null +++ b/bin/Debug/net5.0/ImgBBApi.deps.json @@ -0,0 +1,84 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v5.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v5.0": { + "ImgBBApi/1.0.1": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "System.Drawing.Common": "7.0.0", + "System.Resources.Extensions": "7.0.0" + }, + "runtime": { + "ImgBBApi.dll": {} + } + }, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "System.Drawing.Common/7.0.0": { + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Memory/4.5.5": {}, + "System.Resources.Extensions/7.0.0": { + "dependencies": { + "System.Memory": "4.5.5" + }, + "runtime": { + "lib/netstandard2.0/System.Resources.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + } + } + }, + "libraries": { + "ImgBBApi/1.0.1": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "path": "newtonsoft.json/13.0.3", + "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" + }, + "System.Drawing.Common/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==", + "path": "system.drawing.common/7.0.0", + "hashPath": "system.drawing.common.7.0.0.nupkg.sha512" + }, + "System.Memory/4.5.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "path": "system.memory/4.5.5", + "hashPath": "system.memory.4.5.5.nupkg.sha512" + }, + "System.Resources.Extensions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-65ufm9ABXvxRkQ//hMcUDrQXbGWkC7z0WWZAvHlQ6Qv+JmrIwHH1lmX8aXlNlXpIrT9KxDpuZPqJTVqqwzMD8Q==", + "path": "system.resources.extensions/7.0.0", + "hashPath": "system.resources.extensions.7.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net5.0/ImgBBApi.dll b/bin/Debug/net5.0/ImgBBApi.dll new file mode 100644 index 0000000..0bba194 Binary files /dev/null and b/bin/Debug/net5.0/ImgBBApi.dll differ diff --git a/bin/Debug/net5.0/ImgBBApi.pdb b/bin/Debug/net5.0/ImgBBApi.pdb new file mode 100644 index 0000000..ade9fce Binary files /dev/null and b/bin/Debug/net5.0/ImgBBApi.pdb differ diff --git a/bin/Debug/net6.0/ImgBBApi.deps.json b/bin/Debug/net6.0/ImgBBApi.deps.json new file mode 100644 index 0000000..0c40880 --- /dev/null +++ b/bin/Debug/net6.0/ImgBBApi.deps.json @@ -0,0 +1,107 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "ImgBBApi/1.0.1": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "System.Drawing.Common": "7.0.0", + "System.Resources.Extensions": "7.0.0" + }, + "runtime": { + "ImgBBApi.dll": {} + } + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "System.Drawing.Common/7.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "7.0.0" + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Resources.Extensions/7.0.0": { + "runtime": { + "lib/net6.0/System.Resources.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + } + } + }, + "libraries": { + "ImgBBApi/1.0.1": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==", + "path": "microsoft.win32.systemevents/7.0.0", + "hashPath": "microsoft.win32.systemevents.7.0.0.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "path": "newtonsoft.json/13.0.3", + "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" + }, + "System.Drawing.Common/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==", + "path": "system.drawing.common/7.0.0", + "hashPath": "system.drawing.common.7.0.0.nupkg.sha512" + }, + "System.Resources.Extensions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-65ufm9ABXvxRkQ//hMcUDrQXbGWkC7z0WWZAvHlQ6Qv+JmrIwHH1lmX8aXlNlXpIrT9KxDpuZPqJTVqqwzMD8Q==", + "path": "system.resources.extensions/7.0.0", + "hashPath": "system.resources.extensions.7.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net6.0/ImgBBApi.dll b/bin/Debug/net6.0/ImgBBApi.dll new file mode 100644 index 0000000..58b0333 Binary files /dev/null and b/bin/Debug/net6.0/ImgBBApi.dll differ diff --git a/bin/Debug/net6.0/ImgBBApi.pdb b/bin/Debug/net6.0/ImgBBApi.pdb new file mode 100644 index 0000000..7121aaa Binary files /dev/null and b/bin/Debug/net6.0/ImgBBApi.pdb differ diff --git a/obj/Debug/Iminetsoft.CronNET.8.0.1.nuspec b/obj/Debug/Iminetsoft.CronNET.8.0.1.nuspec new file mode 100644 index 0000000..ad765e1 --- /dev/null +++ b/obj/Debug/Iminetsoft.CronNET.8.0.1.nuspec @@ -0,0 +1,33 @@ + + + + Iminetsoft.CronNET + 8.0.1 + kevinkolyar, iminet + iminetsoft.png + Readme.md + https://github.com/iminet/CronNET + C# library for running cron jobs on .NET + Added package icon + dotnet Cron Crondaemon Crontab + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/obj/Debug/Iminetsoft.ImgBBApi.1.0.1.nuspec b/obj/Debug/Iminetsoft.ImgBBApi.1.0.1.nuspec new file mode 100644 index 0000000..e0083e1 --- /dev/null +++ b/obj/Debug/Iminetsoft.ImgBBApi.1.0.1.nuspec @@ -0,0 +1,33 @@ + + + + Iminetsoft.ImgBBApi + 1.0.1 + iminet + iminetsoft.png + Readme.md + https://github.com/iminet/CronNET + C# library for ImgBB + Added package icon + dotnet ImgBB, image, imageupload, API + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/obj/Debug/net40/.NETFramework,Version=v4.0.AssemblyAttributes.cs b/obj/Debug/net40/.NETFramework,Version=v4.0.AssemblyAttributes.cs new file mode 100644 index 0000000..5d01041 --- /dev/null +++ b/obj/Debug/net40/.NETFramework,Version=v4.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.0", FrameworkDisplayName = ".NET Framework 4")] diff --git a/obj/Debug/net40/ImgBBApi.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net40/ImgBBApi.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..5fb3659 --- /dev/null +++ b/obj/Debug/net40/ImgBBApi.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,3 @@ +is_global = true +build_property.RootNamespace = CronNET +build_property.ProjectDir = C:\Users\kincs\source\repos\ImgBBApi\ diff --git a/obj/Debug/net40/ImgBBApi.assets.cache b/obj/Debug/net40/ImgBBApi.assets.cache new file mode 100644 index 0000000..8445782 Binary files /dev/null and b/obj/Debug/net40/ImgBBApi.assets.cache differ diff --git a/obj/Debug/net40/ImgBBApi.csproj.AssemblyReference.cache b/obj/Debug/net40/ImgBBApi.csproj.AssemblyReference.cache new file mode 100644 index 0000000..8d05de4 Binary files /dev/null and b/obj/Debug/net40/ImgBBApi.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net40/ImgBBApi.csproj.FileListAbsolute.txt b/obj/Debug/net40/ImgBBApi.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net45/.NETFramework,Version=v4.5.AssemblyAttributes.cs b/obj/Debug/net45/.NETFramework,Version=v4.5.AssemblyAttributes.cs new file mode 100644 index 0000000..9c9d20c --- /dev/null +++ b/obj/Debug/net45/.NETFramework,Version=v4.5.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.5", FrameworkDisplayName = "")] diff --git a/obj/Debug/net45/CronNET.Properties.Resources.resources b/obj/Debug/net45/CronNET.Properties.Resources.resources new file mode 100644 index 0000000..6b80236 Binary files /dev/null and b/obj/Debug/net45/CronNET.Properties.Resources.resources differ diff --git a/obj/Debug/net45/ImgBBApi.AssemblyInfo.cs b/obj/Debug/net45/ImgBBApi.AssemblyInfo.cs new file mode 100644 index 0000000..94601e9 --- /dev/null +++ b/obj/Debug/net45/ImgBBApi.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 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. +// +//------------------------------------------------------------------------------ + +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. + diff --git a/obj/Debug/net45/ImgBBApi.AssemblyInfoInputs.cache b/obj/Debug/net45/ImgBBApi.AssemblyInfoInputs.cache new file mode 100644 index 0000000..ae28100 --- /dev/null +++ b/obj/Debug/net45/ImgBBApi.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +832aaba013b84d3d47cf36ca53dcafe1234b8ac8 diff --git a/obj/Debug/net45/ImgBBApi.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net45/ImgBBApi.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..5fb3659 --- /dev/null +++ b/obj/Debug/net45/ImgBBApi.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,3 @@ +is_global = true +build_property.RootNamespace = CronNET +build_property.ProjectDir = C:\Users\kincs\source\repos\ImgBBApi\ diff --git a/obj/Debug/net45/ImgBBApi.GlobalUsings.g.cs b/obj/Debug/net45/ImgBBApi.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/obj/Debug/net45/ImgBBApi.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +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; diff --git a/obj/Debug/net45/ImgBBApi.assets.cache b/obj/Debug/net45/ImgBBApi.assets.cache new file mode 100644 index 0000000..367a309 Binary files /dev/null and b/obj/Debug/net45/ImgBBApi.assets.cache differ diff --git a/obj/Debug/net45/ImgBBApi.csproj.AssemblyReference.cache b/obj/Debug/net45/ImgBBApi.csproj.AssemblyReference.cache new file mode 100644 index 0000000..8d05de4 Binary files /dev/null and b/obj/Debug/net45/ImgBBApi.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net45/ImgBBApi.csproj.CoreCompileInputs.cache b/obj/Debug/net45/ImgBBApi.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..353e7f3 --- /dev/null +++ b/obj/Debug/net45/ImgBBApi.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +7d7c8dc253aec797f8c63206a1796e3b64d9a2bd diff --git a/obj/Debug/net45/ImgBBApi.csproj.FileListAbsolute.txt b/obj/Debug/net45/ImgBBApi.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..3963423 --- /dev/null +++ b/obj/Debug/net45/ImgBBApi.csproj.FileListAbsolute.txt @@ -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 diff --git a/obj/Debug/net45/ImgBBApi.csproj.GenerateResource.cache b/obj/Debug/net45/ImgBBApi.csproj.GenerateResource.cache new file mode 100644 index 0000000..2e15f29 Binary files /dev/null and b/obj/Debug/net45/ImgBBApi.csproj.GenerateResource.cache differ diff --git a/obj/Debug/net48/.NETFramework,Version=v4.8.AssemblyAttributes.cs b/obj/Debug/net48/.NETFramework,Version=v4.8.AssemblyAttributes.cs new file mode 100644 index 0000000..15efebf --- /dev/null +++ b/obj/Debug/net48/.NETFramework,Version=v4.8.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] diff --git a/obj/Debug/net48/ImgBBApi.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net48/ImgBBApi.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..5fb3659 --- /dev/null +++ b/obj/Debug/net48/ImgBBApi.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,3 @@ +is_global = true +build_property.RootNamespace = CronNET +build_property.ProjectDir = C:\Users\kincs\source\repos\ImgBBApi\ diff --git a/obj/Debug/net48/ImgBBApi.assets.cache b/obj/Debug/net48/ImgBBApi.assets.cache new file mode 100644 index 0000000..0c47bd6 Binary files /dev/null and b/obj/Debug/net48/ImgBBApi.assets.cache differ diff --git a/obj/Debug/net48/ImgBBApi.csproj.AssemblyReference.cache b/obj/Debug/net48/ImgBBApi.csproj.AssemblyReference.cache new file mode 100644 index 0000000..46494ea Binary files /dev/null and b/obj/Debug/net48/ImgBBApi.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net48/ImgBBApi.csproj.FileListAbsolute.txt b/obj/Debug/net48/ImgBBApi.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net485/.NETFramework,Version=v4.8.5.AssemblyAttributes.cs b/obj/Debug/net485/.NETFramework,Version=v4.8.5.AssemblyAttributes.cs new file mode 100644 index 0000000..ce84203 --- /dev/null +++ b/obj/Debug/net485/.NETFramework,Version=v4.8.5.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8.5", FrameworkDisplayName = "")] diff --git a/obj/Debug/net485/ImgBBApi.AssemblyInfo.cs b/obj/Debug/net485/ImgBBApi.AssemblyInfo.cs new file mode 100644 index 0000000..94601e9 --- /dev/null +++ b/obj/Debug/net485/ImgBBApi.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 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. +// +//------------------------------------------------------------------------------ + +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. + diff --git a/obj/Debug/net485/ImgBBApi.AssemblyInfoInputs.cache b/obj/Debug/net485/ImgBBApi.AssemblyInfoInputs.cache new file mode 100644 index 0000000..ae28100 --- /dev/null +++ b/obj/Debug/net485/ImgBBApi.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +832aaba013b84d3d47cf36ca53dcafe1234b8ac8 diff --git a/obj/Debug/net485/ImgBBApi.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net485/ImgBBApi.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..5fb3659 --- /dev/null +++ b/obj/Debug/net485/ImgBBApi.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,3 @@ +is_global = true +build_property.RootNamespace = CronNET +build_property.ProjectDir = C:\Users\kincs\source\repos\ImgBBApi\ diff --git a/obj/Debug/net485/ImgBBApi.GlobalUsings.g.cs b/obj/Debug/net485/ImgBBApi.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/obj/Debug/net485/ImgBBApi.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +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; diff --git a/obj/Debug/net485/ImgBBApi.assets.cache b/obj/Debug/net485/ImgBBApi.assets.cache new file mode 100644 index 0000000..10714c2 Binary files /dev/null and b/obj/Debug/net485/ImgBBApi.assets.cache differ diff --git a/obj/Debug/net485/ImgBBApi.csproj.AssemblyReference.cache b/obj/Debug/net485/ImgBBApi.csproj.AssemblyReference.cache new file mode 100644 index 0000000..4796de0 Binary files /dev/null and b/obj/Debug/net485/ImgBBApi.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net485/ImgBBApi.csproj.FileListAbsolute.txt b/obj/Debug/net485/ImgBBApi.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..3b1554c --- /dev/null +++ b/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = ".NET 5.0")] diff --git a/obj/Debug/net5.0/ImgBBApi.AssemblyInfo.cs b/obj/Debug/net5.0/ImgBBApi.AssemblyInfo.cs new file mode 100644 index 0000000..94601e9 --- /dev/null +++ b/obj/Debug/net5.0/ImgBBApi.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 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. +// +//------------------------------------------------------------------------------ + +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. + diff --git a/obj/Debug/net5.0/ImgBBApi.AssemblyInfoInputs.cache b/obj/Debug/net5.0/ImgBBApi.AssemblyInfoInputs.cache new file mode 100644 index 0000000..ae28100 --- /dev/null +++ b/obj/Debug/net5.0/ImgBBApi.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +832aaba013b84d3d47cf36ca53dcafe1234b8ac8 diff --git a/obj/Debug/net5.0/ImgBBApi.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net5.0/ImgBBApi.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b056b22 --- /dev/null +++ b/obj/Debug/net5.0/ImgBBApi.GeneratedMSBuildEditorConfig.editorconfig @@ -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\ diff --git a/obj/Debug/net5.0/ImgBBApi.GlobalUsings.g.cs b/obj/Debug/net5.0/ImgBBApi.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/obj/Debug/net5.0/ImgBBApi.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +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; diff --git a/obj/Debug/net5.0/ImgBBApi.Properties.Resources.resources b/obj/Debug/net5.0/ImgBBApi.Properties.Resources.resources new file mode 100644 index 0000000..dee6376 Binary files /dev/null and b/obj/Debug/net5.0/ImgBBApi.Properties.Resources.resources differ diff --git a/obj/Debug/net5.0/ImgBBApi.assets.cache b/obj/Debug/net5.0/ImgBBApi.assets.cache new file mode 100644 index 0000000..305ba0b Binary files /dev/null and b/obj/Debug/net5.0/ImgBBApi.assets.cache differ diff --git a/obj/Debug/net5.0/ImgBBApi.csproj.AssemblyReference.cache b/obj/Debug/net5.0/ImgBBApi.csproj.AssemblyReference.cache new file mode 100644 index 0000000..3899658 Binary files /dev/null and b/obj/Debug/net5.0/ImgBBApi.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net5.0/ImgBBApi.csproj.CoreCompileInputs.cache b/obj/Debug/net5.0/ImgBBApi.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..16c6770 --- /dev/null +++ b/obj/Debug/net5.0/ImgBBApi.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +dcf2eaaba221741fd7361d4eff27d9d5e7e18f91 diff --git a/obj/Debug/net5.0/ImgBBApi.csproj.FileListAbsolute.txt b/obj/Debug/net5.0/ImgBBApi.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..a71248b --- /dev/null +++ b/obj/Debug/net5.0/ImgBBApi.csproj.FileListAbsolute.txt @@ -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 diff --git a/obj/Debug/net5.0/ImgBBApi.csproj.GenerateResource.cache b/obj/Debug/net5.0/ImgBBApi.csproj.GenerateResource.cache new file mode 100644 index 0000000..e2c627b Binary files /dev/null and b/obj/Debug/net5.0/ImgBBApi.csproj.GenerateResource.cache differ diff --git a/obj/Debug/net5.0/ImgBBApi.dll b/obj/Debug/net5.0/ImgBBApi.dll new file mode 100644 index 0000000..0bba194 Binary files /dev/null and b/obj/Debug/net5.0/ImgBBApi.dll differ diff --git a/obj/Debug/net5.0/ImgBBApi.pdb b/obj/Debug/net5.0/ImgBBApi.pdb new file mode 100644 index 0000000..ade9fce Binary files /dev/null and b/obj/Debug/net5.0/ImgBBApi.pdb differ diff --git a/obj/Debug/net5.0/ref/ImgBBApi.dll b/obj/Debug/net5.0/ref/ImgBBApi.dll new file mode 100644 index 0000000..c3ccd4a Binary files /dev/null and b/obj/Debug/net5.0/ref/ImgBBApi.dll differ diff --git a/obj/Debug/net5.0/refint/ImgBBApi.dll b/obj/Debug/net5.0/refint/ImgBBApi.dll new file mode 100644 index 0000000..c3ccd4a Binary files /dev/null and b/obj/Debug/net5.0/refint/ImgBBApi.dll differ diff --git a/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..ed92695 --- /dev/null +++ b/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")] diff --git a/obj/Debug/net6.0/ImgBBApi.AssemblyInfo.cs b/obj/Debug/net6.0/ImgBBApi.AssemblyInfo.cs new file mode 100644 index 0000000..94601e9 --- /dev/null +++ b/obj/Debug/net6.0/ImgBBApi.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 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. +// +//------------------------------------------------------------------------------ + +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. + diff --git a/obj/Debug/net6.0/ImgBBApi.AssemblyInfoInputs.cache b/obj/Debug/net6.0/ImgBBApi.AssemblyInfoInputs.cache new file mode 100644 index 0000000..ae28100 --- /dev/null +++ b/obj/Debug/net6.0/ImgBBApi.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +832aaba013b84d3d47cf36ca53dcafe1234b8ac8 diff --git a/obj/Debug/net6.0/ImgBBApi.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0/ImgBBApi.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7a90b33 --- /dev/null +++ b/obj/Debug/net6.0/ImgBBApi.GeneratedMSBuildEditorConfig.editorconfig @@ -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\ diff --git a/obj/Debug/net6.0/ImgBBApi.GlobalUsings.g.cs b/obj/Debug/net6.0/ImgBBApi.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/obj/Debug/net6.0/ImgBBApi.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +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; diff --git a/obj/Debug/net6.0/ImgBBApi.Properties.Resources.resources b/obj/Debug/net6.0/ImgBBApi.Properties.Resources.resources new file mode 100644 index 0000000..dee6376 Binary files /dev/null and b/obj/Debug/net6.0/ImgBBApi.Properties.Resources.resources differ diff --git a/obj/Debug/net6.0/ImgBBApi.assets.cache b/obj/Debug/net6.0/ImgBBApi.assets.cache new file mode 100644 index 0000000..3518dbf Binary files /dev/null and b/obj/Debug/net6.0/ImgBBApi.assets.cache differ diff --git a/obj/Debug/net6.0/ImgBBApi.csproj.AssemblyReference.cache b/obj/Debug/net6.0/ImgBBApi.csproj.AssemblyReference.cache new file mode 100644 index 0000000..d788aeb Binary files /dev/null and b/obj/Debug/net6.0/ImgBBApi.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net6.0/ImgBBApi.csproj.CoreCompileInputs.cache b/obj/Debug/net6.0/ImgBBApi.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..d031f6d --- /dev/null +++ b/obj/Debug/net6.0/ImgBBApi.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +90b2958116f5d9142abe5e060b864c26012e5b7b diff --git a/obj/Debug/net6.0/ImgBBApi.csproj.FileListAbsolute.txt b/obj/Debug/net6.0/ImgBBApi.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..99a0325 --- /dev/null +++ b/obj/Debug/net6.0/ImgBBApi.csproj.FileListAbsolute.txt @@ -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 diff --git a/obj/Debug/net6.0/ImgBBApi.csproj.GenerateResource.cache b/obj/Debug/net6.0/ImgBBApi.csproj.GenerateResource.cache new file mode 100644 index 0000000..e2c627b Binary files /dev/null and b/obj/Debug/net6.0/ImgBBApi.csproj.GenerateResource.cache differ diff --git a/obj/Debug/net6.0/ImgBBApi.dll b/obj/Debug/net6.0/ImgBBApi.dll new file mode 100644 index 0000000..58b0333 Binary files /dev/null and b/obj/Debug/net6.0/ImgBBApi.dll differ diff --git a/obj/Debug/net6.0/ImgBBApi.pdb b/obj/Debug/net6.0/ImgBBApi.pdb new file mode 100644 index 0000000..7121aaa Binary files /dev/null and b/obj/Debug/net6.0/ImgBBApi.pdb differ diff --git a/obj/Debug/net6.0/ref/ImgBBApi.dll b/obj/Debug/net6.0/ref/ImgBBApi.dll new file mode 100644 index 0000000..9997124 Binary files /dev/null and b/obj/Debug/net6.0/ref/ImgBBApi.dll differ diff --git a/obj/Debug/net6.0/refint/ImgBBApi.dll b/obj/Debug/net6.0/refint/ImgBBApi.dll new file mode 100644 index 0000000..9997124 Binary files /dev/null and b/obj/Debug/net6.0/refint/ImgBBApi.dll differ diff --git a/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 0000000..4257f4b --- /dev/null +++ b/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/obj/Debug/net7.0/ImgBBApi.AssemblyInfo.cs b/obj/Debug/net7.0/ImgBBApi.AssemblyInfo.cs new file mode 100644 index 0000000..94601e9 --- /dev/null +++ b/obj/Debug/net7.0/ImgBBApi.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 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. +// +//------------------------------------------------------------------------------ + +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. + diff --git a/obj/Debug/net7.0/ImgBBApi.AssemblyInfoInputs.cache b/obj/Debug/net7.0/ImgBBApi.AssemblyInfoInputs.cache new file mode 100644 index 0000000..ae28100 --- /dev/null +++ b/obj/Debug/net7.0/ImgBBApi.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +832aaba013b84d3d47cf36ca53dcafe1234b8ac8 diff --git a/obj/Debug/net7.0/ImgBBApi.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net7.0/ImgBBApi.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..131fad7 --- /dev/null +++ b/obj/Debug/net7.0/ImgBBApi.GeneratedMSBuildEditorConfig.editorconfig @@ -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\ diff --git a/obj/Debug/net7.0/ImgBBApi.GlobalUsings.g.cs b/obj/Debug/net7.0/ImgBBApi.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/obj/Debug/net7.0/ImgBBApi.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +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; diff --git a/obj/Debug/net7.0/ImgBBApi.assets.cache b/obj/Debug/net7.0/ImgBBApi.assets.cache new file mode 100644 index 0000000..de25b8d Binary files /dev/null and b/obj/Debug/net7.0/ImgBBApi.assets.cache differ diff --git a/obj/Debug/net7.0/ImgBBApi.csproj.FileListAbsolute.txt b/obj/Debug/net7.0/ImgBBApi.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..e864ee6 --- /dev/null +++ b/obj/Debug/net7.0/ImgBBApi.csproj.FileListAbsolute.txt @@ -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 diff --git a/obj/Debug/net7.0/ImgBBApi.csproj.GenerateResource.cache b/obj/Debug/net7.0/ImgBBApi.csproj.GenerateResource.cache new file mode 100644 index 0000000..e2c627b Binary files /dev/null and b/obj/Debug/net7.0/ImgBBApi.csproj.GenerateResource.cache differ diff --git a/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs b/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs new file mode 100644 index 0000000..8bf3a42 --- /dev/null +++ b/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.0", FrameworkDisplayName = ".NET Standard 2.0")] diff --git a/obj/Debug/netstandard2.0/ImgBBApi.AssemblyInfo.cs b/obj/Debug/netstandard2.0/ImgBBApi.AssemblyInfo.cs new file mode 100644 index 0000000..94601e9 --- /dev/null +++ b/obj/Debug/netstandard2.0/ImgBBApi.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 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. +// +//------------------------------------------------------------------------------ + +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. + diff --git a/obj/Debug/netstandard2.0/ImgBBApi.AssemblyInfoInputs.cache b/obj/Debug/netstandard2.0/ImgBBApi.AssemblyInfoInputs.cache new file mode 100644 index 0000000..ae28100 --- /dev/null +++ b/obj/Debug/netstandard2.0/ImgBBApi.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +832aaba013b84d3d47cf36ca53dcafe1234b8ac8 diff --git a/obj/Debug/netstandard2.0/ImgBBApi.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/netstandard2.0/ImgBBApi.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..5fb3659 --- /dev/null +++ b/obj/Debug/netstandard2.0/ImgBBApi.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,3 @@ +is_global = true +build_property.RootNamespace = CronNET +build_property.ProjectDir = C:\Users\kincs\source\repos\ImgBBApi\ diff --git a/obj/Debug/netstandard2.0/ImgBBApi.GlobalUsings.g.cs b/obj/Debug/netstandard2.0/ImgBBApi.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/obj/Debug/netstandard2.0/ImgBBApi.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +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; diff --git a/obj/Debug/netstandard2.0/ImgBBApi.assets.cache b/obj/Debug/netstandard2.0/ImgBBApi.assets.cache new file mode 100644 index 0000000..faf800a Binary files /dev/null and b/obj/Debug/netstandard2.0/ImgBBApi.assets.cache differ diff --git a/obj/Debug/netstandard2.0/ImgBBApi.csproj.AssemblyReference.cache b/obj/Debug/netstandard2.0/ImgBBApi.csproj.AssemblyReference.cache new file mode 100644 index 0000000..35f2d82 Binary files /dev/null and b/obj/Debug/netstandard2.0/ImgBBApi.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/netstandard2.0/ImgBBApi.csproj.FileListAbsolute.txt b/obj/Debug/netstandard2.0/ImgBBApi.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..e69de29 diff --git a/obj/ImgBBApi.csproj.nuget.dgspec.json b/obj/ImgBBApi.csproj.nuget.dgspec.json new file mode 100644 index 0000000..9ae7da0 --- /dev/null +++ b/obj/ImgBBApi.csproj.nuget.dgspec.json @@ -0,0 +1,117 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\kincs\\source\\repos\\ImgBBApi\\ImgBBApi.csproj": {} + }, + "projects": { + "C:\\Users\\kincs\\source\\repos\\ImgBBApi\\ImgBBApi.csproj": { + "version": "1.0.1", + "restore": { + "projectUniqueName": "C:\\Users\\kincs\\source\\repos\\ImgBBApi\\ImgBBApi.csproj", + "projectName": "Iminetsoft.ImgBBApi", + "projectPath": "C:\\Users\\kincs\\source\\repos\\ImgBBApi\\ImgBBApi.csproj", + "packagesPath": "C:\\Users\\kincs\\.nuget\\packages\\", + "outputPath": "C:\\Users\\kincs\\source\\repos\\ImgBBApi\\obj\\", + "projectStyle": "PackageReference", + "crossTargeting": true, + "configFilePaths": [ + "C:\\Users\\kincs\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0", + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "projectReferences": {} + }, + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "dependencies": { + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.3, )" + }, + "System.Drawing.Common": { + "target": "Package", + "version": "[7.0.0, )" + }, + "System.Resources.Extensions": { + "target": "Package", + "version": "[7.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.400\\RuntimeIdentifierGraph.json" + }, + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.3, )" + }, + "System.Drawing.Common": { + "target": "Package", + "version": "[7.0.0, )" + }, + "System.Resources.Extensions": { + "target": "Package", + "version": "[7.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.400\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/obj/ImgBBApi.csproj.nuget.g.props b/obj/ImgBBApi.csproj.nuget.g.props new file mode 100644 index 0000000..c8e8db8 --- /dev/null +++ b/obj/ImgBBApi.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\kincs\.nuget\packages\ + PackageReference + 6.7.0 + + + + + \ No newline at end of file diff --git a/obj/ImgBBApi.csproj.nuget.g.targets b/obj/ImgBBApi.csproj.nuget.g.targets new file mode 100644 index 0000000..479b2cf --- /dev/null +++ b/obj/ImgBBApi.csproj.nuget.g.targets @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/obj/project.assets.json b/obj/project.assets.json new file mode 100644 index 0000000..196ca9e --- /dev/null +++ b/obj/project.assets.json @@ -0,0 +1,416 @@ +{ + "version": 3, + "targets": { + "net5.0": { + "Newtonsoft.Json/13.0.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "System.Drawing.Common/7.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets": {} + } + }, + "System.Memory/4.5.5": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Resources.Extensions/7.0.0": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.5" + }, + "compile": { + "lib/netstandard2.0/System.Resources.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Resources.Extensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp2.0/System.Resources.Extensions.targets": {} + } + } + }, + "net6.0": { + "Microsoft.Win32.SystemEvents/7.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "System.Drawing.Common/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "7.0.0" + }, + "compile": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Resources.Extensions/7.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Resources.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Resources.Extensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + } + } + }, + "libraries": { + "Microsoft.Win32.SystemEvents/7.0.0": { + "sha512": "2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==", + "type": "package", + "path": "microsoft.win32.systemevents/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "lib/net462/Microsoft.Win32.SystemEvents.dll", + "lib/net462/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/net7.0/Microsoft.Win32.SystemEvents.dll", + "lib/net7.0/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.7.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" + ] + }, + "Newtonsoft.Json/13.0.3": { + "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "type": "package", + "path": "newtonsoft.json/13.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/net6.0/Newtonsoft.Json.dll", + "lib/net6.0/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.3.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "System.Drawing.Common/7.0.0": { + "sha512": "KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==", + "type": "package", + "path": "system.drawing.common/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Drawing.Common.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net462/System.Drawing.Common.dll", + "lib/net462/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/net7.0/System.Drawing.Common.dll", + "lib/net7.0/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/net7.0/System.Drawing.Common.dll", + "runtimes/win/lib/net7.0/System.Drawing.Common.xml", + "system.drawing.common.7.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Memory/4.5.5": { + "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "type": "package", + "path": "system.memory/4.5.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.5.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Resources.Extensions/7.0.0": { + "sha512": "65ufm9ABXvxRkQ//hMcUDrQXbGWkC7z0WWZAvHlQ6Qv+JmrIwHH1lmX8aXlNlXpIrT9KxDpuZPqJTVqqwzMD8Q==", + "type": "package", + "path": "system.resources.extensions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Resources.Extensions.targets", + "buildTransitive/net462/System.Resources.Extensions.targets", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Resources.Extensions.targets", + "lib/net462/System.Resources.Extensions.dll", + "lib/net462/System.Resources.Extensions.xml", + "lib/net6.0/System.Resources.Extensions.dll", + "lib/net6.0/System.Resources.Extensions.xml", + "lib/net7.0/System.Resources.Extensions.dll", + "lib/net7.0/System.Resources.Extensions.xml", + "lib/netstandard2.0/System.Resources.Extensions.dll", + "lib/netstandard2.0/System.Resources.Extensions.xml", + "system.resources.extensions.7.0.0.nupkg.sha512", + "system.resources.extensions.nuspec", + "useSharedDesignerContext.txt" + ] + } + }, + "projectFileDependencyGroups": { + "net5.0": [ + "Newtonsoft.Json >= 13.0.3", + "System.Drawing.Common >= 7.0.0", + "System.Resources.Extensions >= 7.0.0" + ], + "net6.0": [ + "Newtonsoft.Json >= 13.0.3", + "System.Drawing.Common >= 7.0.0", + "System.Resources.Extensions >= 7.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\kincs\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.1", + "restore": { + "projectUniqueName": "C:\\Users\\kincs\\source\\repos\\ImgBBApi\\ImgBBApi.csproj", + "projectName": "Iminetsoft.ImgBBApi", + "projectPath": "C:\\Users\\kincs\\source\\repos\\ImgBBApi\\ImgBBApi.csproj", + "packagesPath": "C:\\Users\\kincs\\.nuget\\packages\\", + "outputPath": "C:\\Users\\kincs\\source\\repos\\ImgBBApi\\obj\\", + "projectStyle": "PackageReference", + "crossTargeting": true, + "configFilePaths": [ + "C:\\Users\\kincs\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0", + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "projectReferences": {} + }, + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "dependencies": { + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.3, )" + }, + "System.Drawing.Common": { + "target": "Package", + "version": "[7.0.0, )" + }, + "System.Resources.Extensions": { + "target": "Package", + "version": "[7.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.400\\RuntimeIdentifierGraph.json" + }, + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.3, )" + }, + "System.Drawing.Common": { + "target": "Package", + "version": "[7.0.0, )" + }, + "System.Resources.Extensions": { + "target": "Package", + "version": "[7.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.400\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache new file mode 100644 index 0000000..cd789bb --- /dev/null +++ b/obj/project.nuget.cache @@ -0,0 +1,14 @@ +{ + "version": 2, + "dgSpecHash": "ZA32wxlQAvJRLcFiy8MKcZpLLRdDud4+6dBWSCyssL2JUDnWSN8oD0vhrsVWDyzV/ljXhmGhwsM5uKhq/nw4cw==", + "success": true, + "projectFilePath": "C:\\Users\\kincs\\source\\repos\\ImgBBApi\\ImgBBApi.csproj", + "expectedPackageFiles": [ + "C:\\Users\\kincs\\.nuget\\packages\\microsoft.win32.systemevents\\7.0.0\\microsoft.win32.systemevents.7.0.0.nupkg.sha512", + "C:\\Users\\kincs\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512", + "C:\\Users\\kincs\\.nuget\\packages\\system.drawing.common\\7.0.0\\system.drawing.common.7.0.0.nupkg.sha512", + "C:\\Users\\kincs\\.nuget\\packages\\system.memory\\4.5.5\\system.memory.4.5.5.nupkg.sha512", + "C:\\Users\\kincs\\.nuget\\packages\\system.resources.extensions\\7.0.0\\system.resources.extensions.7.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file