diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9eb4be2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,30 @@ +# Build Artifacts +bin/ +obj/ +*.dll +*.exe +*.pdb + +# Visual Studio / .NET specific +*.suo +*.user +*.sln.docstates +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +build/ +bld/ +[Bb]in/ +[Oo]bj/ + +# NuGet Packages +*.nupkg +**/packages/* +!**/packages/build/ + +# Other +.vs/ +*.log \ No newline at end of file diff --git a/BusinessApp/Mathoperations.cs b/BusinessApp/Mathoperations.cs index aafa0b2..e625be8 100644 --- a/BusinessApp/Mathoperations.cs +++ b/BusinessApp/Mathoperations.cs @@ -4,27 +4,43 @@ public class DoMath { public void Area(){ { + Console.ForegroundColor = ConsoleColor.Green; Console.Write("Enter Radius: "); + Console.ResetColor(); double rad = Convert.ToDouble(Console.ReadLine()); double area = Math.PI * rad * rad; + Console.ForegroundColor = ConsoleColor.Yellow; Console.WriteLine("Area of circle is: " + area); + Console.ResetColor(); + + Console.ForegroundColor = ConsoleColor.DarkGray; + Console.WriteLine("Press Enter to continue..."); + Console.ResetColor(); Console.ReadLine(); } } public void CheckLeap() { + Console.ForegroundColor = ConsoleColor.Green; Console.Write("Enter a year: "); + Console.ResetColor(); int year = int.Parse(Console.ReadLine()); if (year % 4 == 0) { + Console.ForegroundColor = ConsoleColor.Green; Console.WriteLine("Entered year {0} is a leap year.", year); } else { + Console.ForegroundColor = ConsoleColor.Red; Console.WriteLine("Entered year {0} is not a leap year.", year); } + Console.ResetColor(); + Console.ForegroundColor = ConsoleColor.DarkGray; + Console.WriteLine("Press Enter to continue..."); + Console.ResetColor(); Console.ReadLine(); } @@ -32,9 +48,31 @@ public void IsP() { int num; bool x = true; + Console.ForegroundColor = ConsoleColor.Green; Console.WriteLine("Enter the Number to check Prime: "); + Console.ResetColor(); num = int.Parse(Console.ReadLine()); - for (int i = 2; i <= num / 2; i++){if (num % i == 0){ Console.WriteLine("Number is not P.");x = false; break;} } if (x == true) Console.WriteLine("Number is P."); + for (int i = 2; i <= num / 2; i++) + { + if (num % i == 0) + { + Console.ForegroundColor = ConsoleColor.Red; + Console.WriteLine("Number is not P."); + Console.ResetColor(); + x = false; + break; + } + } + if (x == true) + { + Console.ForegroundColor = ConsoleColor.Green; + Console.WriteLine("Number is P."); + Console.ResetColor(); + } + + Console.ForegroundColor = ConsoleColor.DarkGray; + Console.WriteLine("Press any key to continue..."); + Console.ResetColor(); Console.ReadKey(); } diff --git a/BusinessApp/PrintOperations.cs b/BusinessApp/PrintOperations.cs index 36f7bda..cac4293 100644 --- a/BusinessApp/PrintOperations.cs +++ b/BusinessApp/PrintOperations.cs @@ -4,8 +4,12 @@ public class Printoperations{ public void PrintSomething(){ char ch = 'A'; int i, j, k, m, n; + Console.ForegroundColor = ConsoleColor.Green; Console.Write("Enter the number of rows:"); + Console.ResetColor(); n = int.Parse(Console.ReadLine()); + + Console.ForegroundColor = ConsoleColor.Yellow; for (i = 1; i <= n; i++) { for (j = n; j >= i; j--) @@ -24,6 +28,11 @@ public void PrintSomething(){ Console.Write("\n"); ch = 'A'; } + Console.ResetColor(); + + Console.ForegroundColor = ConsoleColor.DarkGray; + Console.WriteLine("\nPress Enter to continue..."); + Console.ResetColor(); Console.ReadLine(); } @@ -31,8 +40,12 @@ public void PrintS() { int i, j, k, l, n; char c = '*'; + Console.ForegroundColor = ConsoleColor.Green; Console.Write("Enter the number of rows:"); + Console.ResetColor(); n = int.Parse(Console.ReadLine()); + + Console.ForegroundColor = ConsoleColor.Magenta; for (i = 1; i <= n; i++) { for (j = 1; j <= n - i; j++) @@ -49,13 +62,20 @@ public void PrintS() } Console.Write("\n"); } + Console.ResetColor(); + + Console.ForegroundColor = ConsoleColor.DarkGray; + Console.WriteLine("\nPress Enter to continue..."); + Console.ResetColor(); Console.ReadLine(); } public void Check() { string str, revstr = ""; + Console.ForegroundColor = ConsoleColor.Green; Console.Write("Enter string: "); + Console.ResetColor(); str = Console.ReadLine(); for (int i = str.Length - 1; i >= 0; i--) //String Reverse { @@ -63,12 +83,19 @@ public void Check() } if (revstr.ToLower() == str.ToLower()) // Checking whether string is palindrome or not { + Console.ForegroundColor = ConsoleColor.Green; Console.Write("Entered string {0} is a Palindrome string. ", str); } else { + Console.ForegroundColor = ConsoleColor.Red; Console.Write("Entered string {0} is not a Palindrome string. ", str); } + Console.ResetColor(); + + Console.ForegroundColor = ConsoleColor.DarkGray; + Console.WriteLine("\nPress Enter to continue..."); + Console.ResetColor(); Console.ReadLine(); } diff --git a/BusinessApp/Program.cs b/BusinessApp/Program.cs index ee14eb0..bf729a7 100644 --- a/BusinessApp/Program.cs +++ b/BusinessApp/Program.cs @@ -12,21 +12,30 @@ static void Main(string[] args) showMenu = MainMenu(); } } - private static bool MainMenu() - { - Printoperations p = new Printoperations(); - DoMath d = new DoMath(); - - Console.Clear(); - Console.WriteLine("Choose an option:"); - Console.WriteLine("1) Reverse String"); - Console.WriteLine("2) Remove Whitespace"); - Console.WriteLine("3) Print"); - Console.WriteLine("4) Print star"); - Console.WriteLine("5) Calculate area"); - Console.WriteLine("6) Is number p"); - Console.WriteLine("0) Exit"); - Console.Write("\r\nSelect an option: "); + private static bool MainMenu() + { + Printoperations p = new Printoperations(); + DoMath d = new DoMath(); + + Console.Clear(); + Console.ForegroundColor = ConsoleColor.Cyan; + Console.WriteLine("Choose an option:"); + Console.ResetColor(); + + Console.ForegroundColor = ConsoleColor.White; + Console.WriteLine("1) Reverse String"); + Console.WriteLine("2) Remove Whitespace"); + Console.WriteLine("3) Print"); + Console.WriteLine("4) Print star"); + Console.WriteLine("5) Calculate area"); + Console.WriteLine("6) Is number p"); + Console.ForegroundColor = ConsoleColor.Yellow; + Console.WriteLine("0) Exit"); + Console.ResetColor(); + + Console.ForegroundColor = ConsoleColor.Green; + Console.Write("\r\nSelect an option: "); + Console.ResetColor(); switch (Console.ReadLine()) { @@ -54,35 +63,48 @@ private static bool MainMenu() return true; } } - private static string CaptureInput() - { - Console.Write("Enter the string you want to modify: "); - return Console.ReadLine(); + private static string CaptureInput() + { + Console.ForegroundColor = ConsoleColor.Green; + Console.Write("Enter the string you want to modify: "); + Console.ResetColor(); + return Console.ReadLine(); } - private static void ReverseString() - { - Console.Clear(); - Console.WriteLine("Reverse String"); - - char[] charArray = CaptureInput().ToCharArray(); - Array.Reverse(charArray); - DisplayResult(String.Concat(charArray)); + private static void ReverseString() + { + Console.Clear(); + Console.ForegroundColor = ConsoleColor.Cyan; + Console.WriteLine("Reverse String"); + Console.ResetColor(); + + char[] charArray = CaptureInput().ToCharArray(); + Array.Reverse(charArray); + DisplayResult(String.Concat(charArray)); } - private static void RemoveWhitespace() - { - Console.Clear(); - Console.WriteLine("Remove Whitespace"); - - DisplayResult(CaptureInput().Replace(" ", "")); + private static void RemoveWhitespace() + { + Console.Clear(); + Console.ForegroundColor = ConsoleColor.Cyan; + Console.WriteLine("Remove Whitespace"); + Console.ResetColor(); + + DisplayResult(CaptureInput().Replace(" ", "")); } - private static void DisplayResult(string message) - { - Console.WriteLine($"\r\nYour modified string is: {message}"); - Console.Write("\r\nPress Enter to return to Main Menu"); - Console.ReadLine(); + private static void DisplayResult(string message) + { + Console.ForegroundColor = ConsoleColor.Yellow; + Console.WriteLine($"\r\nYour modified string is: "); + Console.ForegroundColor = ConsoleColor.White; + Console.WriteLine(message); + Console.ResetColor(); + + Console.ForegroundColor = ConsoleColor.DarkGray; + Console.Write("\r\nPress Enter to return to Main Menu"); + Console.ResetColor(); + Console.ReadLine(); } } diff --git a/BusinessApp/bin/Debug/net7.0/BusinessApp b/BusinessApp/bin/Debug/net7.0/BusinessApp index 60b500f..a0beef1 100755 Binary files a/BusinessApp/bin/Debug/net7.0/BusinessApp and b/BusinessApp/bin/Debug/net7.0/BusinessApp differ diff --git a/BusinessApp/bin/Debug/net7.0/BusinessApp.dll b/BusinessApp/bin/Debug/net7.0/BusinessApp.dll index d715675..3119726 100644 Binary files a/BusinessApp/bin/Debug/net7.0/BusinessApp.dll and b/BusinessApp/bin/Debug/net7.0/BusinessApp.dll differ diff --git a/BusinessApp/bin/Debug/net7.0/BusinessApp.pdb b/BusinessApp/bin/Debug/net7.0/BusinessApp.pdb index f132ecd..43b26c1 100644 Binary files a/BusinessApp/bin/Debug/net7.0/BusinessApp.pdb and b/BusinessApp/bin/Debug/net7.0/BusinessApp.pdb differ diff --git a/BusinessApp/obj/BusinessApp.csproj.nuget.dgspec.json b/BusinessApp/obj/BusinessApp.csproj.nuget.dgspec.json index 3782403..cd55a90 100644 --- a/BusinessApp/obj/BusinessApp.csproj.nuget.dgspec.json +++ b/BusinessApp/obj/BusinessApp.csproj.nuget.dgspec.json @@ -1,20 +1,20 @@ { "format": 1, "restore": { - "/workspaces/ItWorksDoNotTouch/BusinessApp/BusinessApp.csproj": {} + "/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/BusinessApp.csproj": {} }, "projects": { - "/workspaces/ItWorksDoNotTouch/BusinessApp/BusinessApp.csproj": { + "/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/BusinessApp.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "/workspaces/ItWorksDoNotTouch/BusinessApp/BusinessApp.csproj", + "projectUniqueName": "/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/BusinessApp.csproj", "projectName": "BusinessApp", - "projectPath": "/workspaces/ItWorksDoNotTouch/BusinessApp/BusinessApp.csproj", - "packagesPath": "/home/codespace/.nuget/packages/", - "outputPath": "/workspaces/ItWorksDoNotTouch/BusinessApp/obj/", + "projectPath": "/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/BusinessApp.csproj", + "packagesPath": "/home/runner/.nuget/packages/", + "outputPath": "/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/obj/", "projectStyle": "PackageReference", "configFilePaths": [ - "/home/codespace/.nuget/NuGet/NuGet.Config" + "/home/runner/.nuget/NuGet/NuGet.Config" ], "originalTargetFrameworks": [ "net7.0" @@ -58,12 +58,26 @@ ], "assetTargetFallback": true, "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Ref", + "version": "[7.0.20, 7.0.20]" + }, + { + "name": "Microsoft.NETCore.App.Host.linux-x64", + "version": "[7.0.20, 7.0.20]" + }, + { + "name": "Microsoft.NETCore.App.Ref", + "version": "[7.0.20, 7.0.20]" + } + ], "frameworkReferences": { "Microsoft.NETCore.App": { "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "/usr/local/dotnet/7.0.306/sdk/7.0.306/RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "/usr/lib/dotnet/sdk/8.0.115/RuntimeIdentifierGraph.json" } } } diff --git a/BusinessApp/obj/BusinessApp.csproj.nuget.g.props b/BusinessApp/obj/BusinessApp.csproj.nuget.g.props index 532c9ef..cf7e7b6 100644 --- a/BusinessApp/obj/BusinessApp.csproj.nuget.g.props +++ b/BusinessApp/obj/BusinessApp.csproj.nuget.g.props @@ -4,12 +4,12 @@ True NuGet $(MSBuildThisFileDirectory)project.assets.json - /home/codespace/.nuget/packages/ - /home/codespace/.nuget/packages/ + /home/runner/.nuget/packages/ + /home/runner/.nuget/packages/ PackageReference - 6.6.0 + 6.8.1 - + \ No newline at end of file diff --git a/BusinessApp/obj/Debug/net7.0/BusinessApp.AssemblyInfo.cs b/BusinessApp/obj/Debug/net7.0/BusinessApp.AssemblyInfo.cs index 86d3d54..c654aed 100644 --- a/BusinessApp/obj/Debug/net7.0/BusinessApp.AssemblyInfo.cs +++ b/BusinessApp/obj/Debug/net7.0/BusinessApp.AssemblyInfo.cs @@ -13,7 +13,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("BusinessApp")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+f87e664cf248cae502ec594ace152989c41855ed")] [assembly: System.Reflection.AssemblyProductAttribute("BusinessApp")] [assembly: System.Reflection.AssemblyTitleAttribute("BusinessApp")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/BusinessApp/obj/Debug/net7.0/BusinessApp.AssemblyInfoInputs.cache b/BusinessApp/obj/Debug/net7.0/BusinessApp.AssemblyInfoInputs.cache index d7533ce..63ad1fb 100644 --- a/BusinessApp/obj/Debug/net7.0/BusinessApp.AssemblyInfoInputs.cache +++ b/BusinessApp/obj/Debug/net7.0/BusinessApp.AssemblyInfoInputs.cache @@ -1 +1 @@ -08b444d6e48b75c761b3fc97398b9105d3e7ad3c +09e27f985ac4ca361f5b78c33443d250c66a9d9b6a19ee0dffb32167bb855402 diff --git a/BusinessApp/obj/Debug/net7.0/BusinessApp.GeneratedMSBuildEditorConfig.editorconfig b/BusinessApp/obj/Debug/net7.0/BusinessApp.GeneratedMSBuildEditorConfig.editorconfig index d3aa319..74c581a 100644 --- a/BusinessApp/obj/Debug/net7.0/BusinessApp.GeneratedMSBuildEditorConfig.editorconfig +++ b/BusinessApp/obj/Debug/net7.0/BusinessApp.GeneratedMSBuildEditorConfig.editorconfig @@ -8,4 +8,6 @@ build_property.PlatformNeutralAssembly = build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = BusinessApp -build_property.ProjectDir = /workspaces/ItWorksDoNotTouch/BusinessApp/ +build_property.ProjectDir = /home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/BusinessApp/obj/Debug/net7.0/BusinessApp.assets.cache b/BusinessApp/obj/Debug/net7.0/BusinessApp.assets.cache index 80c4163..cda7205 100644 Binary files a/BusinessApp/obj/Debug/net7.0/BusinessApp.assets.cache and b/BusinessApp/obj/Debug/net7.0/BusinessApp.assets.cache differ diff --git a/BusinessApp/obj/Debug/net7.0/BusinessApp.csproj.AssemblyReference.cache b/BusinessApp/obj/Debug/net7.0/BusinessApp.csproj.AssemblyReference.cache index 4b3ae26..7f6e407 100644 Binary files a/BusinessApp/obj/Debug/net7.0/BusinessApp.csproj.AssemblyReference.cache and b/BusinessApp/obj/Debug/net7.0/BusinessApp.csproj.AssemblyReference.cache differ diff --git a/BusinessApp/obj/Debug/net7.0/BusinessApp.csproj.CoreCompileInputs.cache b/BusinessApp/obj/Debug/net7.0/BusinessApp.csproj.CoreCompileInputs.cache index 6220be4..5b53723 100644 --- a/BusinessApp/obj/Debug/net7.0/BusinessApp.csproj.CoreCompileInputs.cache +++ b/BusinessApp/obj/Debug/net7.0/BusinessApp.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -72f1d53ab4f3636dbd8562800a13ea5b5a5ce1fc +b7b499f64ff14c368378469c211ab1b42d27ef4e17ef91d17aa30d30b13b0ded diff --git a/BusinessApp/obj/Debug/net7.0/BusinessApp.csproj.FileListAbsolute.txt b/BusinessApp/obj/Debug/net7.0/BusinessApp.csproj.FileListAbsolute.txt index e3512a0..5d25eb7 100644 --- a/BusinessApp/obj/Debug/net7.0/BusinessApp.csproj.FileListAbsolute.txt +++ b/BusinessApp/obj/Debug/net7.0/BusinessApp.csproj.FileListAbsolute.txt @@ -19,3 +19,25 @@ /workspaces/ItWorksDoNotTouch/BusinessApp/bin/Debug/net7.0/Azure.Core.dll /workspaces/ItWorksDoNotTouch/BusinessApp/bin/Debug/net7.0/Microsoft.Bcl.AsyncInterfaces.dll /workspaces/ItWorksDoNotTouch/BusinessApp/bin/Debug/net7.0/System.Memory.Data.dll +/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/bin/Debug/net7.0/BusinessApp +/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/bin/Debug/net7.0/BusinessApp.deps.json +/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/bin/Debug/net7.0/BusinessApp.runtimeconfig.json +/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/bin/Debug/net7.0/BusinessApp.dll +/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/bin/Debug/net7.0/BusinessApp.pdb +/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/bin/Debug/net7.0/Azure.AI.OpenAI.dll +/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/bin/Debug/net7.0/Azure.Core.dll +/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/bin/Debug/net7.0/Microsoft.Bcl.AsyncInterfaces.dll +/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/bin/Debug/net7.0/Newtonsoft.Json.dll +/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/bin/Debug/net7.0/System.Memory.Data.dll +/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/obj/Debug/net7.0/BusinessApp.csproj.AssemblyReference.cache +/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/obj/Debug/net7.0/BusinessApp.GeneratedMSBuildEditorConfig.editorconfig +/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/obj/Debug/net7.0/BusinessApp.AssemblyInfoInputs.cache +/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/obj/Debug/net7.0/BusinessApp.AssemblyInfo.cs +/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/obj/Debug/net7.0/BusinessApp.csproj.CoreCompileInputs.cache +/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/obj/Debug/net7.0/BusinessApp.sourcelink.json +/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/obj/Debug/net7.0/BusinessApp.csproj.CopyComplete +/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/obj/Debug/net7.0/BusinessApp.dll +/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/obj/Debug/net7.0/refint/BusinessApp.dll +/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/obj/Debug/net7.0/BusinessApp.pdb +/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/obj/Debug/net7.0/BusinessApp.genruntimeconfig.cache +/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/obj/Debug/net7.0/ref/BusinessApp.dll diff --git a/BusinessApp/obj/Debug/net7.0/BusinessApp.dll b/BusinessApp/obj/Debug/net7.0/BusinessApp.dll index d715675..3119726 100644 Binary files a/BusinessApp/obj/Debug/net7.0/BusinessApp.dll and b/BusinessApp/obj/Debug/net7.0/BusinessApp.dll differ diff --git a/BusinessApp/obj/Debug/net7.0/BusinessApp.genruntimeconfig.cache b/BusinessApp/obj/Debug/net7.0/BusinessApp.genruntimeconfig.cache index 09df85b..c95c9e5 100644 --- a/BusinessApp/obj/Debug/net7.0/BusinessApp.genruntimeconfig.cache +++ b/BusinessApp/obj/Debug/net7.0/BusinessApp.genruntimeconfig.cache @@ -1 +1 @@ -0f2637de371ec776b9aa4a951b9b8212dad24786 +9504a0134bb9126f3d904ecc797339deb864724c7b9664ecf3344390594de218 diff --git a/BusinessApp/obj/Debug/net7.0/BusinessApp.pdb b/BusinessApp/obj/Debug/net7.0/BusinessApp.pdb index f132ecd..43b26c1 100644 Binary files a/BusinessApp/obj/Debug/net7.0/BusinessApp.pdb and b/BusinessApp/obj/Debug/net7.0/BusinessApp.pdb differ diff --git a/BusinessApp/obj/Debug/net7.0/apphost b/BusinessApp/obj/Debug/net7.0/apphost index 60b500f..a0beef1 100755 Binary files a/BusinessApp/obj/Debug/net7.0/apphost and b/BusinessApp/obj/Debug/net7.0/apphost differ diff --git a/BusinessApp/obj/Debug/net7.0/ref/BusinessApp.dll b/BusinessApp/obj/Debug/net7.0/ref/BusinessApp.dll index 908006d..cd9eeda 100644 Binary files a/BusinessApp/obj/Debug/net7.0/ref/BusinessApp.dll and b/BusinessApp/obj/Debug/net7.0/ref/BusinessApp.dll differ diff --git a/BusinessApp/obj/Debug/net7.0/refint/BusinessApp.dll b/BusinessApp/obj/Debug/net7.0/refint/BusinessApp.dll index 908006d..cd9eeda 100644 Binary files a/BusinessApp/obj/Debug/net7.0/refint/BusinessApp.dll and b/BusinessApp/obj/Debug/net7.0/refint/BusinessApp.dll differ diff --git a/BusinessApp/obj/project.assets.json b/BusinessApp/obj/project.assets.json index e764ddf..fb5bfc2 100644 --- a/BusinessApp/obj/project.assets.json +++ b/BusinessApp/obj/project.assets.json @@ -388,19 +388,19 @@ ] }, "packageFolders": { - "/home/codespace/.nuget/packages/": {} + "/home/runner/.nuget/packages/": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "/workspaces/ItWorksDoNotTouch/BusinessApp/BusinessApp.csproj", + "projectUniqueName": "/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/BusinessApp.csproj", "projectName": "BusinessApp", - "projectPath": "/workspaces/ItWorksDoNotTouch/BusinessApp/BusinessApp.csproj", - "packagesPath": "/home/codespace/.nuget/packages/", - "outputPath": "/workspaces/ItWorksDoNotTouch/BusinessApp/obj/", + "projectPath": "/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/BusinessApp.csproj", + "packagesPath": "/home/runner/.nuget/packages/", + "outputPath": "/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/obj/", "projectStyle": "PackageReference", "configFilePaths": [ - "/home/codespace/.nuget/NuGet/NuGet.Config" + "/home/runner/.nuget/NuGet/NuGet.Config" ], "originalTargetFrameworks": [ "net7.0" @@ -444,12 +444,26 @@ ], "assetTargetFallback": true, "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Ref", + "version": "[7.0.20, 7.0.20]" + }, + { + "name": "Microsoft.NETCore.App.Host.linux-x64", + "version": "[7.0.20, 7.0.20]" + }, + { + "name": "Microsoft.NETCore.App.Ref", + "version": "[7.0.20, 7.0.20]" + } + ], "frameworkReferences": { "Microsoft.NETCore.App": { "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "/usr/local/dotnet/7.0.306/sdk/7.0.306/RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "/usr/lib/dotnet/sdk/8.0.115/RuntimeIdentifierGraph.json" } } } diff --git a/BusinessApp/obj/project.nuget.cache b/BusinessApp/obj/project.nuget.cache index 72d2e6c..4d33a0d 100644 --- a/BusinessApp/obj/project.nuget.cache +++ b/BusinessApp/obj/project.nuget.cache @@ -1,20 +1,23 @@ { "version": 2, - "dgSpecHash": "CXiGdRwuKqH4IIDLFZJ2SiXDKXborUU3zrYfjrsMLjwGVxxmWpgtDhViTOuqj/PFQZQFTiQCRV36tJ80LE4QyQ==", + "dgSpecHash": "iSp8XgrMcn37lB7g5ZVJs5GVNOClZGzv+xG95tSCIPGiao+9zIGren996GIXIHBvTv2LI1qSVh/QcRQyqaNFrg==", "success": true, - "projectFilePath": "/workspaces/ItWorksDoNotTouch/BusinessApp/BusinessApp.csproj", + "projectFilePath": "/home/runner/work/ItWorksDoNotTouch/ItWorksDoNotTouch/BusinessApp/BusinessApp.csproj", "expectedPackageFiles": [ - "/home/codespace/.nuget/packages/azure.ai.openai/1.0.0-beta.9/azure.ai.openai.1.0.0-beta.9.nupkg.sha512", - "/home/codespace/.nuget/packages/azure.core/1.35.0/azure.core.1.35.0.nupkg.sha512", - "/home/codespace/.nuget/packages/microsoft.bcl.asyncinterfaces/1.1.1/microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512", - "/home/codespace/.nuget/packages/newtonsoft.json/13.0.3/newtonsoft.json.13.0.3.nupkg.sha512", - "/home/codespace/.nuget/packages/system.diagnostics.diagnosticsource/6.0.1/system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512", - "/home/codespace/.nuget/packages/system.memory.data/1.0.2/system.memory.data.1.0.2.nupkg.sha512", - "/home/codespace/.nuget/packages/system.numerics.vectors/4.5.0/system.numerics.vectors.4.5.0.nupkg.sha512", - "/home/codespace/.nuget/packages/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", - "/home/codespace/.nuget/packages/system.text.encodings.web/4.7.2/system.text.encodings.web.4.7.2.nupkg.sha512", - "/home/codespace/.nuget/packages/system.text.json/4.7.2/system.text.json.4.7.2.nupkg.sha512", - "/home/codespace/.nuget/packages/system.threading.tasks.extensions/4.5.4/system.threading.tasks.extensions.4.5.4.nupkg.sha512" + "/home/runner/.nuget/packages/azure.ai.openai/1.0.0-beta.9/azure.ai.openai.1.0.0-beta.9.nupkg.sha512", + "/home/runner/.nuget/packages/azure.core/1.35.0/azure.core.1.35.0.nupkg.sha512", + "/home/runner/.nuget/packages/microsoft.bcl.asyncinterfaces/1.1.1/microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512", + "/home/runner/.nuget/packages/newtonsoft.json/13.0.3/newtonsoft.json.13.0.3.nupkg.sha512", + "/home/runner/.nuget/packages/system.diagnostics.diagnosticsource/6.0.1/system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512", + "/home/runner/.nuget/packages/system.memory.data/1.0.2/system.memory.data.1.0.2.nupkg.sha512", + "/home/runner/.nuget/packages/system.numerics.vectors/4.5.0/system.numerics.vectors.4.5.0.nupkg.sha512", + "/home/runner/.nuget/packages/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "/home/runner/.nuget/packages/system.text.encodings.web/4.7.2/system.text.encodings.web.4.7.2.nupkg.sha512", + "/home/runner/.nuget/packages/system.text.json/4.7.2/system.text.json.4.7.2.nupkg.sha512", + "/home/runner/.nuget/packages/system.threading.tasks.extensions/4.5.4/system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "/home/runner/.nuget/packages/microsoft.netcore.app.ref/7.0.20/microsoft.netcore.app.ref.7.0.20.nupkg.sha512", + "/home/runner/.nuget/packages/microsoft.aspnetcore.app.ref/7.0.20/microsoft.aspnetcore.app.ref.7.0.20.nupkg.sha512", + "/home/runner/.nuget/packages/microsoft.netcore.app.host.linux-x64/7.0.20/microsoft.netcore.app.host.linux-x64.7.0.20.nupkg.sha512" ], "logs": [] } \ No newline at end of file