├── CalculadoradeMediadeNotas ├── CalculadoraDeMedia.sln └── Media │ ├── Media.csproj │ ├── Program.cs │ ├── bin │ └── Debug │ │ └── net8.0 │ │ ├── Media │ │ ├── Media.deps.json │ │ ├── Media.dll │ │ ├── Media.pdb │ │ └── Media.runtimeconfig.json │ └── obj │ ├── Debug │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── Media.AssemblyInfo.cs │ │ ├── Media.AssemblyInfoInputs.cache │ │ ├── Media.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Media.GlobalUsings.g.cs │ │ ├── Media.assets.cache │ │ ├── Media.csproj.CoreCompileInputs.cache │ │ ├── Media.csproj.FileListAbsolute.txt │ │ ├── Media.dll │ │ ├── Media.genruntimeconfig.cache │ │ ├── Media.pdb │ │ ├── Media.sourcelink.json │ │ ├── apphost │ │ ├── ref │ │ └── Media.dll │ │ └── refint │ │ └── Media.dll │ ├── Media.csproj.nuget.dgspec.json │ ├── Media.csproj.nuget.g.props │ ├── Media.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── GerenciadorDeContatosSimples ├── Gerenciador │ ├── Gerenciador.csproj │ ├── Program.cs │ ├── bin │ │ └── Debug │ │ │ └── net6.0 │ │ │ ├── Gerenciador │ │ │ ├── Gerenciador.deps.json │ │ │ ├── Gerenciador.dll │ │ │ ├── Gerenciador.pdb │ │ │ └── Gerenciador.runtimeconfig.json │ └── obj │ │ ├── Debug │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── Gerenciador.AssemblyInfo.cs │ │ │ ├── Gerenciador.AssemblyInfoInputs.cache │ │ │ ├── Gerenciador.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Gerenciador.GlobalUsings.g.cs │ │ │ ├── Gerenciador.assets.cache │ │ │ ├── Gerenciador.csproj.CoreCompileInputs.cache │ │ │ ├── Gerenciador.csproj.FileListAbsolute.txt │ │ │ ├── Gerenciador.dll │ │ │ ├── Gerenciador.genruntimeconfig.cache │ │ │ ├── Gerenciador.pdb │ │ │ ├── Gerenciador.sourcelink.json │ │ │ ├── apphost │ │ │ ├── ref │ │ │ └── Gerenciador.dll │ │ │ └── refint │ │ │ └── Gerenciador.dll │ │ ├── Gerenciador.csproj.nuget.dgspec.json │ │ ├── Gerenciador.csproj.nuget.g.props │ │ ├── Gerenciador.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache └── GerenciadorDeContatos.sln ├── README.md ├── SequentialStructure ├── Sequetial │ ├── Program.cs │ ├── Sequetial.csproj │ ├── Sequetial.sln │ ├── bin │ │ └── Debug │ │ │ └── net8.0 │ │ │ ├── Sequetial │ │ │ ├── Sequetial.deps.json │ │ │ ├── Sequetial.dll │ │ │ ├── Sequetial.pdb │ │ │ └── Sequetial.runtimeconfig.json │ └── obj │ │ ├── Debug │ │ └── net8.0 │ │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ │ ├── Sequetial.AssemblyInfo.cs │ │ │ ├── Sequetial.AssemblyInfoInputs.cache │ │ │ ├── Sequetial.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Sequetial.GlobalUsings.g.cs │ │ │ ├── Sequetial.assets.cache │ │ │ ├── Sequetial.csproj.CoreCompileInputs.cache │ │ │ ├── Sequetial.csproj.FileListAbsolute.txt │ │ │ ├── Sequetial.dll │ │ │ ├── Sequetial.genruntimeconfig.cache │ │ │ ├── Sequetial.pdb │ │ │ ├── Sequetial.sourcelink.json │ │ │ ├── apphost │ │ │ ├── ref │ │ │ └── Sequetial.dll │ │ │ └── refint │ │ │ └── Sequetial.dll │ │ ├── Sequetial.csproj.nuget.dgspec.json │ │ ├── Sequetial.csproj.nuget.g.props │ │ ├── Sequetial.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache └── SequetialStructure.sln ├── SistemadeTarefas ├── SistemadeTarefas.sln └── Tarefas │ ├── Program.cs │ ├── Tarefas.csproj │ ├── Tarefas.sln │ ├── bin │ └── Debug │ │ └── net8.0 │ │ ├── Tarefas │ │ ├── Tarefas.deps.json │ │ ├── Tarefas.dll │ │ ├── Tarefas.pdb │ │ └── Tarefas.runtimeconfig.json │ └── obj │ ├── Debug │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── Tarefas.AssemblyInfo.cs │ │ ├── Tarefas.AssemblyInfoInputs.cache │ │ ├── Tarefas.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Tarefas.GlobalUsings.g.cs │ │ ├── Tarefas.assets.cache │ │ ├── Tarefas.csproj.CoreCompileInputs.cache │ │ ├── Tarefas.csproj.FileListAbsolute.txt │ │ ├── Tarefas.dll │ │ ├── Tarefas.genruntimeconfig.cache │ │ ├── Tarefas.pdb │ │ ├── Tarefas.sourcelink.json │ │ ├── apphost │ │ ├── ref │ │ └── Tarefas.dll │ │ └── refint │ │ └── Tarefas.dll │ ├── Tarefas.csproj.nuget.dgspec.json │ ├── Tarefas.csproj.nuget.g.props │ ├── Tarefas.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── StudentPerformanceCalculator ├── StudentPerformance │ ├── Program.cs │ ├── StudentPerformance.csproj │ ├── bin │ │ └── Debug │ │ │ └── net8.0 │ │ │ ├── StudentPerformance │ │ │ ├── StudentPerformance.deps.json │ │ │ ├── StudentPerformance.dll │ │ │ ├── StudentPerformance.pdb │ │ │ └── StudentPerformance.runtimeconfig.json │ └── obj │ │ ├── Debug │ │ └── net8.0 │ │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ │ ├── StudentPerformance.AssemblyInfo.cs │ │ │ ├── StudentPerformance.AssemblyInfoInputs.cache │ │ │ ├── StudentPerformance.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── StudentPerformance.GlobalUsings.g.cs │ │ │ ├── StudentPerformance.assets.cache │ │ │ ├── StudentPerformance.csproj.CoreCompileInputs.cache │ │ │ ├── StudentPerformance.csproj.FileListAbsolute.txt │ │ │ ├── StudentPerformance.dll │ │ │ ├── StudentPerformance.genruntimeconfig.cache │ │ │ ├── StudentPerformance.pdb │ │ │ ├── StudentPerformance.sourcelink.json │ │ │ ├── apphost │ │ │ ├── ref │ │ │ └── StudentPerformance.dll │ │ │ └── refint │ │ │ └── StudentPerformance.dll │ │ ├── StudentPerformance.csproj.nuget.dgspec.json │ │ ├── StudentPerformance.csproj.nuget.g.props │ │ ├── StudentPerformance.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache └── StudentPerformanceCalculator.sln └── librarySystemManagement └── LibrarySystem ├── LibrarySystem.csproj ├── Program.cs └── obj ├── LibrarySystem.csproj.nuget.dgspec.json ├── LibrarySystem.csproj.nuget.g.props ├── LibrarySystem.csproj.nuget.g.targets ├── project.assets.json └── project.nuget.cache /CalculadoradeMediadeNotas/CalculadoraDeMedia.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31903.59 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Media", "Media\Media.csproj", "{FAA1141C-27FE-4F07-AA52-DF68C6AE901B}" 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(SolutionProperties) = preSolution 14 | HideSolutionNode = FALSE 15 | EndGlobalSection 16 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 17 | {FAA1141C-27FE-4F07-AA52-DF68C6AE901B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 18 | {FAA1141C-27FE-4F07-AA52-DF68C6AE901B}.Debug|Any CPU.Build.0 = Debug|Any CPU 19 | {FAA1141C-27FE-4F07-AA52-DF68C6AE901B}.Release|Any CPU.ActiveCfg = Release|Any CPU 20 | {FAA1141C-27FE-4F07-AA52-DF68C6AE901B}.Release|Any CPU.Build.0 = Release|Any CPU 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /CalculadoradeMediadeNotas/Media/Media.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /CalculadoradeMediadeNotas/Media/Program.cs: -------------------------------------------------------------------------------- 1 | Console.WriteLine("Digite a quantidade de notas"); 2 | int tamanho = Convert.ToInt32(Console.ReadLine()); 3 | double[] notas = new double[tamanho]; 4 | double soma = 0; 5 | for (int i = 0; i < tamanho; i++) 6 | { 7 | Console.WriteLine("Digite a nota: "); 8 | notas[i] = Convert.ToDouble(Console.ReadLine()); 9 | } 10 | 11 | foreach(double i in notas){ 12 | soma += i; 13 | } 14 | double media = soma / tamanho; 15 | Console.WriteLine("\nSua média: " + media); 16 | -------------------------------------------------------------------------------- /CalculadoradeMediadeNotas/Media/bin/Debug/net8.0/Media: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/CalculadoradeMediadeNotas/Media/bin/Debug/net8.0/Media -------------------------------------------------------------------------------- /CalculadoradeMediadeNotas/Media/bin/Debug/net8.0/Media.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v8.0", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v8.0": { 9 | "Media/1.0.0": { 10 | "runtime": { 11 | "Media.dll": {} 12 | } 13 | } 14 | } 15 | }, 16 | "libraries": { 17 | "Media/1.0.0": { 18 | "type": "project", 19 | "serviceable": false, 20 | "sha512": "" 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /CalculadoradeMediadeNotas/Media/bin/Debug/net8.0/Media.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/CalculadoradeMediadeNotas/Media/bin/Debug/net8.0/Media.dll -------------------------------------------------------------------------------- /CalculadoradeMediadeNotas/Media/bin/Debug/net8.0/Media.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/CalculadoradeMediadeNotas/Media/bin/Debug/net8.0/Media.pdb -------------------------------------------------------------------------------- /CalculadoradeMediadeNotas/Media/bin/Debug/net8.0/Media.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "8.0.0" 7 | }, 8 | "configProperties": { 9 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /CalculadoradeMediadeNotas/Media/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 | -------------------------------------------------------------------------------- /CalculadoradeMediadeNotas/Media/obj/Debug/net8.0/Media.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("Media")] 14 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 15 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 16 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+97d6f1f208ee5d7f82afe00a3c80cb621c9f9b65")] 17 | [assembly: System.Reflection.AssemblyProductAttribute("Media")] 18 | [assembly: System.Reflection.AssemblyTitleAttribute("Media")] 19 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 20 | 21 | // Generated by the MSBuild WriteCodeFragment class. 22 | 23 | -------------------------------------------------------------------------------- /CalculadoradeMediadeNotas/Media/obj/Debug/net8.0/Media.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | ab822b944e7dc5c5468733b0bdd998d5f3cc40413e236b956dd92990d7114cd2 2 | -------------------------------------------------------------------------------- /CalculadoradeMediadeNotas/Media/obj/Debug/net8.0/Media.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 = Media 11 | build_property.ProjectDir = /home/tonho/tonho/projects/conversa-fiada/CalculadoradeMediadeNotas/Media/ 12 | build_property.EnableComHosting = 13 | build_property.EnableGeneratedComInterfaceComImportInterop = 14 | -------------------------------------------------------------------------------- /CalculadoradeMediadeNotas/Media/obj/Debug/net8.0/Media.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 | -------------------------------------------------------------------------------- /CalculadoradeMediadeNotas/Media/obj/Debug/net8.0/Media.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/CalculadoradeMediadeNotas/Media/obj/Debug/net8.0/Media.assets.cache -------------------------------------------------------------------------------- /CalculadoradeMediadeNotas/Media/obj/Debug/net8.0/Media.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0a3e5223ddb0357ab1905da84b03348c9befc82da9cb6def46c0ddd9487de1dc 2 | -------------------------------------------------------------------------------- /CalculadoradeMediadeNotas/Media/obj/Debug/net8.0/Media.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | /home/tonho/tonho/projects/conversa-fiada/CalculadoradeMediadeNotas/Media/bin/Debug/net8.0/Media 2 | /home/tonho/tonho/projects/conversa-fiada/CalculadoradeMediadeNotas/Media/bin/Debug/net8.0/Media.deps.json 3 | /home/tonho/tonho/projects/conversa-fiada/CalculadoradeMediadeNotas/Media/bin/Debug/net8.0/Media.runtimeconfig.json 4 | /home/tonho/tonho/projects/conversa-fiada/CalculadoradeMediadeNotas/Media/bin/Debug/net8.0/Media.dll 5 | /home/tonho/tonho/projects/conversa-fiada/CalculadoradeMediadeNotas/Media/bin/Debug/net8.0/Media.pdb 6 | /home/tonho/tonho/projects/conversa-fiada/CalculadoradeMediadeNotas/Media/obj/Debug/net8.0/Media.GeneratedMSBuildEditorConfig.editorconfig 7 | /home/tonho/tonho/projects/conversa-fiada/CalculadoradeMediadeNotas/Media/obj/Debug/net8.0/Media.AssemblyInfoInputs.cache 8 | /home/tonho/tonho/projects/conversa-fiada/CalculadoradeMediadeNotas/Media/obj/Debug/net8.0/Media.AssemblyInfo.cs 9 | /home/tonho/tonho/projects/conversa-fiada/CalculadoradeMediadeNotas/Media/obj/Debug/net8.0/Media.csproj.CoreCompileInputs.cache 10 | /home/tonho/tonho/projects/conversa-fiada/CalculadoradeMediadeNotas/Media/obj/Debug/net8.0/Media.sourcelink.json 11 | /home/tonho/tonho/projects/conversa-fiada/CalculadoradeMediadeNotas/Media/obj/Debug/net8.0/Media.dll 12 | /home/tonho/tonho/projects/conversa-fiada/CalculadoradeMediadeNotas/Media/obj/Debug/net8.0/refint/Media.dll 13 | /home/tonho/tonho/projects/conversa-fiada/CalculadoradeMediadeNotas/Media/obj/Debug/net8.0/Media.pdb 14 | /home/tonho/tonho/projects/conversa-fiada/CalculadoradeMediadeNotas/Media/obj/Debug/net8.0/Media.genruntimeconfig.cache 15 | /home/tonho/tonho/projects/conversa-fiada/CalculadoradeMediadeNotas/Media/obj/Debug/net8.0/ref/Media.dll 16 | -------------------------------------------------------------------------------- /CalculadoradeMediadeNotas/Media/obj/Debug/net8.0/Media.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/CalculadoradeMediadeNotas/Media/obj/Debug/net8.0/Media.dll -------------------------------------------------------------------------------- /CalculadoradeMediadeNotas/Media/obj/Debug/net8.0/Media.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 4010c5917d8d2f61f6412f9a63294364c37071d6a565a1ec67c3822036a24dbb 2 | -------------------------------------------------------------------------------- /CalculadoradeMediadeNotas/Media/obj/Debug/net8.0/Media.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/CalculadoradeMediadeNotas/Media/obj/Debug/net8.0/Media.pdb -------------------------------------------------------------------------------- /CalculadoradeMediadeNotas/Media/obj/Debug/net8.0/Media.sourcelink.json: -------------------------------------------------------------------------------- 1 | {"documents":{"/home/tonho/tonho/projects/conversa-fiada/*":"https://raw.githubusercontent.com/TonhoDB/Conversa-Fiada/97d6f1f208ee5d7f82afe00a3c80cb621c9f9b65/*"}} -------------------------------------------------------------------------------- /CalculadoradeMediadeNotas/Media/obj/Debug/net8.0/apphost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/CalculadoradeMediadeNotas/Media/obj/Debug/net8.0/apphost -------------------------------------------------------------------------------- /CalculadoradeMediadeNotas/Media/obj/Debug/net8.0/ref/Media.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/CalculadoradeMediadeNotas/Media/obj/Debug/net8.0/ref/Media.dll -------------------------------------------------------------------------------- /CalculadoradeMediadeNotas/Media/obj/Debug/net8.0/refint/Media.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/CalculadoradeMediadeNotas/Media/obj/Debug/net8.0/refint/Media.dll -------------------------------------------------------------------------------- /CalculadoradeMediadeNotas/Media/obj/Media.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "/home/tonho/tonho/projects/conversa-fiada/CalculadoradeMediadeNotas/Media/Media.csproj": {} 5 | }, 6 | "projects": { 7 | "/home/tonho/tonho/projects/conversa-fiada/CalculadoradeMediadeNotas/Media/Media.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "/home/tonho/tonho/projects/conversa-fiada/CalculadoradeMediadeNotas/Media/Media.csproj", 11 | "projectName": "Media", 12 | "projectPath": "/home/tonho/tonho/projects/conversa-fiada/CalculadoradeMediadeNotas/Media/Media.csproj", 13 | "packagesPath": "/home/tonho/.nuget/packages/", 14 | "outputPath": "/home/tonho/tonho/projects/conversa-fiada/CalculadoradeMediadeNotas/Media/obj/", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "/home/tonho/.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.105/PortableRuntimeIdentifierGraph.json" 57 | } 58 | } 59 | } 60 | } 61 | } -------------------------------------------------------------------------------- /CalculadoradeMediadeNotas/Media/obj/Media.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | /home/tonho/.nuget/packages/ 8 | /home/tonho/.nuget/packages/ 9 | PackageReference 10 | 6.8.1 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /CalculadoradeMediadeNotas/Media/obj/Media.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /CalculadoradeMediadeNotas/Media/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/tonho/.nuget/packages/": {} 12 | }, 13 | "project": { 14 | "version": "1.0.0", 15 | "restore": { 16 | "projectUniqueName": "/home/tonho/tonho/projects/conversa-fiada/CalculadoradeMediadeNotas/Media/Media.csproj", 17 | "projectName": "Media", 18 | "projectPath": "/home/tonho/tonho/projects/conversa-fiada/CalculadoradeMediadeNotas/Media/Media.csproj", 19 | "packagesPath": "/home/tonho/.nuget/packages/", 20 | "outputPath": "/home/tonho/tonho/projects/conversa-fiada/CalculadoradeMediadeNotas/Media/obj/", 21 | "projectStyle": "PackageReference", 22 | "configFilePaths": [ 23 | "/home/tonho/.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.105/PortableRuntimeIdentifierGraph.json" 63 | } 64 | } 65 | } 66 | } -------------------------------------------------------------------------------- /CalculadoradeMediadeNotas/Media/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "bSPC8LIJo4cLMQF09JWlT78irky67Zgr9S1UdqQs9xVI5ma2GujMxc5Jy40p1srz8oo5AsenovzbU2tjTkkcew==", 4 | "success": true, 5 | "projectFilePath": "/home/tonho/tonho/projects/conversa-fiada/CalculadoradeMediadeNotas/Media/Media.csproj", 6 | "expectedPackageFiles": [], 7 | "logs": [] 8 | } -------------------------------------------------------------------------------- /GerenciadorDeContatosSimples/Gerenciador/Gerenciador.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net6.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /GerenciadorDeContatosSimples/Gerenciador/Program.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Diagnostics.Contracts; 3 | 4 | var contatoss = new ArrayList(); 5 | int codigo = 0; 6 | 7 | 8 | 9 | while (true){ 10 | int Count = 0; 11 | Console.WriteLine("\nBem vindo a agenda, digite o código da função desejada:\n"); 12 | Console.WriteLine("0: Sair\n1: Exibir contatos\n2: Adicionar novo contato\n3: Remover Contato:\n"); 13 | ArrayList contatos = new ArrayList(contatoss); 14 | codigo = Convert.ToInt32(Console.ReadLine()); 15 | if(codigo == 0){ 16 | break; 17 | }else if(codigo == 1){ 18 | Console.WriteLine("Contatos: "); 19 | foreach(string i in contatos){ 20 | Console.WriteLine(i); 21 | } 22 | }else if(codigo == 2){ 23 | Console.WriteLine("Digite o nome do contato: \n"); 24 | contatoss.Add(Console.ReadLine()); 25 | Console.WriteLine("\n"); 26 | }else if(codigo == 3){ 27 | Console.WriteLine("Escolha um contato para remover: "); 28 | foreach(string i in contatoss){ 29 | Count ++; 30 | Console.WriteLine(i + " " + Count); 31 | } 32 | contatoss.RemoveAt(Convert.ToInt32(Console.ReadLine()) - 1); 33 | 34 | } 35 | } -------------------------------------------------------------------------------- /GerenciadorDeContatosSimples/Gerenciador/bin/Debug/net6.0/Gerenciador: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/GerenciadorDeContatosSimples/Gerenciador/bin/Debug/net6.0/Gerenciador -------------------------------------------------------------------------------- /GerenciadorDeContatosSimples/Gerenciador/bin/Debug/net6.0/Gerenciador.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v6.0", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v6.0": { 9 | "Gerenciador/1.0.0": { 10 | "runtime": { 11 | "Gerenciador.dll": {} 12 | } 13 | } 14 | } 15 | }, 16 | "libraries": { 17 | "Gerenciador/1.0.0": { 18 | "type": "project", 19 | "serviceable": false, 20 | "sha512": "" 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /GerenciadorDeContatosSimples/Gerenciador/bin/Debug/net6.0/Gerenciador.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/GerenciadorDeContatosSimples/Gerenciador/bin/Debug/net6.0/Gerenciador.dll -------------------------------------------------------------------------------- /GerenciadorDeContatosSimples/Gerenciador/bin/Debug/net6.0/Gerenciador.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/GerenciadorDeContatosSimples/Gerenciador/bin/Debug/net6.0/Gerenciador.pdb -------------------------------------------------------------------------------- /GerenciadorDeContatosSimples/Gerenciador/bin/Debug/net6.0/Gerenciador.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net6.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "6.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /GerenciadorDeContatosSimples/Gerenciador/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 = ".NET 6.0")] 5 | -------------------------------------------------------------------------------- /GerenciadorDeContatosSimples/Gerenciador/obj/Debug/net6.0/Gerenciador.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("Gerenciador")] 14 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 15 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 16 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+49d0c63ad8d463f0292064ae7a6db4cd7f3d5be4")] 17 | [assembly: System.Reflection.AssemblyProductAttribute("Gerenciador")] 18 | [assembly: System.Reflection.AssemblyTitleAttribute("Gerenciador")] 19 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 20 | 21 | // Generated by the MSBuild WriteCodeFragment class. 22 | 23 | -------------------------------------------------------------------------------- /GerenciadorDeContatosSimples/Gerenciador/obj/Debug/net6.0/Gerenciador.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 306938a5c235be796540e2410742a36ed22bf7244313cc69002b90b377dc5dbb 2 | -------------------------------------------------------------------------------- /GerenciadorDeContatosSimples/Gerenciador/obj/Debug/net6.0/Gerenciador.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 = Gerenciador 11 | build_property.ProjectDir = /home/tonho/tonho/projects/conversa-fiada/GerenciadorDeContatosSimples/Gerenciador/ 12 | build_property.EnableComHosting = 13 | build_property.EnableGeneratedComInterfaceComImportInterop = 14 | -------------------------------------------------------------------------------- /GerenciadorDeContatosSimples/Gerenciador/obj/Debug/net6.0/Gerenciador.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 | -------------------------------------------------------------------------------- /GerenciadorDeContatosSimples/Gerenciador/obj/Debug/net6.0/Gerenciador.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/GerenciadorDeContatosSimples/Gerenciador/obj/Debug/net6.0/Gerenciador.assets.cache -------------------------------------------------------------------------------- /GerenciadorDeContatosSimples/Gerenciador/obj/Debug/net6.0/Gerenciador.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | f668f2afe0ccfa00b8a0ae8f6e9d336b363dd6b70e8f6ad4bba8fda097fa926c 2 | -------------------------------------------------------------------------------- /GerenciadorDeContatosSimples/Gerenciador/obj/Debug/net6.0/Gerenciador.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | /home/tonho/tonho/projects/conversa-fiada/GerenciadorDeContatosSimples/Gerenciador/bin/Debug/net6.0/Gerenciador 2 | /home/tonho/tonho/projects/conversa-fiada/GerenciadorDeContatosSimples/Gerenciador/bin/Debug/net6.0/Gerenciador.deps.json 3 | /home/tonho/tonho/projects/conversa-fiada/GerenciadorDeContatosSimples/Gerenciador/bin/Debug/net6.0/Gerenciador.runtimeconfig.json 4 | /home/tonho/tonho/projects/conversa-fiada/GerenciadorDeContatosSimples/Gerenciador/bin/Debug/net6.0/Gerenciador.dll 5 | /home/tonho/tonho/projects/conversa-fiada/GerenciadorDeContatosSimples/Gerenciador/bin/Debug/net6.0/Gerenciador.pdb 6 | /home/tonho/tonho/projects/conversa-fiada/GerenciadorDeContatosSimples/Gerenciador/obj/Debug/net6.0/Gerenciador.GeneratedMSBuildEditorConfig.editorconfig 7 | /home/tonho/tonho/projects/conversa-fiada/GerenciadorDeContatosSimples/Gerenciador/obj/Debug/net6.0/Gerenciador.AssemblyInfoInputs.cache 8 | /home/tonho/tonho/projects/conversa-fiada/GerenciadorDeContatosSimples/Gerenciador/obj/Debug/net6.0/Gerenciador.AssemblyInfo.cs 9 | /home/tonho/tonho/projects/conversa-fiada/GerenciadorDeContatosSimples/Gerenciador/obj/Debug/net6.0/Gerenciador.csproj.CoreCompileInputs.cache 10 | /home/tonho/tonho/projects/conversa-fiada/GerenciadorDeContatosSimples/Gerenciador/obj/Debug/net6.0/Gerenciador.sourcelink.json 11 | /home/tonho/tonho/projects/conversa-fiada/GerenciadorDeContatosSimples/Gerenciador/obj/Debug/net6.0/Gerenciador.dll 12 | /home/tonho/tonho/projects/conversa-fiada/GerenciadorDeContatosSimples/Gerenciador/obj/Debug/net6.0/refint/Gerenciador.dll 13 | /home/tonho/tonho/projects/conversa-fiada/GerenciadorDeContatosSimples/Gerenciador/obj/Debug/net6.0/Gerenciador.pdb 14 | /home/tonho/tonho/projects/conversa-fiada/GerenciadorDeContatosSimples/Gerenciador/obj/Debug/net6.0/Gerenciador.genruntimeconfig.cache 15 | /home/tonho/tonho/projects/conversa-fiada/GerenciadorDeContatosSimples/Gerenciador/obj/Debug/net6.0/ref/Gerenciador.dll 16 | -------------------------------------------------------------------------------- /GerenciadorDeContatosSimples/Gerenciador/obj/Debug/net6.0/Gerenciador.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/GerenciadorDeContatosSimples/Gerenciador/obj/Debug/net6.0/Gerenciador.dll -------------------------------------------------------------------------------- /GerenciadorDeContatosSimples/Gerenciador/obj/Debug/net6.0/Gerenciador.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 230d45d993624cd510752881b852d0941603c03000391c411651c881518ac221 2 | -------------------------------------------------------------------------------- /GerenciadorDeContatosSimples/Gerenciador/obj/Debug/net6.0/Gerenciador.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/GerenciadorDeContatosSimples/Gerenciador/obj/Debug/net6.0/Gerenciador.pdb -------------------------------------------------------------------------------- /GerenciadorDeContatosSimples/Gerenciador/obj/Debug/net6.0/Gerenciador.sourcelink.json: -------------------------------------------------------------------------------- 1 | {"documents":{"/home/tonho/tonho/projects/conversa-fiada/*":"https://raw.githubusercontent.com/TonhoDB/Conversa-Fiada/49d0c63ad8d463f0292064ae7a6db4cd7f3d5be4/*"}} -------------------------------------------------------------------------------- /GerenciadorDeContatosSimples/Gerenciador/obj/Debug/net6.0/apphost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/GerenciadorDeContatosSimples/Gerenciador/obj/Debug/net6.0/apphost -------------------------------------------------------------------------------- /GerenciadorDeContatosSimples/Gerenciador/obj/Debug/net6.0/ref/Gerenciador.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/GerenciadorDeContatosSimples/Gerenciador/obj/Debug/net6.0/ref/Gerenciador.dll -------------------------------------------------------------------------------- /GerenciadorDeContatosSimples/Gerenciador/obj/Debug/net6.0/refint/Gerenciador.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/GerenciadorDeContatosSimples/Gerenciador/obj/Debug/net6.0/refint/Gerenciador.dll -------------------------------------------------------------------------------- /GerenciadorDeContatosSimples/Gerenciador/obj/Gerenciador.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "/home/tonho/tonho/projects/conversa-fiada/GerenciadorDeContatosSimples/Gerenciador/Gerenciador.csproj": {} 5 | }, 6 | "projects": { 7 | "/home/tonho/tonho/projects/conversa-fiada/GerenciadorDeContatosSimples/Gerenciador/Gerenciador.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "/home/tonho/tonho/projects/conversa-fiada/GerenciadorDeContatosSimples/Gerenciador/Gerenciador.csproj", 11 | "projectName": "Gerenciador", 12 | "projectPath": "/home/tonho/tonho/projects/conversa-fiada/GerenciadorDeContatosSimples/Gerenciador/Gerenciador.csproj", 13 | "packagesPath": "/home/tonho/.nuget/packages/", 14 | "outputPath": "/home/tonho/tonho/projects/conversa-fiada/GerenciadorDeContatosSimples/Gerenciador/obj/", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "/home/tonho/.nuget/NuGet/NuGet.Config" 18 | ], 19 | "originalTargetFrameworks": [ 20 | "net6.0" 21 | ], 22 | "sources": { 23 | "https://api.nuget.org/v3/index.json": {} 24 | }, 25 | "frameworks": { 26 | "net6.0": { 27 | "targetAlias": "net6.0", 28 | "projectReferences": {} 29 | } 30 | }, 31 | "warningProperties": { 32 | "warnAsError": [ 33 | "NU1605" 34 | ] 35 | } 36 | }, 37 | "frameworks": { 38 | "net6.0": { 39 | "targetAlias": "net6.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 | "downloadDependencies": [ 52 | { 53 | "name": "Microsoft.AspNetCore.App.Ref", 54 | "version": "[6.0.30, 6.0.30]" 55 | }, 56 | { 57 | "name": "Microsoft.NETCore.App.Host.linux-x64", 58 | "version": "[6.0.30, 6.0.30]" 59 | }, 60 | { 61 | "name": "Microsoft.NETCore.App.Ref", 62 | "version": "[6.0.30, 6.0.30]" 63 | } 64 | ], 65 | "frameworkReferences": { 66 | "Microsoft.NETCore.App": { 67 | "privateAssets": "all" 68 | } 69 | }, 70 | "runtimeIdentifierGraphPath": "/usr/lib/dotnet/sdk/8.0.105/RuntimeIdentifierGraph.json" 71 | } 72 | } 73 | } 74 | } 75 | } -------------------------------------------------------------------------------- /GerenciadorDeContatosSimples/Gerenciador/obj/Gerenciador.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | /home/tonho/.nuget/packages/ 8 | /home/tonho/.nuget/packages/ 9 | PackageReference 10 | 6.8.1 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /GerenciadorDeContatosSimples/Gerenciador/obj/Gerenciador.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /GerenciadorDeContatosSimples/Gerenciador/obj/project.assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "targets": { 4 | "net6.0": {} 5 | }, 6 | "libraries": {}, 7 | "projectFileDependencyGroups": { 8 | "net6.0": [] 9 | }, 10 | "packageFolders": { 11 | "/home/tonho/.nuget/packages/": {} 12 | }, 13 | "project": { 14 | "version": "1.0.0", 15 | "restore": { 16 | "projectUniqueName": "/home/tonho/tonho/projects/conversa-fiada/GerenciadorDeContatosSimples/Gerenciador/Gerenciador.csproj", 17 | "projectName": "Gerenciador", 18 | "projectPath": "/home/tonho/tonho/projects/conversa-fiada/GerenciadorDeContatosSimples/Gerenciador/Gerenciador.csproj", 19 | "packagesPath": "/home/tonho/.nuget/packages/", 20 | "outputPath": "/home/tonho/tonho/projects/conversa-fiada/GerenciadorDeContatosSimples/Gerenciador/obj/", 21 | "projectStyle": "PackageReference", 22 | "configFilePaths": [ 23 | "/home/tonho/.nuget/NuGet/NuGet.Config" 24 | ], 25 | "originalTargetFrameworks": [ 26 | "net6.0" 27 | ], 28 | "sources": { 29 | "https://api.nuget.org/v3/index.json": {} 30 | }, 31 | "frameworks": { 32 | "net6.0": { 33 | "targetAlias": "net6.0", 34 | "projectReferences": {} 35 | } 36 | }, 37 | "warningProperties": { 38 | "warnAsError": [ 39 | "NU1605" 40 | ] 41 | } 42 | }, 43 | "frameworks": { 44 | "net6.0": { 45 | "targetAlias": "net6.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 | "downloadDependencies": [ 58 | { 59 | "name": "Microsoft.AspNetCore.App.Ref", 60 | "version": "[6.0.30, 6.0.30]" 61 | }, 62 | { 63 | "name": "Microsoft.NETCore.App.Host.linux-x64", 64 | "version": "[6.0.30, 6.0.30]" 65 | }, 66 | { 67 | "name": "Microsoft.NETCore.App.Ref", 68 | "version": "[6.0.30, 6.0.30]" 69 | } 70 | ], 71 | "frameworkReferences": { 72 | "Microsoft.NETCore.App": { 73 | "privateAssets": "all" 74 | } 75 | }, 76 | "runtimeIdentifierGraphPath": "/usr/lib/dotnet/sdk/8.0.105/RuntimeIdentifierGraph.json" 77 | } 78 | } 79 | } 80 | } -------------------------------------------------------------------------------- /GerenciadorDeContatosSimples/Gerenciador/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "QN+LX3eOG5FfUH9K/0r2NiWrbGbPSapXOpsmdjj1tqohd2dWFRrm3/zJE1IrMlLEFzYtoxdOqOZacImDn6dHNg==", 4 | "success": true, 5 | "projectFilePath": "/home/tonho/tonho/projects/conversa-fiada/GerenciadorDeContatosSimples/Gerenciador/Gerenciador.csproj", 6 | "expectedPackageFiles": [ 7 | "/home/tonho/.nuget/packages/microsoft.netcore.app.ref/6.0.30/microsoft.netcore.app.ref.6.0.30.nupkg.sha512", 8 | "/home/tonho/.nuget/packages/microsoft.aspnetcore.app.ref/6.0.30/microsoft.aspnetcore.app.ref.6.0.30.nupkg.sha512", 9 | "/home/tonho/.nuget/packages/microsoft.netcore.app.host.linux-x64/6.0.30/microsoft.netcore.app.host.linux-x64.6.0.30.nupkg.sha512" 10 | ], 11 | "logs": [] 12 | } -------------------------------------------------------------------------------- /GerenciadorDeContatosSimples/GerenciadorDeContatos.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31903.59 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Gerenciador", "Gerenciador\Gerenciador.csproj", "{78C8B6BA-8806-40D6-B93E-52AB7B0A9049}" 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(SolutionProperties) = preSolution 14 | HideSolutionNode = FALSE 15 | EndGlobalSection 16 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 17 | {78C8B6BA-8806-40D6-B93E-52AB7B0A9049}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 18 | {78C8B6BA-8806-40D6-B93E-52AB7B0A9049}.Debug|Any CPU.Build.0 = Debug|Any CPU 19 | {78C8B6BA-8806-40D6-B93E-52AB7B0A9049}.Release|Any CPU.ActiveCfg = Release|Any CPU 20 | {78C8B6BA-8806-40D6-B93E-52AB7B0A9049}.Release|Any CPU.Build.0 = Release|Any CPU 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Conversa-Fiada 2 | 3 | Bem-vindo ao repositório **conversa-fiada**! Este é o meu espaço pessoal para armazenar todos os códigos e projetos enquanto aprendo os fundamentos do C# e .NET. Aqui, você encontrará uma variedade de exemplos e exercícios que cobrem desde os conceitos mais básicos até tópicos mais avançados, à medida que eu avanço na minha jornada de aprendizado. 4 | 5 | ## Objetivo 6 | 7 | O principal objetivo do **conversa-fiada** é servir como um repositório de referência e progresso para meus estudos em C#. Através deste repositório, pretendo: 8 | 9 | - Documentar meu aprendizado e progresso no desenvolvimento com C#. 10 | - Armazenar exemplos de código e projetos práticos. 11 | - Experimentar com diferentes funcionalidades e características da linguagem C#. 12 | - Compartilhar conhecimentos e práticas de programação com outros desenvolvedores iniciantes. 13 | 14 | 15 | ## Where do I get my projects from? 16 | 17 | 1. https://chatgpt.com/ 18 | 2. https://robertheaton.com/2018/12/08/programming-projects-for-advanced-beginners/ 19 | 3. https://github.com/karan/Projects 20 | 4. https://wiki.python.org.br/ListaDeExercicios 21 | ## How i clone this? 22 | 23 | To explore the codes and projects in this repository, follow the steps below: 24 | 25 | 1. Clone the repository to your local environment: 26 | ```bash 27 | git clone https://github.com/tonhodb/conversa-fiada.git 28 | 29 | -------------------------------------------------------------------------------- /SequentialStructure/Sequetial/Program.cs: -------------------------------------------------------------------------------- 1 | // 1. Faça um Programa que mostre a mensagem "Alo mundo" na tela. 2 | 3 | using System.ComponentModel; 4 | using System.Net.NetworkInformation; 5 | 6 | void HelloWorld() 7 | { 8 | Console.WriteLine("Alo mundo"); 9 | } 10 | 11 | // 2. Faça um Programa que peça um número e então mostre a mensagem O número informado foi [número]. 12 | void ShowNumber(){ 13 | int Number() 14 | { 15 | Console.WriteLine("Digite um número para ser apresentado na tela: "); 16 | int number = Convert.ToInt32(Console.ReadLine()); 17 | return number; 18 | } 19 | Console.WriteLine("O número informado foi "+ Number()); 20 | } 21 | 22 | // 3. Faça um Programa que peça dois números e imprima a soma. 23 | 24 | void ShowSum() 25 | { 26 | int Numbers() 27 | { 28 | Console.WriteLine("Digite o primeiro número: "); 29 | int number1 = Convert.ToInt32(Console.ReadLine()); 30 | Console.WriteLine("Digite o segundo número: "); 31 | int number2 = Convert.ToInt32(Console.ReadLine()); 32 | return number1 + number2; 33 | } 34 | Console.WriteLine("A soma de ambos os números é igual: "+ Numbers()); 35 | } 36 | 37 | // 4. Faça um Programa que peça as 4 notas bimestrais e mostre a média. 38 | 39 | void ShowAvarage() 40 | { 41 | int Avarages() 42 | { 43 | Console.WriteLine("Digite a primeira nota: "); 44 | int avarage1 = Convert.ToInt32(Console.ReadLine()); 45 | Console.WriteLine("Digite a segunda nota: "); 46 | int avarage2 = Convert.ToInt32(Console.ReadLine()); 47 | Console.WriteLine("Digite a terceira nota: "); 48 | int avarage3 = Convert.ToInt32(Console.ReadLine()); 49 | Console.WriteLine("Digite a quarta nota: "); 50 | int avarage4 = Convert.ToInt32(Console.ReadLine()); 51 | 52 | return (avarage1 + avarage2 + avarage3 + avarage4) / 4; 53 | } 54 | Console.WriteLine("Sua média é igual: "+ Avarages()); 55 | } 56 | 57 | // 5. Faça um Programa que converta metros para centímetros. 58 | 59 | void ShowMetersToCentimeter() 60 | { 61 | double MetersToCentimeters() 62 | { 63 | Console.WriteLine("Digite o valor em metros: "); 64 | double m = Convert.ToDouble(Console.ReadLine()); 65 | double cm = m * 100; 66 | return cm; 67 | } 68 | Console.WriteLine("O valor em Cm é: " + MetersToCentimeters()); 69 | } 70 | 71 | // 6. Faça um Programa que peça o raio de um círculo, calcule e mostre sua área. 72 | void ShowAreaOfCircle() 73 | { 74 | double AreaOfCircle() 75 | { 76 | double pi = 3.14; 77 | Console.WriteLine("Digite o raio"); 78 | double r = Convert.ToDouble(Console.ReadLine()); 79 | return pi * (r * r); 80 | } 81 | Console.WriteLine("A área do circulo é: " + AreaOfCircle()); 82 | } 83 | 84 | // 7. Faça um Programa que calcule a área de um quadrado, em seguida mostre o dobro desta área para o usuário. 85 | void ShowAreaOfSquare() 86 | { 87 | double DoubleOfAreaOfSquare() 88 | { 89 | 90 | Console.WriteLine("Digite o lado do quadrado"); 91 | double l = Convert.ToDouble(Console.ReadLine()); 92 | return (l * l) * 2; 93 | } 94 | Console.WriteLine("A área do circulo é: " + DoubleOfAreaOfSquare()); 95 | } 96 | 97 | // 8. Faça um Programa que pergunte quanto você ganha por hora e o número de horas trabalhadas no mês. Calcule e mostre o total do seu salário no referido mês. 98 | 99 | void ShowWage() 100 | { 101 | double WageCalc() 102 | { 103 | double workHours = Convert.ToDouble(Console.ReadLine()); 104 | double hourWage = Convert.ToDouble(Console.ReadLine()); 105 | return workHours * hourWage; 106 | } 107 | Console.WriteLine(WageCalc()); 108 | } 109 | // 9. Faça um Programa que peça a temperatura em graus Fahrenheit, transforme e mostre a temperatura em graus Celsius. C = 5 * ((F-32) / 9). 110 | 111 | void ShowConvertedToCelsius() 112 | { 113 | double ConvertToCelsius() 114 | { 115 | double F = Convert.ToDouble(Console.ReadLine()); 116 | return 5 * ((F - 32) / 9); 117 | } 118 | Console.WriteLine(ConvertToCelsius()); 119 | } 120 | //10. Faça um Programa que peça a temperatura em graus Celsius, transforme e mostre em graus Fahrenheit. 121 | void ShowConvertedToFahrenheit() 122 | { 123 | double ConvertToFahrenheit() 124 | { 125 | double C = Convert.ToDouble(Console.ReadLine()); 126 | return (C * 1.8) + 32; 127 | } 128 | Console.WriteLine(ConvertToFahrenheit()); 129 | } 130 | /* 131 | 11. Faça um Programa que peça 2 números inteiros e um número real. Calcule e mostre: 132 | a. o produto do dobro do primeiro com metade do segundo . 133 | b. a soma do triplo do primeiro com o terceiro. 134 | c. o terceiro elevado ao cubo. 135 | */ 136 | 137 | void ShowNumberTransformation() 138 | { 139 | int n1 = Convert.ToInt32(Console.ReadLine()); 140 | int n2 = Convert.ToInt32(Console.ReadLine()); 141 | double n3 = Convert.ToDouble(Console.ReadLine()); 142 | double a() 143 | { 144 | return Convert.ToDouble((n1 * 2) * (n2 / 2.0)); 145 | } 146 | double b() 147 | { 148 | return Convert.ToDouble((n2 * 3.0) + n3); 149 | } 150 | 151 | double c() 152 | { 153 | return Convert.ToDouble(n3 * n3 * n3); 154 | } 155 | Console.WriteLine("a: " + a() + " b: " + b() + " c: " + c()); 156 | } 157 | // 12. Tendo como dados de entrada a altura de uma pessoa, construa um algoritmo que calcule seu peso ideal, usando a seguinte fórmula: (72.7*altura) - 58 158 | 159 | void ShowIdealWeight() 160 | { 161 | double IdealWeight() 162 | { 163 | double height = Convert.ToDouble(Console.ReadLine()); 164 | return (72.7 * height) - 58; 165 | } 166 | Console.WriteLine("Seu peso ideal é: " + IdealWeight()); 167 | } 168 | /* 169 | 13. Tendo como dado de entrada a altura (h) de uma pessoa, construa um algoritmo que calcule seu peso ideal, utilizando as seguintes fórmulas: 170 | a. Para homens: (72.7*h) - 58 171 | b. Para mulheres: (62.1*h) - 44.7 172 | */ 173 | void ShowIdealWeight2() 174 | { 175 | double height = Convert.ToDouble(Console.ReadLine()); 176 | double IdealWeightMan() 177 | { 178 | return (72.7 * height) - 58; 179 | } 180 | double IdealWeightFemale() 181 | { 182 | return (62.1 * height) - 44.7; 183 | } 184 | Console.WriteLine("Seu peso ideal masculino é: " + IdealWeightMan()); 185 | Console.WriteLine("Seu peso ideal feminino é: " + IdealWeightFemale()); 186 | 187 | } 188 | /* 189 | João Papo-de-Pescador, homem de bem, comprou um microcomputador para controlar o rendimento diário de seu trabalho. Toda vez que ele traz um peso de peixes maior que o estabelecido pelo regulamento de pesca do estado de São Paulo (50 quilos) deve pagar uma multa de R$ 4,00 por quilo excedente. João precisa que você faça um programa que leia a variável peso (peso de peixes) e calcule o excesso. Gravar na variável excesso a quantidade de quilos além do limite e na variável multa o valor da multa que João deverá pagar. Imprima os dados do programa com as mensagens adequadas. 190 | */ 191 | 192 | void ShowJoao() 193 | { 194 | double fishWidth = Convert.ToDouble(Console.ReadLine()); 195 | double ticket = fishWidth >= 0 && fishWidth <= 40 ? 0 : (fishWidth - 50) * 4; 196 | 197 | Console.WriteLine("Você recebeu uma multa de: " + ticket); 198 | } 199 | 200 | /* 201 | Faça um Programa que pergunte quanto você ganha por hora e o número de horas trabalhadas no mês. Calcule e mostre o total do seu salário no referido mês, sabendo-se que são descontados 11% para o Imposto de Renda, 8% para o INSS e 5% para o sindicato, faça um programa que nos dê: 202 | a. salário bruto. 203 | b. quanto pagou ao INSS. 204 | c. quanto pagou ao sindicato. 205 | d. o salário líquido. 206 | calcule os descontos e o salário líquido, conforme a tabela abaixo: 207 | 208 | */ 209 | void ShowWork() 210 | { 211 | 212 | double workHours = Convert.ToDouble(Console.ReadLine()); 213 | double hourWage = Convert.ToDouble(Console.ReadLine()); 214 | double wage = workHours * hourWage; 215 | double tax = wage * 0.11; 216 | double inss = wage * 0.08; 217 | double sindicate = wage * 0.05; 218 | double liquid = wage - tax - sindicate - inss; 219 | Console.WriteLine("a. " + wage + " b. " + tax + " c. "+inss + " d. " + liquid); 220 | } 221 | /* 222 | Faça um programa para uma loja de tintas. O programa deverá pedir o tamanho em metros quadrados da área a ser pintada. Considere que a cobertura da tinta é de 1 litro para cada 3 metros quadrados e que a tinta é vendida em latas de 18 litros, que custam R$ 80,00. Informe ao usuário a quantidades de latas de tinta a serem compradas e o preço total. 223 | */ 224 | void ShowPaint() 225 | { 226 | double m = Convert.ToDouble(Console.ReadLine()); 227 | double l = m / 3; 228 | int paint = Convert.ToInt32(l) / 18; 229 | int total = l >= 18 ? paint * 80 : 1 * 80; 230 | } 231 | 232 | 233 | // Execução 234 | Console.WriteLine("Digite o código baseado nessa lista: https://wiki.python.org.br/EstruturaSequencial: "); 235 | int choice = Convert.ToInt32(Console.ReadLine()); 236 | switch(choice) 237 | { 238 | case 1: 239 | HelloWorld(); 240 | break; 241 | case 2: 242 | ShowNumber(); 243 | break; 244 | case 3: 245 | ShowSum(); 246 | break; 247 | case 4: 248 | ShowAvarage(); 249 | break; 250 | case 5: 251 | ShowMetersToCentimeter(); 252 | break; 253 | case 6: 254 | ShowAreaOfCircle(); 255 | break; 256 | case 7: 257 | ShowAreaOfSquare(); 258 | break; 259 | case 8: 260 | ShowWage(); 261 | break; 262 | case 9: 263 | ShowConvertedToCelsius(); 264 | break; 265 | case 10: 266 | ShowConvertedToFahrenheit(); 267 | break; 268 | case 11: 269 | ShowNumberTransformation(); 270 | break; 271 | case 12: 272 | ShowIdealWeight(); 273 | break; 274 | case 13: 275 | ShowIdealWeight2(); 276 | break; 277 | case 14: 278 | ShowJoao(); 279 | break; 280 | case 15: 281 | ShowWork(); 282 | break; 283 | case 16: 284 | ShowPaint(); 285 | break; 286 | case 17: 287 | break; 288 | case 18: 289 | break; 290 | } 291 | 292 | 293 | -------------------------------------------------------------------------------- /SequentialStructure/Sequetial/Sequetial.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /SequentialStructure/Sequetial/Sequetial.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.5.002.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Sequetial", "Sequetial.csproj", "{9C008E45-5386-4277-B00F-0054DEB9DD82}" 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 | {9C008E45-5386-4277-B00F-0054DEB9DD82}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {9C008E45-5386-4277-B00F-0054DEB9DD82}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {9C008E45-5386-4277-B00F-0054DEB9DD82}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {9C008E45-5386-4277-B00F-0054DEB9DD82}.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 = {7FC34961-4B29-444D-A32C-52747B890E35} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /SequentialStructure/Sequetial/bin/Debug/net8.0/Sequetial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/SequentialStructure/Sequetial/bin/Debug/net8.0/Sequetial -------------------------------------------------------------------------------- /SequentialStructure/Sequetial/bin/Debug/net8.0/Sequetial.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v8.0", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v8.0": { 9 | "Sequetial/1.0.0": { 10 | "runtime": { 11 | "Sequetial.dll": {} 12 | } 13 | } 14 | } 15 | }, 16 | "libraries": { 17 | "Sequetial/1.0.0": { 18 | "type": "project", 19 | "serviceable": false, 20 | "sha512": "" 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /SequentialStructure/Sequetial/bin/Debug/net8.0/Sequetial.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/SequentialStructure/Sequetial/bin/Debug/net8.0/Sequetial.dll -------------------------------------------------------------------------------- /SequentialStructure/Sequetial/bin/Debug/net8.0/Sequetial.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/SequentialStructure/Sequetial/bin/Debug/net8.0/Sequetial.pdb -------------------------------------------------------------------------------- /SequentialStructure/Sequetial/bin/Debug/net8.0/Sequetial.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "8.0.0" 7 | }, 8 | "configProperties": { 9 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /SequentialStructure/Sequetial/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 | -------------------------------------------------------------------------------- /SequentialStructure/Sequetial/obj/Debug/net8.0/Sequetial.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("Sequetial")] 14 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 15 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 16 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+65facb24091a71eb5349a67bd491be18d50fc6d1")] 17 | [assembly: System.Reflection.AssemblyProductAttribute("Sequetial")] 18 | [assembly: System.Reflection.AssemblyTitleAttribute("Sequetial")] 19 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 20 | 21 | // Generated by the MSBuild WriteCodeFragment class. 22 | 23 | -------------------------------------------------------------------------------- /SequentialStructure/Sequetial/obj/Debug/net8.0/Sequetial.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 0756b702a032c65a26cbb1bc432e1a24b80a6ba3e31c0fa13ecdc64544ec0782 2 | -------------------------------------------------------------------------------- /SequentialStructure/Sequetial/obj/Debug/net8.0/Sequetial.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 = Sequetial 11 | build_property.ProjectDir = /home/tonho/tonho/projects/conversa-fiada/SequentialStructure/Sequetial/ 12 | build_property.EnableComHosting = 13 | build_property.EnableGeneratedComInterfaceComImportInterop = 14 | -------------------------------------------------------------------------------- /SequentialStructure/Sequetial/obj/Debug/net8.0/Sequetial.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 | -------------------------------------------------------------------------------- /SequentialStructure/Sequetial/obj/Debug/net8.0/Sequetial.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/SequentialStructure/Sequetial/obj/Debug/net8.0/Sequetial.assets.cache -------------------------------------------------------------------------------- /SequentialStructure/Sequetial/obj/Debug/net8.0/Sequetial.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 9d7efb89b58de0d1fbe851c86ee4542cdfed30f1fd015b39deb78dce87e2e66a 2 | -------------------------------------------------------------------------------- /SequentialStructure/Sequetial/obj/Debug/net8.0/Sequetial.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | /home/tonho/tonho/projects/conversa-fiada/SequentialStructure/Sequetial/obj/Debug/net8.0/Sequetial.GeneratedMSBuildEditorConfig.editorconfig 2 | /home/tonho/tonho/projects/conversa-fiada/SequentialStructure/Sequetial/obj/Debug/net8.0/Sequetial.AssemblyInfoInputs.cache 3 | /home/tonho/tonho/projects/conversa-fiada/SequentialStructure/Sequetial/obj/Debug/net8.0/Sequetial.AssemblyInfo.cs 4 | /home/tonho/tonho/projects/conversa-fiada/SequentialStructure/Sequetial/obj/Debug/net8.0/Sequetial.csproj.CoreCompileInputs.cache 5 | /home/tonho/tonho/projects/conversa-fiada/SequentialStructure/Sequetial/obj/Debug/net8.0/Sequetial.sourcelink.json 6 | /home/tonho/tonho/projects/conversa-fiada/SequentialStructure/Sequetial/bin/Debug/net8.0/Sequetial 7 | /home/tonho/tonho/projects/conversa-fiada/SequentialStructure/Sequetial/bin/Debug/net8.0/Sequetial.deps.json 8 | /home/tonho/tonho/projects/conversa-fiada/SequentialStructure/Sequetial/bin/Debug/net8.0/Sequetial.runtimeconfig.json 9 | /home/tonho/tonho/projects/conversa-fiada/SequentialStructure/Sequetial/bin/Debug/net8.0/Sequetial.dll 10 | /home/tonho/tonho/projects/conversa-fiada/SequentialStructure/Sequetial/bin/Debug/net8.0/Sequetial.pdb 11 | /home/tonho/tonho/projects/conversa-fiada/SequentialStructure/Sequetial/obj/Debug/net8.0/Sequetial.dll 12 | /home/tonho/tonho/projects/conversa-fiada/SequentialStructure/Sequetial/obj/Debug/net8.0/refint/Sequetial.dll 13 | /home/tonho/tonho/projects/conversa-fiada/SequentialStructure/Sequetial/obj/Debug/net8.0/Sequetial.pdb 14 | /home/tonho/tonho/projects/conversa-fiada/SequentialStructure/Sequetial/obj/Debug/net8.0/Sequetial.genruntimeconfig.cache 15 | /home/tonho/tonho/projects/conversa-fiada/SequentialStructure/Sequetial/obj/Debug/net8.0/ref/Sequetial.dll 16 | -------------------------------------------------------------------------------- /SequentialStructure/Sequetial/obj/Debug/net8.0/Sequetial.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/SequentialStructure/Sequetial/obj/Debug/net8.0/Sequetial.dll -------------------------------------------------------------------------------- /SequentialStructure/Sequetial/obj/Debug/net8.0/Sequetial.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | e0dfa9badefb4ac0413c562792d62a9a8e4de502cf4999ca0319453027b4a2ba 2 | -------------------------------------------------------------------------------- /SequentialStructure/Sequetial/obj/Debug/net8.0/Sequetial.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/SequentialStructure/Sequetial/obj/Debug/net8.0/Sequetial.pdb -------------------------------------------------------------------------------- /SequentialStructure/Sequetial/obj/Debug/net8.0/Sequetial.sourcelink.json: -------------------------------------------------------------------------------- 1 | {"documents":{"/home/tonho/tonho/projects/conversa-fiada/*":"https://raw.githubusercontent.com/TonhoDB/Conversa-Fiada/2dc8ffbbaaf8cec75aa28eb36fc4d8dfb420a741/*"}} -------------------------------------------------------------------------------- /SequentialStructure/Sequetial/obj/Debug/net8.0/apphost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/SequentialStructure/Sequetial/obj/Debug/net8.0/apphost -------------------------------------------------------------------------------- /SequentialStructure/Sequetial/obj/Debug/net8.0/ref/Sequetial.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/SequentialStructure/Sequetial/obj/Debug/net8.0/ref/Sequetial.dll -------------------------------------------------------------------------------- /SequentialStructure/Sequetial/obj/Debug/net8.0/refint/Sequetial.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/SequentialStructure/Sequetial/obj/Debug/net8.0/refint/Sequetial.dll -------------------------------------------------------------------------------- /SequentialStructure/Sequetial/obj/Sequetial.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "/home/tonho/tonho/projects/conversa-fiada/SequentialStructure/Sequetial/Sequetial.csproj": {} 5 | }, 6 | "projects": { 7 | "/home/tonho/tonho/projects/conversa-fiada/SequentialStructure/Sequetial/Sequetial.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "/home/tonho/tonho/projects/conversa-fiada/SequentialStructure/Sequetial/Sequetial.csproj", 11 | "projectName": "Sequetial", 12 | "projectPath": "/home/tonho/tonho/projects/conversa-fiada/SequentialStructure/Sequetial/Sequetial.csproj", 13 | "packagesPath": "/home/tonho/.nuget/packages/", 14 | "outputPath": "/home/tonho/tonho/projects/conversa-fiada/SequentialStructure/Sequetial/obj/", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "/home/tonho/.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.105/PortableRuntimeIdentifierGraph.json" 57 | } 58 | } 59 | } 60 | } 61 | } -------------------------------------------------------------------------------- /SequentialStructure/Sequetial/obj/Sequetial.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | /home/tonho/.nuget/packages/ 8 | /home/tonho/.nuget/packages/ 9 | PackageReference 10 | 6.8.1 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /SequentialStructure/Sequetial/obj/Sequetial.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /SequentialStructure/Sequetial/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/tonho/.nuget/packages/": {} 12 | }, 13 | "project": { 14 | "version": "1.0.0", 15 | "restore": { 16 | "projectUniqueName": "/home/tonho/tonho/projects/conversa-fiada/SequentialStructure/Sequetial/Sequetial.csproj", 17 | "projectName": "Sequetial", 18 | "projectPath": "/home/tonho/tonho/projects/conversa-fiada/SequentialStructure/Sequetial/Sequetial.csproj", 19 | "packagesPath": "/home/tonho/.nuget/packages/", 20 | "outputPath": "/home/tonho/tonho/projects/conversa-fiada/SequentialStructure/Sequetial/obj/", 21 | "projectStyle": "PackageReference", 22 | "configFilePaths": [ 23 | "/home/tonho/.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.105/PortableRuntimeIdentifierGraph.json" 63 | } 64 | } 65 | } 66 | } -------------------------------------------------------------------------------- /SequentialStructure/Sequetial/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "EgEZEupZrnkul9/RSp/bCUyLS5bBfEViJtMTJQxsnzcMklBX6Fj5wPtroqurJt1MqDpU1oAR7k2gnY15VjZhsA==", 4 | "success": true, 5 | "projectFilePath": "/home/tonho/tonho/projects/conversa-fiada/SequentialStructure/Sequetial/Sequetial.csproj", 6 | "expectedPackageFiles": [], 7 | "logs": [] 8 | } -------------------------------------------------------------------------------- /SequentialStructure/SequetialStructure.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31903.59 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sequetial", "Sequetial\Sequetial.csproj", "{D6DE5655-E9FA-4C35-9867-1A941865C4CC}" 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(SolutionProperties) = preSolution 14 | HideSolutionNode = FALSE 15 | EndGlobalSection 16 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 17 | {D6DE5655-E9FA-4C35-9867-1A941865C4CC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 18 | {D6DE5655-E9FA-4C35-9867-1A941865C4CC}.Debug|Any CPU.Build.0 = Debug|Any CPU 19 | {D6DE5655-E9FA-4C35-9867-1A941865C4CC}.Release|Any CPU.ActiveCfg = Release|Any CPU 20 | {D6DE5655-E9FA-4C35-9867-1A941865C4CC}.Release|Any CPU.Build.0 = Release|Any CPU 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /SistemadeTarefas/SistemadeTarefas.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.31903.59 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tarefas", "Tarefas\Tarefas.csproj", "{73BCE111-1B90-4AFE-94C9-FAD06C89BB5E}" 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(SolutionProperties) = preSolution 14 | HideSolutionNode = FALSE 15 | EndGlobalSection 16 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 17 | {73BCE111-1B90-4AFE-94C9-FAD06C89BB5E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 18 | {73BCE111-1B90-4AFE-94C9-FAD06C89BB5E}.Debug|Any CPU.Build.0 = Debug|Any CPU 19 | {73BCE111-1B90-4AFE-94C9-FAD06C89BB5E}.Release|Any CPU.ActiveCfg = Release|Any CPU 20 | {73BCE111-1B90-4AFE-94C9-FAD06C89BB5E}.Release|Any CPU.Build.0 = Release|Any CPU 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /SistemadeTarefas/Tarefas/Program.cs: -------------------------------------------------------------------------------- 1 | var tarefas = new List(10); 2 | 3 | -------------------------------------------------------------------------------- /SistemadeTarefas/Tarefas/Tarefas.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /SistemadeTarefas/Tarefas/Tarefas.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.5.002.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tarefas", "Tarefas.csproj", "{73AEF1BB-E787-4ED9-9D1A-224FEEA1D0F0}" 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 | {73AEF1BB-E787-4ED9-9D1A-224FEEA1D0F0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {73AEF1BB-E787-4ED9-9D1A-224FEEA1D0F0}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {73AEF1BB-E787-4ED9-9D1A-224FEEA1D0F0}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {73AEF1BB-E787-4ED9-9D1A-224FEEA1D0F0}.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 = {DA9A3D69-917D-4AD3-BA9A-978E7F267263} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /SistemadeTarefas/Tarefas/bin/Debug/net8.0/Tarefas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/SistemadeTarefas/Tarefas/bin/Debug/net8.0/Tarefas -------------------------------------------------------------------------------- /SistemadeTarefas/Tarefas/bin/Debug/net8.0/Tarefas.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v8.0", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v8.0": { 9 | "Tarefas/1.0.0": { 10 | "runtime": { 11 | "Tarefas.dll": {} 12 | } 13 | } 14 | } 15 | }, 16 | "libraries": { 17 | "Tarefas/1.0.0": { 18 | "type": "project", 19 | "serviceable": false, 20 | "sha512": "" 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /SistemadeTarefas/Tarefas/bin/Debug/net8.0/Tarefas.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/SistemadeTarefas/Tarefas/bin/Debug/net8.0/Tarefas.dll -------------------------------------------------------------------------------- /SistemadeTarefas/Tarefas/bin/Debug/net8.0/Tarefas.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/SistemadeTarefas/Tarefas/bin/Debug/net8.0/Tarefas.pdb -------------------------------------------------------------------------------- /SistemadeTarefas/Tarefas/bin/Debug/net8.0/Tarefas.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "8.0.0" 7 | }, 8 | "configProperties": { 9 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /SistemadeTarefas/Tarefas/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 | -------------------------------------------------------------------------------- /SistemadeTarefas/Tarefas/obj/Debug/net8.0/Tarefas.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("Tarefas")] 14 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 15 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 16 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+10bc2ed99907edd8b0be0b5ab5df56d245e52d83")] 17 | [assembly: System.Reflection.AssemblyProductAttribute("Tarefas")] 18 | [assembly: System.Reflection.AssemblyTitleAttribute("Tarefas")] 19 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 20 | 21 | // Generated by the MSBuild WriteCodeFragment class. 22 | 23 | -------------------------------------------------------------------------------- /SistemadeTarefas/Tarefas/obj/Debug/net8.0/Tarefas.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | ac8fb1a2eadb1b67b8a6602896786beaeae691f82ea5c2ef94bef4017eef563c 2 | -------------------------------------------------------------------------------- /SistemadeTarefas/Tarefas/obj/Debug/net8.0/Tarefas.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 = Tarefas 11 | build_property.ProjectDir = /home/tonho/tonho/projects/conversa-fiada/SistemadeTarefas/Tarefas/ 12 | build_property.EnableComHosting = 13 | build_property.EnableGeneratedComInterfaceComImportInterop = 14 | -------------------------------------------------------------------------------- /SistemadeTarefas/Tarefas/obj/Debug/net8.0/Tarefas.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 | -------------------------------------------------------------------------------- /SistemadeTarefas/Tarefas/obj/Debug/net8.0/Tarefas.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/SistemadeTarefas/Tarefas/obj/Debug/net8.0/Tarefas.assets.cache -------------------------------------------------------------------------------- /SistemadeTarefas/Tarefas/obj/Debug/net8.0/Tarefas.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | d43280ab2e3fc77fc392e204e62a4005117e8315d7ded08565801a5fa356a2bd 2 | -------------------------------------------------------------------------------- /SistemadeTarefas/Tarefas/obj/Debug/net8.0/Tarefas.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | /home/tonho/tonho/projects/conversa-fiada/SistemadeTarefas/Tarefas/bin/Debug/net8.0/Tarefas 2 | /home/tonho/tonho/projects/conversa-fiada/SistemadeTarefas/Tarefas/bin/Debug/net8.0/Tarefas.deps.json 3 | /home/tonho/tonho/projects/conversa-fiada/SistemadeTarefas/Tarefas/bin/Debug/net8.0/Tarefas.runtimeconfig.json 4 | /home/tonho/tonho/projects/conversa-fiada/SistemadeTarefas/Tarefas/bin/Debug/net8.0/Tarefas.dll 5 | /home/tonho/tonho/projects/conversa-fiada/SistemadeTarefas/Tarefas/bin/Debug/net8.0/Tarefas.pdb 6 | /home/tonho/tonho/projects/conversa-fiada/SistemadeTarefas/Tarefas/obj/Debug/net8.0/Tarefas.GeneratedMSBuildEditorConfig.editorconfig 7 | /home/tonho/tonho/projects/conversa-fiada/SistemadeTarefas/Tarefas/obj/Debug/net8.0/Tarefas.AssemblyInfoInputs.cache 8 | /home/tonho/tonho/projects/conversa-fiada/SistemadeTarefas/Tarefas/obj/Debug/net8.0/Tarefas.AssemblyInfo.cs 9 | /home/tonho/tonho/projects/conversa-fiada/SistemadeTarefas/Tarefas/obj/Debug/net8.0/Tarefas.csproj.CoreCompileInputs.cache 10 | /home/tonho/tonho/projects/conversa-fiada/SistemadeTarefas/Tarefas/obj/Debug/net8.0/Tarefas.sourcelink.json 11 | /home/tonho/tonho/projects/conversa-fiada/SistemadeTarefas/Tarefas/obj/Debug/net8.0/Tarefas.dll 12 | /home/tonho/tonho/projects/conversa-fiada/SistemadeTarefas/Tarefas/obj/Debug/net8.0/refint/Tarefas.dll 13 | /home/tonho/tonho/projects/conversa-fiada/SistemadeTarefas/Tarefas/obj/Debug/net8.0/Tarefas.pdb 14 | /home/tonho/tonho/projects/conversa-fiada/SistemadeTarefas/Tarefas/obj/Debug/net8.0/Tarefas.genruntimeconfig.cache 15 | /home/tonho/tonho/projects/conversa-fiada/SistemadeTarefas/Tarefas/obj/Debug/net8.0/ref/Tarefas.dll 16 | -------------------------------------------------------------------------------- /SistemadeTarefas/Tarefas/obj/Debug/net8.0/Tarefas.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/SistemadeTarefas/Tarefas/obj/Debug/net8.0/Tarefas.dll -------------------------------------------------------------------------------- /SistemadeTarefas/Tarefas/obj/Debug/net8.0/Tarefas.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 8bf7f762414f80de05a92e0184e6434419590733e39d8026cefeed4f1b78f9d6 2 | -------------------------------------------------------------------------------- /SistemadeTarefas/Tarefas/obj/Debug/net8.0/Tarefas.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/SistemadeTarefas/Tarefas/obj/Debug/net8.0/Tarefas.pdb -------------------------------------------------------------------------------- /SistemadeTarefas/Tarefas/obj/Debug/net8.0/Tarefas.sourcelink.json: -------------------------------------------------------------------------------- 1 | {"documents":{"/home/tonho/tonho/projects/conversa-fiada/*":"https://raw.githubusercontent.com/TonhoDB/Conversa-Fiada/10bc2ed99907edd8b0be0b5ab5df56d245e52d83/*"}} -------------------------------------------------------------------------------- /SistemadeTarefas/Tarefas/obj/Debug/net8.0/apphost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/SistemadeTarefas/Tarefas/obj/Debug/net8.0/apphost -------------------------------------------------------------------------------- /SistemadeTarefas/Tarefas/obj/Debug/net8.0/ref/Tarefas.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/SistemadeTarefas/Tarefas/obj/Debug/net8.0/ref/Tarefas.dll -------------------------------------------------------------------------------- /SistemadeTarefas/Tarefas/obj/Debug/net8.0/refint/Tarefas.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/SistemadeTarefas/Tarefas/obj/Debug/net8.0/refint/Tarefas.dll -------------------------------------------------------------------------------- /SistemadeTarefas/Tarefas/obj/Tarefas.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "/home/tonho/tonho/projects/conversa-fiada/SistemadeTarefas/Tarefas/Tarefas.csproj": {} 5 | }, 6 | "projects": { 7 | "/home/tonho/tonho/projects/conversa-fiada/SistemadeTarefas/Tarefas/Tarefas.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "/home/tonho/tonho/projects/conversa-fiada/SistemadeTarefas/Tarefas/Tarefas.csproj", 11 | "projectName": "Tarefas", 12 | "projectPath": "/home/tonho/tonho/projects/conversa-fiada/SistemadeTarefas/Tarefas/Tarefas.csproj", 13 | "packagesPath": "/home/tonho/.nuget/packages/", 14 | "outputPath": "/home/tonho/tonho/projects/conversa-fiada/SistemadeTarefas/Tarefas/obj/", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "/home/tonho/.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.105/PortableRuntimeIdentifierGraph.json" 57 | } 58 | } 59 | } 60 | } 61 | } -------------------------------------------------------------------------------- /SistemadeTarefas/Tarefas/obj/Tarefas.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | /home/tonho/.nuget/packages/ 8 | /home/tonho/.nuget/packages/ 9 | PackageReference 10 | 6.8.1 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /SistemadeTarefas/Tarefas/obj/Tarefas.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /SistemadeTarefas/Tarefas/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/tonho/.nuget/packages/": {} 12 | }, 13 | "project": { 14 | "version": "1.0.0", 15 | "restore": { 16 | "projectUniqueName": "/home/tonho/tonho/projects/conversa-fiada/SistemadeTarefas/Tarefas/Tarefas.csproj", 17 | "projectName": "Tarefas", 18 | "projectPath": "/home/tonho/tonho/projects/conversa-fiada/SistemadeTarefas/Tarefas/Tarefas.csproj", 19 | "packagesPath": "/home/tonho/.nuget/packages/", 20 | "outputPath": "/home/tonho/tonho/projects/conversa-fiada/SistemadeTarefas/Tarefas/obj/", 21 | "projectStyle": "PackageReference", 22 | "configFilePaths": [ 23 | "/home/tonho/.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.105/PortableRuntimeIdentifierGraph.json" 63 | } 64 | } 65 | } 66 | } -------------------------------------------------------------------------------- /SistemadeTarefas/Tarefas/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "t3+8ILzyIlHbGgB59EYEiEhIYE5OvWF/7oMs+Lu/713qfkC7gKEvsW5R5QdgzYAXzO+zdB1jfGAoYhegaZ1Z8w==", 4 | "success": true, 5 | "projectFilePath": "/home/tonho/tonho/projects/conversa-fiada/SistemadeTarefas/Tarefas/Tarefas.csproj", 6 | "expectedPackageFiles": [], 7 | "logs": [] 8 | } -------------------------------------------------------------------------------- /StudentPerformanceCalculator/StudentPerformance/Program.cs: -------------------------------------------------------------------------------- 1 | List grades = new List(); 2 | bool active = true; 3 | Console.WriteLine("Input the grades:\n"); 4 | const double aproved = 7.0; 5 | var sum = 0; 6 | var x = 0; 7 | while (active) 8 | { 9 | var grade = Convert.ToInt32(Console.ReadLine()); 10 | if (grade < 0 ){ 11 | break; 12 | }else{ 13 | grades.Add(grade); 14 | x += 1; 15 | }} 16 | 17 | foreach(int i in grades){ 18 | sum += i; 19 | } 20 | 21 | var average = sum / x; 22 | 23 | if(average != aproved){ 24 | Console.WriteLine("Reprovou"); 25 | }else{ 26 | Console.WriteLine("Aprovado"); 27 | } -------------------------------------------------------------------------------- /StudentPerformanceCalculator/StudentPerformance/StudentPerformance.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /StudentPerformanceCalculator/StudentPerformance/bin/Debug/net8.0/StudentPerformance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/StudentPerformanceCalculator/StudentPerformance/bin/Debug/net8.0/StudentPerformance -------------------------------------------------------------------------------- /StudentPerformanceCalculator/StudentPerformance/bin/Debug/net8.0/StudentPerformance.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v8.0", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v8.0": { 9 | "StudentPerformance/1.0.0": { 10 | "runtime": { 11 | "StudentPerformance.dll": {} 12 | } 13 | } 14 | } 15 | }, 16 | "libraries": { 17 | "StudentPerformance/1.0.0": { 18 | "type": "project", 19 | "serviceable": false, 20 | "sha512": "" 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /StudentPerformanceCalculator/StudentPerformance/bin/Debug/net8.0/StudentPerformance.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/StudentPerformanceCalculator/StudentPerformance/bin/Debug/net8.0/StudentPerformance.dll -------------------------------------------------------------------------------- /StudentPerformanceCalculator/StudentPerformance/bin/Debug/net8.0/StudentPerformance.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/StudentPerformanceCalculator/StudentPerformance/bin/Debug/net8.0/StudentPerformance.pdb -------------------------------------------------------------------------------- /StudentPerformanceCalculator/StudentPerformance/bin/Debug/net8.0/StudentPerformance.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "8.0.0" 7 | }, 8 | "configProperties": { 9 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /StudentPerformanceCalculator/StudentPerformance/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 | -------------------------------------------------------------------------------- /StudentPerformanceCalculator/StudentPerformance/obj/Debug/net8.0/StudentPerformance.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("StudentPerformance")] 14 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 15 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 16 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+e74e06e8b00d0271755e485655758309867166fb")] 17 | [assembly: System.Reflection.AssemblyProductAttribute("StudentPerformance")] 18 | [assembly: System.Reflection.AssemblyTitleAttribute("StudentPerformance")] 19 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 20 | 21 | // Generated by the MSBuild WriteCodeFragment class. 22 | 23 | -------------------------------------------------------------------------------- /StudentPerformanceCalculator/StudentPerformance/obj/Debug/net8.0/StudentPerformance.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 586fec60da64db44a5880518a8ca0edd6e55f72c685d8a47b1d26564f8e5de8b 2 | -------------------------------------------------------------------------------- /StudentPerformanceCalculator/StudentPerformance/obj/Debug/net8.0/StudentPerformance.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 = StudentPerformance 11 | build_property.ProjectDir = /home/tonho/tonho/projects/conversa-fiada/StudentPerformanceCalculator/StudentPerformance/ 12 | build_property.EnableComHosting = 13 | build_property.EnableGeneratedComInterfaceComImportInterop = 14 | -------------------------------------------------------------------------------- /StudentPerformanceCalculator/StudentPerformance/obj/Debug/net8.0/StudentPerformance.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 | -------------------------------------------------------------------------------- /StudentPerformanceCalculator/StudentPerformance/obj/Debug/net8.0/StudentPerformance.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/StudentPerformanceCalculator/StudentPerformance/obj/Debug/net8.0/StudentPerformance.assets.cache -------------------------------------------------------------------------------- /StudentPerformanceCalculator/StudentPerformance/obj/Debug/net8.0/StudentPerformance.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 541201afb71c259f49760585437f635b23791a15d3f822ce7d4fea12686c609b 2 | -------------------------------------------------------------------------------- /StudentPerformanceCalculator/StudentPerformance/obj/Debug/net8.0/StudentPerformance.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | /home/tonho/tonho/projects/conversa-fiada/StudentPerformanceCalculator/StudentPerformance/bin/Debug/net8.0/StudentPerformance 2 | /home/tonho/tonho/projects/conversa-fiada/StudentPerformanceCalculator/StudentPerformance/bin/Debug/net8.0/StudentPerformance.deps.json 3 | /home/tonho/tonho/projects/conversa-fiada/StudentPerformanceCalculator/StudentPerformance/bin/Debug/net8.0/StudentPerformance.runtimeconfig.json 4 | /home/tonho/tonho/projects/conversa-fiada/StudentPerformanceCalculator/StudentPerformance/bin/Debug/net8.0/StudentPerformance.dll 5 | /home/tonho/tonho/projects/conversa-fiada/StudentPerformanceCalculator/StudentPerformance/bin/Debug/net8.0/StudentPerformance.pdb 6 | /home/tonho/tonho/projects/conversa-fiada/StudentPerformanceCalculator/StudentPerformance/obj/Debug/net8.0/StudentPerformance.GeneratedMSBuildEditorConfig.editorconfig 7 | /home/tonho/tonho/projects/conversa-fiada/StudentPerformanceCalculator/StudentPerformance/obj/Debug/net8.0/StudentPerformance.AssemblyInfoInputs.cache 8 | /home/tonho/tonho/projects/conversa-fiada/StudentPerformanceCalculator/StudentPerformance/obj/Debug/net8.0/StudentPerformance.AssemblyInfo.cs 9 | /home/tonho/tonho/projects/conversa-fiada/StudentPerformanceCalculator/StudentPerformance/obj/Debug/net8.0/StudentPerformance.csproj.CoreCompileInputs.cache 10 | /home/tonho/tonho/projects/conversa-fiada/StudentPerformanceCalculator/StudentPerformance/obj/Debug/net8.0/StudentPerformance.sourcelink.json 11 | /home/tonho/tonho/projects/conversa-fiada/StudentPerformanceCalculator/StudentPerformance/obj/Debug/net8.0/StudentPerformance.dll 12 | /home/tonho/tonho/projects/conversa-fiada/StudentPerformanceCalculator/StudentPerformance/obj/Debug/net8.0/refint/StudentPerformance.dll 13 | /home/tonho/tonho/projects/conversa-fiada/StudentPerformanceCalculator/StudentPerformance/obj/Debug/net8.0/StudentPerformance.pdb 14 | /home/tonho/tonho/projects/conversa-fiada/StudentPerformanceCalculator/StudentPerformance/obj/Debug/net8.0/StudentPerformance.genruntimeconfig.cache 15 | /home/tonho/tonho/projects/conversa-fiada/StudentPerformanceCalculator/StudentPerformance/obj/Debug/net8.0/ref/StudentPerformance.dll 16 | -------------------------------------------------------------------------------- /StudentPerformanceCalculator/StudentPerformance/obj/Debug/net8.0/StudentPerformance.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/StudentPerformanceCalculator/StudentPerformance/obj/Debug/net8.0/StudentPerformance.dll -------------------------------------------------------------------------------- /StudentPerformanceCalculator/StudentPerformance/obj/Debug/net8.0/StudentPerformance.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 8fbb030a96e837b0c9993dd87c9974e95fb2cb5746bc591eeeb41f4859301d64 2 | -------------------------------------------------------------------------------- /StudentPerformanceCalculator/StudentPerformance/obj/Debug/net8.0/StudentPerformance.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/StudentPerformanceCalculator/StudentPerformance/obj/Debug/net8.0/StudentPerformance.pdb -------------------------------------------------------------------------------- /StudentPerformanceCalculator/StudentPerformance/obj/Debug/net8.0/StudentPerformance.sourcelink.json: -------------------------------------------------------------------------------- 1 | {"documents":{"/home/tonho/tonho/projects/conversa-fiada/*":"https://raw.githubusercontent.com/TonhoDB/Conversa-Fiada/4d434e7b8f7e8803de330819df0fa82c80c8d809/*"}} -------------------------------------------------------------------------------- /StudentPerformanceCalculator/StudentPerformance/obj/Debug/net8.0/apphost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/StudentPerformanceCalculator/StudentPerformance/obj/Debug/net8.0/apphost -------------------------------------------------------------------------------- /StudentPerformanceCalculator/StudentPerformance/obj/Debug/net8.0/ref/StudentPerformance.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/StudentPerformanceCalculator/StudentPerformance/obj/Debug/net8.0/ref/StudentPerformance.dll -------------------------------------------------------------------------------- /StudentPerformanceCalculator/StudentPerformance/obj/Debug/net8.0/refint/StudentPerformance.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeynmanDaUSP/Conversa-Fiada/272166c056ea81b6eb0a081e29a8d25371bda83b/StudentPerformanceCalculator/StudentPerformance/obj/Debug/net8.0/refint/StudentPerformance.dll -------------------------------------------------------------------------------- /StudentPerformanceCalculator/StudentPerformance/obj/StudentPerformance.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "/home/tonho/tonho/projects/conversa-fiada/StudentPerformanceCalculator/StudentPerformance/StudentPerformance.csproj": {} 5 | }, 6 | "projects": { 7 | "/home/tonho/tonho/projects/conversa-fiada/StudentPerformanceCalculator/StudentPerformance/StudentPerformance.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "/home/tonho/tonho/projects/conversa-fiada/StudentPerformanceCalculator/StudentPerformance/StudentPerformance.csproj", 11 | "projectName": "StudentPerformance", 12 | "projectPath": "/home/tonho/tonho/projects/conversa-fiada/StudentPerformanceCalculator/StudentPerformance/StudentPerformance.csproj", 13 | "packagesPath": "/home/tonho/.nuget/packages/", 14 | "outputPath": "/home/tonho/tonho/projects/conversa-fiada/StudentPerformanceCalculator/StudentPerformance/obj/", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "/home/tonho/.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.105/PortableRuntimeIdentifierGraph.json" 57 | } 58 | } 59 | } 60 | } 61 | } -------------------------------------------------------------------------------- /StudentPerformanceCalculator/StudentPerformance/obj/StudentPerformance.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | /home/tonho/.nuget/packages/ 8 | /home/tonho/.nuget/packages/ 9 | PackageReference 10 | 6.8.1 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /StudentPerformanceCalculator/StudentPerformance/obj/StudentPerformance.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /StudentPerformanceCalculator/StudentPerformance/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/tonho/.nuget/packages/": {} 12 | }, 13 | "project": { 14 | "version": "1.0.0", 15 | "restore": { 16 | "projectUniqueName": "/home/tonho/tonho/projects/conversa-fiada/StudentPerformanceCalculator/StudentPerformance/StudentPerformance.csproj", 17 | "projectName": "StudentPerformance", 18 | "projectPath": "/home/tonho/tonho/projects/conversa-fiada/StudentPerformanceCalculator/StudentPerformance/StudentPerformance.csproj", 19 | "packagesPath": "/home/tonho/.nuget/packages/", 20 | "outputPath": "/home/tonho/tonho/projects/conversa-fiada/StudentPerformanceCalculator/StudentPerformance/obj/", 21 | "projectStyle": "PackageReference", 22 | "configFilePaths": [ 23 | "/home/tonho/.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.105/PortableRuntimeIdentifierGraph.json" 63 | } 64 | } 65 | } 66 | } -------------------------------------------------------------------------------- /StudentPerformanceCalculator/StudentPerformance/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "rgxISjix1Lb3r6KcfdKN1bbYgiEWI1bqWHkq9CsianFoFeZWa4CNrNICPPMDoY6MyA+h40Gr8LiNfU4KpmAIlw==", 4 | "success": true, 5 | "projectFilePath": "/home/tonho/tonho/projects/conversa-fiada/StudentPerformanceCalculator/StudentPerformance/StudentPerformance.csproj", 6 | "expectedPackageFiles": [], 7 | "logs": [] 8 | } -------------------------------------------------------------------------------- /StudentPerformanceCalculator/StudentPerformanceCalculator.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.5.002.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "StudentPerformance", "StudentPerformance\StudentPerformance.csproj", "{5249FE9F-F7AA-45F7-AC2E-B4EC79296AF2}" 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 | {5249FE9F-F7AA-45F7-AC2E-B4EC79296AF2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {5249FE9F-F7AA-45F7-AC2E-B4EC79296AF2}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {5249FE9F-F7AA-45F7-AC2E-B4EC79296AF2}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {5249FE9F-F7AA-45F7-AC2E-B4EC79296AF2}.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 = {799F792B-A736-4CF5-9FFF-2576A1BBCF6E} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /librarySystemManagement/LibrarySystem/LibrarySystem.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /librarySystemManagement/LibrarySystem/Program.cs: -------------------------------------------------------------------------------- 1 | // See https://aka.ms/new-console-template for more information 2 | Console.WriteLine("Hello, World!"); 3 | -------------------------------------------------------------------------------- /librarySystemManagement/LibrarySystem/obj/LibrarySystem.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "/home/tonho/tonho/projects/conversa-fiada/librarySystemManagement/LibrarySystem/LibrarySystem.csproj": {} 5 | }, 6 | "projects": { 7 | "/home/tonho/tonho/projects/conversa-fiada/librarySystemManagement/LibrarySystem/LibrarySystem.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "/home/tonho/tonho/projects/conversa-fiada/librarySystemManagement/LibrarySystem/LibrarySystem.csproj", 11 | "projectName": "LibrarySystem", 12 | "projectPath": "/home/tonho/tonho/projects/conversa-fiada/librarySystemManagement/LibrarySystem/LibrarySystem.csproj", 13 | "packagesPath": "/home/tonho/.nuget/packages/", 14 | "outputPath": "/home/tonho/tonho/projects/conversa-fiada/librarySystemManagement/LibrarySystem/obj/", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "/home/tonho/.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.105/PortableRuntimeIdentifierGraph.json" 57 | } 58 | } 59 | } 60 | } 61 | } -------------------------------------------------------------------------------- /librarySystemManagement/LibrarySystem/obj/LibrarySystem.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | /home/tonho/.nuget/packages/ 8 | /home/tonho/.nuget/packages/ 9 | PackageReference 10 | 6.8.1 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /librarySystemManagement/LibrarySystem/obj/LibrarySystem.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /librarySystemManagement/LibrarySystem/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/tonho/.nuget/packages/": {} 12 | }, 13 | "project": { 14 | "version": "1.0.0", 15 | "restore": { 16 | "projectUniqueName": "/home/tonho/tonho/projects/conversa-fiada/librarySystemManagement/LibrarySystem/LibrarySystem.csproj", 17 | "projectName": "LibrarySystem", 18 | "projectPath": "/home/tonho/tonho/projects/conversa-fiada/librarySystemManagement/LibrarySystem/LibrarySystem.csproj", 19 | "packagesPath": "/home/tonho/.nuget/packages/", 20 | "outputPath": "/home/tonho/tonho/projects/conversa-fiada/librarySystemManagement/LibrarySystem/obj/", 21 | "projectStyle": "PackageReference", 22 | "configFilePaths": [ 23 | "/home/tonho/.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.105/PortableRuntimeIdentifierGraph.json" 63 | } 64 | } 65 | } 66 | } -------------------------------------------------------------------------------- /librarySystemManagement/LibrarySystem/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "9Z7ZYa7xrtoa3INJRzJCT/d6ger5OjlLqQbXNTddNTYFCOMoqnlIyuXrJ+iwOB49QdFVl873OUlVMwKcMi2wvg==", 4 | "success": true, 5 | "projectFilePath": "/home/tonho/tonho/projects/conversa-fiada/librarySystemManagement/LibrarySystem/LibrarySystem.csproj", 6 | "expectedPackageFiles": [], 7 | "logs": [] 8 | } --------------------------------------------------------------------------------