├── .idea └── .idea.PrettyConsole │ └── .idea │ ├── .gitignore │ ├── encodings.xml │ ├── indexLayout.xml │ └── vcs.xml ├── .vs └── PrettyConsole │ └── v17 │ └── .suo ├── PrettyConsole.sln └── PrettyConsole ├── Nested.cs ├── PrettyConsole.csproj └── obj ├── Debug ├── net6.0 │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ ├── PrettyConsole.AssemblyInfo.cs │ ├── PrettyConsole.AssemblyInfoInputs.cache │ ├── PrettyConsole.GeneratedMSBuildEditorConfig.editorconfig │ ├── PrettyConsole.GlobalUsings.g.cs │ └── PrettyConsole.assets.cache └── net8.0 │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ ├── PrettyConsole.AssemblyInfo.cs │ ├── PrettyConsole.AssemblyInfoInputs.cache │ ├── PrettyConsole.GeneratedMSBuildEditorConfig.editorconfig │ ├── PrettyConsole.GlobalUsings.g.cs │ └── PrettyConsole.assets.cache ├── PrettyConsole.csproj.nuget.dgspec.json ├── PrettyConsole.csproj.nuget.g.props ├── PrettyConsole.csproj.nuget.g.targets ├── project.assets.json ├── project.nuget.cache ├── project.packagespec.json ├── rider.project.model.nuget.info └── rider.project.restore.info /.idea/.idea.PrettyConsole/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-A-Felegari/PrettyConsole/HEAD/.idea/.idea.PrettyConsole/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.PrettyConsole/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-A-Felegari/PrettyConsole/HEAD/.idea/.idea.PrettyConsole/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/.idea.PrettyConsole/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-A-Felegari/PrettyConsole/HEAD/.idea/.idea.PrettyConsole/.idea/indexLayout.xml -------------------------------------------------------------------------------- /.idea/.idea.PrettyConsole/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-A-Felegari/PrettyConsole/HEAD/.idea/.idea.PrettyConsole/.idea/vcs.xml -------------------------------------------------------------------------------- /.vs/PrettyConsole/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-A-Felegari/PrettyConsole/HEAD/.vs/PrettyConsole/v17/.suo -------------------------------------------------------------------------------- /PrettyConsole.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-A-Felegari/PrettyConsole/HEAD/PrettyConsole.sln -------------------------------------------------------------------------------- /PrettyConsole/Nested.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-A-Felegari/PrettyConsole/HEAD/PrettyConsole/Nested.cs -------------------------------------------------------------------------------- /PrettyConsole/PrettyConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-A-Felegari/PrettyConsole/HEAD/PrettyConsole/PrettyConsole.csproj -------------------------------------------------------------------------------- /PrettyConsole/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-A-Felegari/PrettyConsole/HEAD/PrettyConsole/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /PrettyConsole/obj/Debug/net6.0/PrettyConsole.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-A-Felegari/PrettyConsole/HEAD/PrettyConsole/obj/Debug/net6.0/PrettyConsole.AssemblyInfo.cs -------------------------------------------------------------------------------- /PrettyConsole/obj/Debug/net6.0/PrettyConsole.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-A-Felegari/PrettyConsole/HEAD/PrettyConsole/obj/Debug/net6.0/PrettyConsole.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /PrettyConsole/obj/Debug/net6.0/PrettyConsole.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-A-Felegari/PrettyConsole/HEAD/PrettyConsole/obj/Debug/net6.0/PrettyConsole.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /PrettyConsole/obj/Debug/net6.0/PrettyConsole.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-A-Felegari/PrettyConsole/HEAD/PrettyConsole/obj/Debug/net6.0/PrettyConsole.GlobalUsings.g.cs -------------------------------------------------------------------------------- /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/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-A-Felegari/PrettyConsole/HEAD/PrettyConsole/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /PrettyConsole/obj/Debug/net8.0/PrettyConsole.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-A-Felegari/PrettyConsole/HEAD/PrettyConsole/obj/Debug/net8.0/PrettyConsole.AssemblyInfo.cs -------------------------------------------------------------------------------- /PrettyConsole/obj/Debug/net8.0/PrettyConsole.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-A-Felegari/PrettyConsole/HEAD/PrettyConsole/obj/Debug/net8.0/PrettyConsole.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /PrettyConsole/obj/Debug/net8.0/PrettyConsole.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-A-Felegari/PrettyConsole/HEAD/PrettyConsole/obj/Debug/net8.0/PrettyConsole.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /PrettyConsole/obj/Debug/net8.0/PrettyConsole.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-A-Felegari/PrettyConsole/HEAD/PrettyConsole/obj/Debug/net8.0/PrettyConsole.GlobalUsings.g.cs -------------------------------------------------------------------------------- /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.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-A-Felegari/PrettyConsole/HEAD/PrettyConsole/obj/PrettyConsole.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /PrettyConsole/obj/PrettyConsole.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-A-Felegari/PrettyConsole/HEAD/PrettyConsole/obj/PrettyConsole.csproj.nuget.g.props -------------------------------------------------------------------------------- /PrettyConsole/obj/PrettyConsole.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-A-Felegari/PrettyConsole/HEAD/PrettyConsole/obj/PrettyConsole.csproj.nuget.g.targets -------------------------------------------------------------------------------- /PrettyConsole/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-A-Felegari/PrettyConsole/HEAD/PrettyConsole/obj/project.assets.json -------------------------------------------------------------------------------- /PrettyConsole/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-A-Felegari/PrettyConsole/HEAD/PrettyConsole/obj/project.nuget.cache -------------------------------------------------------------------------------- /PrettyConsole/obj/project.packagespec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-A-Felegari/PrettyConsole/HEAD/PrettyConsole/obj/project.packagespec.json -------------------------------------------------------------------------------- /PrettyConsole/obj/rider.project.model.nuget.info: -------------------------------------------------------------------------------- 1 | 17276884737621490 -------------------------------------------------------------------------------- /PrettyConsole/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 17276886596007308 --------------------------------------------------------------------------------