├── PrettyConsole ├── obj │ ├── rider.project.restore.info │ ├── rider.project.model.nuget.info │ ├── Debug │ │ ├── net6.0 │ │ │ ├── PrettyConsole.AssemblyInfoInputs.cache │ │ │ ├── PrettyConsole.assets.cache │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── PrettyConsole.GlobalUsings.g.cs │ │ │ ├── PrettyConsole.GeneratedMSBuildEditorConfig.editorconfig │ │ │ └── PrettyConsole.AssemblyInfo.cs │ │ └── net8.0 │ │ │ ├── PrettyConsole.AssemblyInfoInputs.cache │ │ │ ├── PrettyConsole.assets.cache │ │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ │ ├── PrettyConsole.GlobalUsings.g.cs │ │ │ ├── PrettyConsole.GeneratedMSBuildEditorConfig.editorconfig │ │ │ └── PrettyConsole.AssemblyInfo.cs │ ├── PrettyConsole.csproj.nuget.g.targets │ ├── project.nuget.cache │ ├── project.packagespec.json │ ├── PrettyConsole.csproj.nuget.g.props │ ├── project.assets.json │ └── PrettyConsole.csproj.nuget.dgspec.json ├── PrettyConsole.csproj └── Nested.cs ├── .vs └── PrettyConsole │ └── v17 │ └── .suo ├── .idea └── .idea.PrettyConsole │ └── .idea │ ├── encodings.xml │ ├── vcs.xml │ ├── indexLayout.xml │ └── .gitignore └── PrettyConsole.sln /PrettyConsole/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 17276886596007308 -------------------------------------------------------------------------------- /PrettyConsole/obj/rider.project.model.nuget.info: -------------------------------------------------------------------------------- 1 | 17276884737621490 -------------------------------------------------------------------------------- /.vs/PrettyConsole/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-A-Felegari/PrettyConsole/HEAD/.vs/PrettyConsole/v17/.suo -------------------------------------------------------------------------------- /PrettyConsole/obj/Debug/net6.0/PrettyConsole.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | bdb44965ebf2a6c3f3379dc5e1c9f417274fbc1022bda77a26873a2023c42b94 2 | -------------------------------------------------------------------------------- /PrettyConsole/obj/Debug/net8.0/PrettyConsole.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | bdb44965ebf2a6c3f3379dc5e1c9f417274fbc1022bda77a26873a2023c42b94 2 | -------------------------------------------------------------------------------- /PrettyConsole/obj/Debug/net6.0/PrettyConsole.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-A-Felegari/PrettyConsole/HEAD/PrettyConsole/obj/Debug/net6.0/PrettyConsole.assets.cache -------------------------------------------------------------------------------- /PrettyConsole/obj/Debug/net8.0/PrettyConsole.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-A-Felegari/PrettyConsole/HEAD/PrettyConsole/obj/Debug/net8.0/PrettyConsole.assets.cache -------------------------------------------------------------------------------- /PrettyConsole/obj/PrettyConsole.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.idea/.idea.PrettyConsole/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/.idea.PrettyConsole/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/.idea.PrettyConsole/.idea/indexLayout.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /PrettyConsole/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "1xtEzTE5ZOQ=", 4 | "success": true, 5 | "projectFilePath": "/home/mohammad/projects/PrettyConsole/PrettyConsole/PrettyConsole.csproj", 6 | "expectedPackageFiles": [], 7 | "logs": [] 8 | } -------------------------------------------------------------------------------- /PrettyConsole/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /PrettyConsole/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /PrettyConsole/PrettyConsole.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net8.0 5 | enable 6 | enable 7 | default 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /PrettyConsole/obj/Debug/net6.0/PrettyConsole.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::System; 3 | global using global::System.Collections.Generic; 4 | global using global::System.IO; 5 | global using global::System.Linq; 6 | global using global::System.Net.Http; 7 | global using global::System.Threading; 8 | global using global::System.Threading.Tasks; 9 | -------------------------------------------------------------------------------- /PrettyConsole/obj/Debug/net8.0/PrettyConsole.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::System; 3 | global using global::System.Collections.Generic; 4 | global using global::System.IO; 5 | global using global::System.Linq; 6 | global using global::System.Net.Http; 7 | global using global::System.Threading; 8 | global using global::System.Threading.Tasks; 9 | -------------------------------------------------------------------------------- /.idea/.idea.PrettyConsole/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Rider ignored files 5 | /contentModel.xml 6 | /.idea.PrettyConsole.iml 7 | /modules.xml 8 | /projectSettingsUpdater.xml 9 | # Editor-based HTTP Client requests 10 | /httpRequests/ 11 | # Datasource local storage ignored files 12 | /dataSources/ 13 | /dataSources.local.xml 14 | -------------------------------------------------------------------------------- /PrettyConsole/obj/Debug/net6.0/PrettyConsole.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net6.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = 5 | build_property.ProjectTypeGuids = 6 | build_property.InvariantGlobalization = 7 | build_property.PlatformNeutralAssembly = 8 | build_property.EnforceExtendedAnalyzerRules = 9 | build_property._SupportedPlatformList = Linux,macOS,Windows 10 | build_property.RootNamespace = PrettyConsole 11 | build_property.ProjectDir = /home/mohammad/projects/PrettyConsole/PrettyConsole/ 12 | build_property.EnableComHosting = 13 | build_property.EnableGeneratedComInterfaceComImportInterop = 14 | -------------------------------------------------------------------------------- /PrettyConsole/obj/Debug/net8.0/PrettyConsole.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net8.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = 5 | build_property.ProjectTypeGuids = 6 | build_property.InvariantGlobalization = 7 | build_property.PlatformNeutralAssembly = 8 | build_property.EnforceExtendedAnalyzerRules = 9 | build_property._SupportedPlatformList = Linux,macOS,Windows 10 | build_property.RootNamespace = PrettyConsole 11 | build_property.ProjectDir = /home/mohammad/projects/PrettyConsole/PrettyConsole/ 12 | build_property.EnableComHosting = 13 | build_property.EnableGeneratedComInterfaceComImportInterop = 14 | -------------------------------------------------------------------------------- /PrettyConsole/Nested.cs: -------------------------------------------------------------------------------- 1 | namespace PrettyConsole; 2 | 3 | public class Nested 4 | { 5 | public static string SimpleNested(short order, string text) 6 | { 7 | string output = String.Empty; 8 | int distance = (order - 1) * 5; 9 | for (int i = 0; i < distance; i++) 10 | { 11 | output += " "; 12 | } 13 | output += $"■ {text}"; 14 | return output; 15 | } 16 | public static string DashedNested1(short order, string text) 17 | { 18 | string output = String.Empty; 19 | int distance = (order - 2) * 5; 20 | for (int i = 0; i < distance; i++) 21 | { 22 | output += " "; 23 | } 24 | if (order > 1) 25 | { 26 | output += "█===="; 27 | } 28 | output += $"■ {text}"; 29 | return output; 30 | } 31 | } -------------------------------------------------------------------------------- /PrettyConsole/obj/project.packagespec.json: -------------------------------------------------------------------------------- 1 | "restore":{"projectUniqueName":"/home/mohammad/projects/PrettyConsole/PrettyConsole/PrettyConsole.csproj","projectName":"PrettyConsole","projectPath":"/home/mohammad/projects/PrettyConsole/PrettyConsole/PrettyConsole.csproj","outputPath":"/home/mohammad/projects/PrettyConsole/PrettyConsole/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net8.0":{"targetAlias":"net8.0","imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/lib/dotnet/sdk/8.0.108/PortableRuntimeIdentifierGraph.json"}} -------------------------------------------------------------------------------- /PrettyConsole/obj/Debug/net6.0/PrettyConsole.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | using System; 11 | using System.Reflection; 12 | 13 | [assembly: System.Reflection.AssemblyCompanyAttribute("PrettyConsole")] 14 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 15 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 16 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+1d5c6a134faf919691d49708d86b80e99003afab")] 17 | [assembly: System.Reflection.AssemblyProductAttribute("PrettyConsole")] 18 | [assembly: System.Reflection.AssemblyTitleAttribute("PrettyConsole")] 19 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 20 | 21 | // Generated by the MSBuild WriteCodeFragment class. 22 | 23 | -------------------------------------------------------------------------------- /PrettyConsole/obj/Debug/net8.0/PrettyConsole.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | using System; 11 | using System.Reflection; 12 | 13 | [assembly: System.Reflection.AssemblyCompanyAttribute("PrettyConsole")] 14 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 15 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 16 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+1d5c6a134faf919691d49708d86b80e99003afab")] 17 | [assembly: System.Reflection.AssemblyProductAttribute("PrettyConsole")] 18 | [assembly: System.Reflection.AssemblyTitleAttribute("PrettyConsole")] 19 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 20 | 21 | // Generated by the MSBuild WriteCodeFragment class. 22 | 23 | -------------------------------------------------------------------------------- /PrettyConsole/obj/PrettyConsole.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | /home/mohammad/.nuget/packages/ 8 | /home/mohammad/.nuget/packages/ 9 | PackageReference 10 | 6.10.1 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /PrettyConsole.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.2.32602.215 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PrettyConsole", "PrettyConsole\PrettyConsole.csproj", "{E8F084EA-E76C-4ECB-87E0-46B5F11AB067}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {E8F084EA-E76C-4ECB-87E0-46B5F11AB067}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {E8F084EA-E76C-4ECB-87E0-46B5F11AB067}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {E8F084EA-E76C-4ECB-87E0-46B5F11AB067}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {E8F084EA-E76C-4ECB-87E0-46B5F11AB067}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {87E9DFB5-8D41-444C-8D66-5BB047ACEB05} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /PrettyConsole/obj/project.assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "targets": { 4 | "net8.0": {} 5 | }, 6 | "libraries": {}, 7 | "projectFileDependencyGroups": { 8 | "net8.0": [] 9 | }, 10 | "packageFolders": { 11 | "/home/mohammad/.nuget/packages/": {} 12 | }, 13 | "project": { 14 | "version": "1.0.0", 15 | "restore": { 16 | "projectUniqueName": "/home/mohammad/projects/PrettyConsole/PrettyConsole/PrettyConsole.csproj", 17 | "projectName": "PrettyConsole", 18 | "projectPath": "/home/mohammad/projects/PrettyConsole/PrettyConsole/PrettyConsole.csproj", 19 | "packagesPath": "/home/mohammad/.nuget/packages/", 20 | "outputPath": "/home/mohammad/projects/PrettyConsole/PrettyConsole/obj/", 21 | "projectStyle": "PackageReference", 22 | "configFilePaths": [ 23 | "/home/mohammad/.nuget/NuGet/NuGet.Config" 24 | ], 25 | "originalTargetFrameworks": [ 26 | "net8.0" 27 | ], 28 | "sources": { 29 | "https://api.nuget.org/v3/index.json": {} 30 | }, 31 | "frameworks": { 32 | "net8.0": { 33 | "targetAlias": "net8.0", 34 | "projectReferences": {} 35 | } 36 | }, 37 | "warningProperties": { 38 | "warnAsError": [ 39 | "NU1605" 40 | ] 41 | } 42 | }, 43 | "frameworks": { 44 | "net8.0": { 45 | "targetAlias": "net8.0", 46 | "imports": [ 47 | "net461", 48 | "net462", 49 | "net47", 50 | "net471", 51 | "net472", 52 | "net48", 53 | "net481" 54 | ], 55 | "assetTargetFallback": true, 56 | "warn": true, 57 | "frameworkReferences": { 58 | "Microsoft.NETCore.App": { 59 | "privateAssets": "all" 60 | } 61 | }, 62 | "runtimeIdentifierGraphPath": "/usr/lib/dotnet/sdk/8.0.108/PortableRuntimeIdentifierGraph.json" 63 | } 64 | } 65 | } 66 | } -------------------------------------------------------------------------------- /PrettyConsole/obj/PrettyConsole.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "/home/mohammad/projects/PrettyConsole/PrettyConsole/PrettyConsole.csproj": {} 5 | }, 6 | "projects": { 7 | "/home/mohammad/projects/PrettyConsole/PrettyConsole/PrettyConsole.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "/home/mohammad/projects/PrettyConsole/PrettyConsole/PrettyConsole.csproj", 11 | "projectName": "PrettyConsole", 12 | "projectPath": "/home/mohammad/projects/PrettyConsole/PrettyConsole/PrettyConsole.csproj", 13 | "packagesPath": "/home/mohammad/.nuget/packages/", 14 | "outputPath": "/home/mohammad/projects/PrettyConsole/PrettyConsole/obj/", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "/home/mohammad/.nuget/NuGet/NuGet.Config" 18 | ], 19 | "originalTargetFrameworks": [ 20 | "net8.0" 21 | ], 22 | "sources": { 23 | "https://api.nuget.org/v3/index.json": {} 24 | }, 25 | "frameworks": { 26 | "net8.0": { 27 | "targetAlias": "net8.0", 28 | "projectReferences": {} 29 | } 30 | }, 31 | "warningProperties": { 32 | "warnAsError": [ 33 | "NU1605" 34 | ] 35 | } 36 | }, 37 | "frameworks": { 38 | "net8.0": { 39 | "targetAlias": "net8.0", 40 | "imports": [ 41 | "net461", 42 | "net462", 43 | "net47", 44 | "net471", 45 | "net472", 46 | "net48", 47 | "net481" 48 | ], 49 | "assetTargetFallback": true, 50 | "warn": true, 51 | "frameworkReferences": { 52 | "Microsoft.NETCore.App": { 53 | "privateAssets": "all" 54 | } 55 | }, 56 | "runtimeIdentifierGraphPath": "/usr/lib/dotnet/sdk/8.0.108/PortableRuntimeIdentifierGraph.json" 57 | } 58 | } 59 | } 60 | } 61 | } --------------------------------------------------------------------------------