diff --git a/CandidateTest.csproj b/CandidateTest.csproj new file mode 100644 index 0000000..5b1edc4 --- /dev/null +++ b/CandidateTest.csproj @@ -0,0 +1,15 @@ + + + + Exe + net8.0 + enable + enable + + + + + + + + diff --git a/Post.cs b/Post.cs new file mode 100644 index 0000000..6b80791 --- /dev/null +++ b/Post.cs @@ -0,0 +1,36 @@ +using System; + +namespace CandidateTest +{ + public class Post + { + public string github_username { get; set; } + public string short_greeting { get; set; } + public string email { get; set; } + public string name { get; set; } + public RandomNumber random_number { get; set; } + public bool is_test { get; set; } + + public Post() + { + github_username = ""; + short_greeting = ""; + email = ""; + name = ""; + random_number = new RandomNumber(); + is_test = false; + } + } + + public class RandomNumber + { + public int number { get; set; } + public string reason { get; set; } + + public RandomNumber() + { + number = 0; + reason = ""; + } + } +} diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..57d1500 --- /dev/null +++ b/Program.cs @@ -0,0 +1,48 @@ +using System; +using RestSharp; + +namespace CandidateTest +{ + class Program + { + static void Main(string[] args) + { + Random random = new Random(); + int randomNumber = random.Next(10, 1001); + Console.WriteLine(randomNumber); + + string url = "https://flow.zoho.com/663067151/flow/webhook/incoming?zapikey=1001.72d0b18a4316a1acc8f0de7fa7dbdf74.4f792bf21ebf81a4d04112d94177a2a1&isdebug=false"; + var client = new RestClient(url); + var request = new RestRequest(); + + var body = new Post + { + github_username = "Hoanghuyen2k3", + short_greeting = "Thank you for the opportunity and I am looking forward to discussing more", + email = "khanhhuyenx20@gmail.com", + name = "Thi Huyen Hoang", + random_number = new RandomNumber + { + number = randomNumber, + reason = "This is a random number generated by the Random function." + }, + is_test = false + }; + + request.AddJsonBody(body); + Console.WriteLine(Newtonsoft.Json.JsonConvert.SerializeObject(body)); + + var response = client.Post(request); + if (response != null) + { + Console.WriteLine(response.StatusCode.ToString() + " " + response.Content.ToString()); + } + else + { + Console.WriteLine("The response object is null."); + } + + Console.Read(); + } + } +} diff --git a/bin/Debug/net8.0/CandidateTest.deps.json b/bin/Debug/net8.0/CandidateTest.deps.json new file mode 100644 index 0000000..91c80b4 --- /dev/null +++ b/bin/Debug/net8.0/CandidateTest.deps.json @@ -0,0 +1,80 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "CandidateTest/1.0.0": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "RestSharp": "110.2.0" + }, + "runtime": { + "CandidateTest.dll": {} + } + }, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "RestSharp/110.2.0": { + "dependencies": { + "System.Text.Json": "7.0.2" + }, + "runtime": { + "lib/net7.0/RestSharp.dll": { + "assemblyVersion": "110.2.0.0", + "fileVersion": "110.2.0.0" + } + } + }, + "System.Text.Encodings.Web/7.0.0": {}, + "System.Text.Json/7.0.2": { + "dependencies": { + "System.Text.Encodings.Web": "7.0.0" + } + } + } + }, + "libraries": { + "CandidateTest/1.0.0": { + "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" + }, + "RestSharp/110.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FXGw0IMcqY7yO/hzS9QrD3iNswNgb9UxJnxWmfOxmGs4kRlZWqdtBoGPLuhlbgsDzX1RFo4WKui8TGGKXWKalw==", + "path": "restsharp/110.2.0", + "hashPath": "restsharp.110.2.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==", + "path": "system.text.encodings.web/7.0.0", + "hashPath": "system.text.encodings.web.7.0.0.nupkg.sha512" + }, + "System.Text.Json/7.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/LZf/JrGyilojqwpaywb+sSz8Tew7ij4K/Sk+UW8AKfAK7KRhR6mKpKtTm06cYA7bCpGTWfYksIW+mVsdxPegQ==", + "path": "system.text.json/7.0.2", + "hashPath": "system.text.json.7.0.2.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net8.0/CandidateTest.dll b/bin/Debug/net8.0/CandidateTest.dll new file mode 100644 index 0000000..475710a Binary files /dev/null and b/bin/Debug/net8.0/CandidateTest.dll differ diff --git a/bin/Debug/net8.0/CandidateTest.exe b/bin/Debug/net8.0/CandidateTest.exe new file mode 100644 index 0000000..c984695 Binary files /dev/null and b/bin/Debug/net8.0/CandidateTest.exe differ diff --git a/bin/Debug/net8.0/CandidateTest.pdb b/bin/Debug/net8.0/CandidateTest.pdb new file mode 100644 index 0000000..1a39a62 Binary files /dev/null and b/bin/Debug/net8.0/CandidateTest.pdb differ diff --git a/bin/Debug/net8.0/CandidateTest.runtimeconfig.json b/bin/Debug/net8.0/CandidateTest.runtimeconfig.json new file mode 100644 index 0000000..becfaea --- /dev/null +++ b/bin/Debug/net8.0/CandidateTest.runtimeconfig.json @@ -0,0 +1,12 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + "configProperties": { + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/bin/Debug/net8.0/Newtonsoft.Json.dll b/bin/Debug/net8.0/Newtonsoft.Json.dll new file mode 100644 index 0000000..d035c38 Binary files /dev/null and b/bin/Debug/net8.0/Newtonsoft.Json.dll differ diff --git a/bin/Debug/net8.0/RestSharp.dll b/bin/Debug/net8.0/RestSharp.dll new file mode 100644 index 0000000..580f7af Binary files /dev/null and b/bin/Debug/net8.0/RestSharp.dll differ diff --git a/obj/CandidateTest.csproj.nuget.dgspec.json b/obj/CandidateTest.csproj.nuget.dgspec.json new file mode 100644 index 0000000..ba1a1a7 --- /dev/null +++ b/obj/CandidateTest.csproj.nuget.dgspec.json @@ -0,0 +1,76 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\Thi Huyen Hoang\\Documents\\program\\C#\\CandidateTest\\CandidateTest.csproj": {} + }, + "projects": { + "C:\\Users\\Thi Huyen Hoang\\Documents\\program\\C#\\CandidateTest\\CandidateTest.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Thi Huyen Hoang\\Documents\\program\\C#\\CandidateTest\\CandidateTest.csproj", + "projectName": "CandidateTest", + "projectPath": "C:\\Users\\Thi Huyen Hoang\\Documents\\program\\C#\\CandidateTest\\CandidateTest.csproj", + "packagesPath": "C:\\Users\\Thi Huyen Hoang\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Thi Huyen Hoang\\Documents\\program\\C#\\CandidateTest\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\Thi Huyen Hoang\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.3, )" + }, + "RestSharp": { + "target": "Package", + "version": "[110.2.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\\8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/obj/CandidateTest.csproj.nuget.g.props b/obj/CandidateTest.csproj.nuget.g.props new file mode 100644 index 0000000..c599ff7 --- /dev/null +++ b/obj/CandidateTest.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Thi Huyen Hoang\.nuget\packages\ + PackageReference + 6.9.1 + + + + + \ No newline at end of file diff --git a/obj/CandidateTest.csproj.nuget.g.targets b/obj/CandidateTest.csproj.nuget.g.targets new file mode 100644 index 0000000..8fd39e6 --- /dev/null +++ b/obj/CandidateTest.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/obj/Debug/net8.0/Candidat.ADE18942.Up2Date b/obj/Debug/net8.0/Candidat.ADE18942.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net8.0/CandidateTest.AssemblyInfo.cs b/obj/Debug/net8.0/CandidateTest.AssemblyInfo.cs new file mode 100644 index 0000000..47f774e --- /dev/null +++ b/obj/Debug/net8.0/CandidateTest.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// 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("CandidateTest")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+1d5ff9e9649cd6431cb6e540705942ae6441851b")] +[assembly: System.Reflection.AssemblyProductAttribute("CandidateTest")] +[assembly: System.Reflection.AssemblyTitleAttribute("CandidateTest")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net8.0/CandidateTest.AssemblyInfoInputs.cache b/obj/Debug/net8.0/CandidateTest.AssemblyInfoInputs.cache new file mode 100644 index 0000000..0f5db45 --- /dev/null +++ b/obj/Debug/net8.0/CandidateTest.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +68c810ce2fb396350bd4a0ff25caba41e0b5b78c4c3e4fd9360f8045ce480043 diff --git a/obj/Debug/net8.0/CandidateTest.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net8.0/CandidateTest.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..e768364 --- /dev/null +++ b/obj/Debug/net8.0/CandidateTest.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.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 = CandidateTest +build_property.ProjectDir = C:\Users\Thi Huyen Hoang\Documents\program\C#\CandidateTest\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/obj/Debug/net8.0/CandidateTest.GlobalUsings.g.cs b/obj/Debug/net8.0/CandidateTest.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/obj/Debug/net8.0/CandidateTest.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/net8.0/CandidateTest.assets.cache b/obj/Debug/net8.0/CandidateTest.assets.cache new file mode 100644 index 0000000..c6f01f9 Binary files /dev/null and b/obj/Debug/net8.0/CandidateTest.assets.cache differ diff --git a/obj/Debug/net8.0/CandidateTest.csproj.AssemblyReference.cache b/obj/Debug/net8.0/CandidateTest.csproj.AssemblyReference.cache new file mode 100644 index 0000000..29008eb Binary files /dev/null and b/obj/Debug/net8.0/CandidateTest.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net8.0/CandidateTest.csproj.CoreCompileInputs.cache b/obj/Debug/net8.0/CandidateTest.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..147831a --- /dev/null +++ b/obj/Debug/net8.0/CandidateTest.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +d96a89d3d965f65150f0fb68d30a4222202a52348cc4119e4bc13f2c36739b87 diff --git a/obj/Debug/net8.0/CandidateTest.csproj.FileListAbsolute.txt b/obj/Debug/net8.0/CandidateTest.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..07bd806 --- /dev/null +++ b/obj/Debug/net8.0/CandidateTest.csproj.FileListAbsolute.txt @@ -0,0 +1,19 @@ +C:\Users\Thi Huyen Hoang\Documents\program\C#\CandidateTest\obj\Debug\net8.0\CandidateTest.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\Thi Huyen Hoang\Documents\program\C#\CandidateTest\obj\Debug\net8.0\CandidateTest.AssemblyInfoInputs.cache +C:\Users\Thi Huyen Hoang\Documents\program\C#\CandidateTest\obj\Debug\net8.0\CandidateTest.AssemblyInfo.cs +C:\Users\Thi Huyen Hoang\Documents\program\C#\CandidateTest\obj\Debug\net8.0\CandidateTest.csproj.CoreCompileInputs.cache +C:\Users\Thi Huyen Hoang\Documents\program\C#\CandidateTest\obj\Debug\net8.0\CandidateTest.sourcelink.json +C:\Users\Thi Huyen Hoang\Documents\program\C#\CandidateTest\bin\Debug\net8.0\CandidateTest.exe +C:\Users\Thi Huyen Hoang\Documents\program\C#\CandidateTest\bin\Debug\net8.0\CandidateTest.deps.json +C:\Users\Thi Huyen Hoang\Documents\program\C#\CandidateTest\bin\Debug\net8.0\CandidateTest.runtimeconfig.json +C:\Users\Thi Huyen Hoang\Documents\program\C#\CandidateTest\bin\Debug\net8.0\CandidateTest.dll +C:\Users\Thi Huyen Hoang\Documents\program\C#\CandidateTest\bin\Debug\net8.0\CandidateTest.pdb +C:\Users\Thi Huyen Hoang\Documents\program\C#\CandidateTest\bin\Debug\net8.0\Newtonsoft.Json.dll +C:\Users\Thi Huyen Hoang\Documents\program\C#\CandidateTest\bin\Debug\net8.0\RestSharp.dll +C:\Users\Thi Huyen Hoang\Documents\program\C#\CandidateTest\obj\Debug\net8.0\CandidateTest.csproj.AssemblyReference.cache +C:\Users\Thi Huyen Hoang\Documents\program\C#\CandidateTest\obj\Debug\net8.0\Candidat.ADE18942.Up2Date +C:\Users\Thi Huyen Hoang\Documents\program\C#\CandidateTest\obj\Debug\net8.0\CandidateTest.dll +C:\Users\Thi Huyen Hoang\Documents\program\C#\CandidateTest\obj\Debug\net8.0\refint\CandidateTest.dll +C:\Users\Thi Huyen Hoang\Documents\program\C#\CandidateTest\obj\Debug\net8.0\CandidateTest.pdb +C:\Users\Thi Huyen Hoang\Documents\program\C#\CandidateTest\obj\Debug\net8.0\CandidateTest.genruntimeconfig.cache +C:\Users\Thi Huyen Hoang\Documents\program\C#\CandidateTest\obj\Debug\net8.0\ref\CandidateTest.dll diff --git a/obj/Debug/net8.0/CandidateTest.dll b/obj/Debug/net8.0/CandidateTest.dll new file mode 100644 index 0000000..475710a Binary files /dev/null and b/obj/Debug/net8.0/CandidateTest.dll differ diff --git a/obj/Debug/net8.0/CandidateTest.genruntimeconfig.cache b/obj/Debug/net8.0/CandidateTest.genruntimeconfig.cache new file mode 100644 index 0000000..a4f93df --- /dev/null +++ b/obj/Debug/net8.0/CandidateTest.genruntimeconfig.cache @@ -0,0 +1 @@ +1a26daff9c7b578b3d9f819c827cf94df40b761883addde2ea36ef2c231fc997 diff --git a/obj/Debug/net8.0/CandidateTest.pdb b/obj/Debug/net8.0/CandidateTest.pdb new file mode 100644 index 0000000..1a39a62 Binary files /dev/null and b/obj/Debug/net8.0/CandidateTest.pdb differ diff --git a/obj/Debug/net8.0/CandidateTest.sourcelink.json b/obj/Debug/net8.0/CandidateTest.sourcelink.json new file mode 100644 index 0000000..5c12b83 --- /dev/null +++ b/obj/Debug/net8.0/CandidateTest.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"C:\\Users\\Thi Huyen Hoang\\Documents\\program\\C#\\CandidateTest\\*":"https://raw.githubusercontent.com/Hoanghuyen2k3/CandidateTest/1d5ff9e9649cd6431cb6e540705942ae6441851b/*"}} \ No newline at end of file diff --git a/obj/Debug/net8.0/apphost.exe b/obj/Debug/net8.0/apphost.exe new file mode 100644 index 0000000..c984695 Binary files /dev/null and b/obj/Debug/net8.0/apphost.exe differ diff --git a/obj/Debug/net8.0/ref/CandidateTest.dll b/obj/Debug/net8.0/ref/CandidateTest.dll new file mode 100644 index 0000000..35a7d02 Binary files /dev/null and b/obj/Debug/net8.0/ref/CandidateTest.dll differ diff --git a/obj/Debug/net8.0/refint/CandidateTest.dll b/obj/Debug/net8.0/refint/CandidateTest.dll new file mode 100644 index 0000000..35a7d02 Binary files /dev/null and b/obj/Debug/net8.0/refint/CandidateTest.dll differ diff --git a/obj/project.assets.json b/obj/project.assets.json new file mode 100644 index 0000000..3aacb19 --- /dev/null +++ b/obj/project.assets.json @@ -0,0 +1,308 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "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" + } + } + }, + "RestSharp/110.2.0": { + "type": "package", + "dependencies": { + "System.Text.Json": "7.0.2" + }, + "compile": { + "lib/net7.0/RestSharp.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/RestSharp.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encodings.Web/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/7.0.2": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/System.Text.Json.targets": {} + } + } + } + }, + "libraries": { + "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" + ] + }, + "RestSharp/110.2.0": { + "sha512": "FXGw0IMcqY7yO/hzS9QrD3iNswNgb9UxJnxWmfOxmGs4kRlZWqdtBoGPLuhlbgsDzX1RFo4WKui8TGGKXWKalw==", + "type": "package", + "path": "restsharp/110.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net471/RestSharp.dll", + "lib/net471/RestSharp.xml", + "lib/net6.0/RestSharp.dll", + "lib/net6.0/RestSharp.xml", + "lib/net7.0/RestSharp.dll", + "lib/net7.0/RestSharp.xml", + "lib/netstandard2.0/RestSharp.dll", + "lib/netstandard2.0/RestSharp.xml", + "restsharp.110.2.0.nupkg.sha512", + "restsharp.nuspec", + "restsharp.png" + ] + }, + "System.Text.Encodings.Web/7.0.0": { + "sha512": "OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==", + "type": "package", + "path": "system.text.encodings.web/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Text.Encodings.Web.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "lib/net462/System.Text.Encodings.Web.dll", + "lib/net462/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/net7.0/System.Text.Encodings.Web.dll", + "lib/net7.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.7.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/7.0.2": { + "sha512": "/LZf/JrGyilojqwpaywb+sSz8Tew7ij4K/Sk+UW8AKfAK7KRhR6mKpKtTm06cYA7bCpGTWfYksIW+mVsdxPegQ==", + "type": "package", + "path": "system.text.json/7.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "buildTransitive/net461/System.Text.Json.targets", + "buildTransitive/net462/System.Text.Json.targets", + "buildTransitive/net6.0/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netstandard2.0/System.Text.Json.targets", + "lib/net462/System.Text.Json.dll", + "lib/net462/System.Text.Json.xml", + "lib/net6.0/System.Text.Json.dll", + "lib/net6.0/System.Text.Json.xml", + "lib/net7.0/System.Text.Json.dll", + "lib/net7.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.7.0.2.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "Newtonsoft.Json >= 13.0.3", + "RestSharp >= 110.2.0" + ] + }, + "packageFolders": { + "C:\\Users\\Thi Huyen Hoang\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Thi Huyen Hoang\\Documents\\program\\C#\\CandidateTest\\CandidateTest.csproj", + "projectName": "CandidateTest", + "projectPath": "C:\\Users\\Thi Huyen Hoang\\Documents\\program\\C#\\CandidateTest\\CandidateTest.csproj", + "packagesPath": "C:\\Users\\Thi Huyen Hoang\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Thi Huyen Hoang\\Documents\\program\\C#\\CandidateTest\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\Thi Huyen Hoang\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.3, )" + }, + "RestSharp": { + "target": "Package", + "version": "[110.2.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\\8.0.204/PortableRuntimeIdentifierGraph.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..3a04361 --- /dev/null +++ b/obj/project.nuget.cache @@ -0,0 +1,13 @@ +{ + "version": 2, + "dgSpecHash": "aQJz1WiFC1EXryOejg/t4I1wtPIQ//m3LjUXACGg8fyIkgjrhMxVQG038REuGpa6ZvDNR6vSCLf9EB52U8XNnw==", + "success": true, + "projectFilePath": "C:\\Users\\Thi Huyen Hoang\\Documents\\program\\C#\\CandidateTest\\CandidateTest.csproj", + "expectedPackageFiles": [ + "C:\\Users\\Thi Huyen Hoang\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512", + "C:\\Users\\Thi Huyen Hoang\\.nuget\\packages\\restsharp\\110.2.0\\restsharp.110.2.0.nupkg.sha512", + "C:\\Users\\Thi Huyen Hoang\\.nuget\\packages\\system.text.encodings.web\\7.0.0\\system.text.encodings.web.7.0.0.nupkg.sha512", + "C:\\Users\\Thi Huyen Hoang\\.nuget\\packages\\system.text.json\\7.0.2\\system.text.json.7.0.2.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file