├── .vs └── MeuPrimeiroProj │ └── v16 │ ├── .suo │ └── TestStore │ └── 0 │ ├── 000.testlog │ └── testlog.manifest ├── ClasseObjeto ├── ClasseObjeto.csproj ├── Doguinho.cs ├── Program.cs ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ClasseObjeto.deps.json │ │ ├── ClasseObjeto.dll │ │ ├── ClasseObjeto.exe │ │ ├── ClasseObjeto.pdb │ │ ├── ClasseObjeto.runtimeconfig.dev.json │ │ └── ClasseObjeto.runtimeconfig.json └── obj │ ├── ClasseObjeto.csproj.nuget.dgspec.json │ ├── ClasseObjeto.csproj.nuget.g.props │ ├── ClasseObjeto.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ClasseObjeto.AssemblyInfo.cs │ │ ├── ClasseObjeto.AssemblyInfoInputs.cache │ │ ├── ClasseObjeto.assets.cache │ │ ├── ClasseObjeto.csproj.CoreCompileInputs.cache │ │ ├── ClasseObjeto.csproj.FileListAbsolute.txt │ │ ├── ClasseObjeto.csprojAssemblyReference.cache │ │ ├── ClasseObjeto.dll │ │ ├── ClasseObjeto.exe │ │ ├── ClasseObjeto.genruntimeconfig.cache │ │ └── ClasseObjeto.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── Colecoes ├── Colecoes.csproj ├── Program.cs ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Colecoes.deps.json │ │ ├── Colecoes.dll │ │ ├── Colecoes.exe │ │ ├── Colecoes.pdb │ │ ├── Colecoes.runtimeconfig.dev.json │ │ └── Colecoes.runtimeconfig.json └── obj │ ├── Colecoes.csproj.nuget.dgspec.json │ ├── Colecoes.csproj.nuget.g.props │ ├── Colecoes.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── Colecoes.AssemblyInfo.cs │ │ ├── Colecoes.AssemblyInfoInputs.cache │ │ ├── Colecoes.assets.cache │ │ ├── Colecoes.csproj.CoreCompileInputs.cache │ │ ├── Colecoes.csproj.FileListAbsolute.txt │ │ ├── Colecoes.csprojAssemblyReference.cache │ │ ├── Colecoes.dll │ │ ├── Colecoes.exe │ │ ├── Colecoes.genruntimeconfig.cache │ │ └── Colecoes.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── CondicionaisELoops ├── CondicionaisELoops.csproj ├── Program.cs ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── CondicionaisELoops.deps.json │ │ ├── CondicionaisELoops.dll │ │ ├── CondicionaisELoops.exe │ │ ├── CondicionaisELoops.pdb │ │ ├── CondicionaisELoops.runtimeconfig.dev.json │ │ └── CondicionaisELoops.runtimeconfig.json └── obj │ ├── CondicionaisELoops.csproj.nuget.dgspec.json │ ├── CondicionaisELoops.csproj.nuget.g.props │ ├── CondicionaisELoops.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── CondicionaisELoops.AssemblyInfo.cs │ │ ├── CondicionaisELoops.AssemblyInfoInputs.cache │ │ ├── CondicionaisELoops.assets.cache │ │ ├── CondicionaisELoops.csproj.CoreCompileInputs.cache │ │ ├── CondicionaisELoops.csproj.FileListAbsolute.txt │ │ ├── CondicionaisELoops.csprojAssemblyReference.cache │ │ ├── CondicionaisELoops.dll │ │ ├── CondicionaisELoops.exe │ │ ├── CondicionaisELoops.genruntimeconfig.cache │ │ └── CondicionaisELoops.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── Conversao ├── Conversao.csproj ├── Program.cs ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Conversao.deps.json │ │ ├── Conversao.dll │ │ ├── Conversao.exe │ │ ├── Conversao.pdb │ │ ├── Conversao.runtimeconfig.dev.json │ │ └── Conversao.runtimeconfig.json └── obj │ ├── Conversao.csproj.nuget.dgspec.json │ ├── Conversao.csproj.nuget.g.props │ ├── Conversao.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── Conversao.AssemblyInfo.cs │ │ ├── Conversao.AssemblyInfoInputs.cache │ │ ├── Conversao.assets.cache │ │ ├── Conversao.csproj.CoreCompileInputs.cache │ │ ├── Conversao.csproj.FileListAbsolute.txt │ │ ├── Conversao.csprojAssemblyReference.cache │ │ ├── Conversao.dll │ │ ├── Conversao.exe │ │ ├── Conversao.genruntimeconfig.cache │ │ └── Conversao.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── Generics ├── CalculoGenerico.cs ├── CarroUsado.cs ├── DesenvolvimentoDeSoftware.cs ├── Generics.csproj ├── ICalculoValor.cs ├── KiloBuffet.cs ├── MeuExtensionMethod.cs ├── Program.cs ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Generics.deps.json │ │ ├── Generics.dll │ │ ├── Generics.exe │ │ ├── Generics.pdb │ │ ├── Generics.runtimeconfig.dev.json │ │ └── Generics.runtimeconfig.json └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── Generics.AssemblyInfo.cs │ │ ├── Generics.AssemblyInfoInputs.cache │ │ ├── Generics.assets.cache │ │ ├── Generics.csproj.CoreCompileInputs.cache │ │ ├── Generics.csproj.FileListAbsolute.txt │ │ ├── Generics.csprojAssemblyReference.cache │ │ ├── Generics.dll │ │ ├── Generics.exe │ │ ├── Generics.genruntimeconfig.cache │ │ └── Generics.pdb │ ├── Generics.csproj.nuget.dgspec.json │ ├── Generics.csproj.nuget.g.props │ ├── Generics.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── Heranca ├── Adulto.cs ├── Calculo.cs ├── CriancaPequena.cs ├── Heranca.csproj ├── Pessoa.cs ├── Program.cs ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Heranca.deps.json │ │ ├── Heranca.dll │ │ ├── Heranca.exe │ │ ├── Heranca.pdb │ │ ├── Heranca.runtimeconfig.dev.json │ │ ├── Heranca.runtimeconfig.json │ │ ├── ModificadorAcesso.dll │ │ ├── ModificadorAcesso.exe │ │ └── ModificadorAcesso.pdb └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── Heranca.AssemblyInfo.cs │ │ ├── Heranca.AssemblyInfoInputs.cache │ │ ├── Heranca.assets.cache │ │ ├── Heranca.csproj.CopyComplete │ │ ├── Heranca.csproj.CoreCompileInputs.cache │ │ ├── Heranca.csproj.FileListAbsolute.txt │ │ ├── Heranca.csprojAssemblyReference.cache │ │ ├── Heranca.dll │ │ ├── Heranca.exe │ │ ├── Heranca.genruntimeconfig.cache │ │ └── Heranca.pdb │ ├── Heranca.csproj.nuget.dgspec.json │ ├── Heranca.csproj.nuget.g.props │ ├── Heranca.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── Interfaces ├── Carro.cs ├── Gato.cs ├── ISom.cs ├── Interfaces.csproj ├── Program.cs ├── Ventilador.cs ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Interfaces.deps.json │ │ ├── Interfaces.dll │ │ ├── Interfaces.exe │ │ ├── Interfaces.pdb │ │ ├── Interfaces.runtimeconfig.dev.json │ │ └── Interfaces.runtimeconfig.json └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── Interfaces.AssemblyInfo.cs │ │ ├── Interfaces.AssemblyInfoInputs.cache │ │ ├── Interfaces.assets.cache │ │ ├── Interfaces.csproj.CoreCompileInputs.cache │ │ ├── Interfaces.csproj.FileListAbsolute.txt │ │ ├── Interfaces.csprojAssemblyReference.cache │ │ ├── Interfaces.dll │ │ ├── Interfaces.exe │ │ ├── Interfaces.genruntimeconfig.cache │ │ └── Interfaces.pdb │ ├── Interfaces.csproj.nuget.dgspec.json │ ├── Interfaces.csproj.nuget.g.props │ ├── Interfaces.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── LinqLambda ├── Consultas │ ├── ConsultasLambdas.cs │ └── ConsultasLinq.cs ├── LinqLambda.csproj ├── Modelagem │ ├── Aluno.cs │ ├── Curso.cs │ ├── Pessoa.cs │ ├── Professor.cs │ └── Turma.cs ├── PreenchimentoDeDados.cs ├── Program.cs ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── LinqLambda.deps.json │ │ ├── LinqLambda.dll │ │ ├── LinqLambda.exe │ │ ├── LinqLambda.pdb │ │ ├── LinqLambda.runtimeconfig.dev.json │ │ └── LinqLambda.runtimeconfig.json └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── LinqLambda.AssemblyInfo.cs │ │ ├── LinqLambda.AssemblyInfoInputs.cache │ │ ├── LinqLambda.assets.cache │ │ ├── LinqLambda.csproj.CoreCompileInputs.cache │ │ ├── LinqLambda.csproj.FileListAbsolute.txt │ │ ├── LinqLambda.csprojAssemblyReference.cache │ │ ├── LinqLambda.dll │ │ ├── LinqLambda.exe │ │ ├── LinqLambda.genruntimeconfig.cache │ │ └── LinqLambda.pdb │ ├── LinqLambda.csproj.nuget.dgspec.json │ ├── LinqLambda.csproj.nuget.g.props │ ├── LinqLambda.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── MeuPrimeiroProj.sln ├── MeuPrimeiroProj ├── MeuPrimeiroProj.csproj ├── Program.cs ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── MeuPrimeiroProj.deps.json │ │ ├── MeuPrimeiroProj.dll │ │ ├── MeuPrimeiroProj.exe │ │ ├── MeuPrimeiroProj.pdb │ │ ├── MeuPrimeiroProj.runtimeconfig.dev.json │ │ └── MeuPrimeiroProj.runtimeconfig.json └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── MeuPrimeiroProj.AssemblyInfo.cs │ │ ├── MeuPrimeiroProj.AssemblyInfoInputs.cache │ │ ├── MeuPrimeiroProj.assets.cache │ │ ├── MeuPrimeiroProj.csproj.CoreCompileInputs.cache │ │ ├── MeuPrimeiroProj.csproj.FileListAbsolute.txt │ │ ├── MeuPrimeiroProj.csprojAssemblyReference.cache │ │ ├── MeuPrimeiroProj.dll │ │ ├── MeuPrimeiroProj.exe │ │ ├── MeuPrimeiroProj.genruntimeconfig.cache │ │ └── MeuPrimeiroProj.pdb │ ├── MeuPrimeiroProj.csproj.nuget.dgspec.json │ ├── MeuPrimeiroProj.csproj.nuget.g.props │ ├── MeuPrimeiroProj.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── MeuPrimeiroTeste-xUnit ├── ClasseObjeto │ └── ClasseObjetoTest.cs ├── Generics │ └── GenericsTest.cs ├── MeuPrimeiroTeste-xUnit.csproj ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ClasseObjeto.dll │ │ ├── ClasseObjeto.exe │ │ ├── ClasseObjeto.pdb │ │ ├── Generics.dll │ │ ├── Generics.exe │ │ ├── Generics.pdb │ │ ├── MeuPrimeiroTeste-xUnit.deps.json │ │ ├── MeuPrimeiroTeste-xUnit.dll │ │ ├── MeuPrimeiroTeste-xUnit.pdb │ │ ├── MeuPrimeiroTeste-xUnit.runtimeconfig.dev.json │ │ ├── MeuPrimeiroTeste-xUnit.runtimeconfig.json │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.dll │ │ ├── Microsoft.TestPlatform.PlatformAbstractions.dll │ │ ├── Microsoft.TestPlatform.Utilities.dll │ │ ├── Microsoft.VisualStudio.CodeCoverage.Shim.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.ObjectModel.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── NuGet.Frameworks.dll │ │ ├── cs │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── de │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── es │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── fr │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── it │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── ja │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── ko │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── pl │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── pt-BR │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── ru │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── testhost.dll │ │ ├── tr │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── xunit.abstractions.dll │ │ ├── xunit.assert.dll │ │ ├── xunit.core.dll │ │ ├── xunit.execution.dotnet.dll │ │ ├── xunit.runner.reporters.netcoreapp10.dll │ │ ├── xunit.runner.utility.netcoreapp10.dll │ │ ├── xunit.runner.visualstudio.dotnetcore.testadapter.dll │ │ ├── zh-Hans │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ └── zh-Hant │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── MeuPrimeiroTeste-xUnit.AssemblyInfo.cs │ │ ├── MeuPrimeiroTeste-xUnit.AssemblyInfoInputs.cache │ │ ├── MeuPrimeiroTeste-xUnit.assets.cache │ │ ├── MeuPrimeiroTeste-xUnit.csproj.CopyComplete │ │ ├── MeuPrimeiroTeste-xUnit.csproj.CoreCompileInputs.cache │ │ ├── MeuPrimeiroTeste-xUnit.csproj.FileListAbsolute.txt │ │ ├── MeuPrimeiroTeste-xUnit.csprojAssemblyReference.cache │ │ ├── MeuPrimeiroTeste-xUnit.dll │ │ ├── MeuPrimeiroTeste-xUnit.genruntimeconfig.cache │ │ └── MeuPrimeiroTeste-xUnit.pdb │ ├── MeuPrimeiroTeste-xUnit.csproj.nuget.dgspec.json │ ├── MeuPrimeiroTeste-xUnit.csproj.nuget.g.props │ ├── MeuPrimeiroTeste-xUnit.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache └── ModificadorAcesso ├── ClasseInterna.cs ├── ClassePublica.cs ├── ModificadorAcesso.csproj ├── Program.cs ├── bin └── Debug │ └── netcoreapp3.1 │ ├── ModificadorAcesso.deps.json │ ├── ModificadorAcesso.dll │ ├── ModificadorAcesso.exe │ ├── ModificadorAcesso.pdb │ ├── ModificadorAcesso.runtimeconfig.dev.json │ └── ModificadorAcesso.runtimeconfig.json └── obj ├── Debug └── netcoreapp3.1 │ ├── ModificadorAcesso.AssemblyInfo.cs │ ├── ModificadorAcesso.AssemblyInfoInputs.cache │ ├── ModificadorAcesso.assets.cache │ ├── ModificadorAcesso.csproj.CoreCompileInputs.cache │ ├── ModificadorAcesso.csproj.FileListAbsolute.txt │ ├── ModificadorAcesso.csprojAssemblyReference.cache │ ├── ModificadorAcesso.dll │ ├── ModificadorAcesso.exe │ ├── ModificadorAcesso.genruntimeconfig.cache │ └── ModificadorAcesso.pdb ├── ModificadorAcesso.csproj.nuget.dgspec.json ├── ModificadorAcesso.csproj.nuget.g.props ├── ModificadorAcesso.csproj.nuget.g.targets ├── project.assets.json └── project.nuget.cache /.vs/MeuPrimeiroProj/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/.vs/MeuPrimeiroProj/v16/.suo -------------------------------------------------------------------------------- /.vs/MeuPrimeiroProj/v16/TestStore/0/000.testlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/.vs/MeuPrimeiroProj/v16/TestStore/0/000.testlog -------------------------------------------------------------------------------- /.vs/MeuPrimeiroProj/v16/TestStore/0/testlog.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/.vs/MeuPrimeiroProj/v16/TestStore/0/testlog.manifest -------------------------------------------------------------------------------- /ClasseObjeto/ClasseObjeto.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ClasseObjeto/ClasseObjeto.csproj -------------------------------------------------------------------------------- /ClasseObjeto/Doguinho.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ClasseObjeto/Doguinho.cs -------------------------------------------------------------------------------- /ClasseObjeto/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ClasseObjeto/Program.cs -------------------------------------------------------------------------------- /ClasseObjeto/bin/Debug/netcoreapp3.1/ClasseObjeto.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ClasseObjeto/bin/Debug/netcoreapp3.1/ClasseObjeto.deps.json -------------------------------------------------------------------------------- /ClasseObjeto/bin/Debug/netcoreapp3.1/ClasseObjeto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ClasseObjeto/bin/Debug/netcoreapp3.1/ClasseObjeto.dll -------------------------------------------------------------------------------- /ClasseObjeto/bin/Debug/netcoreapp3.1/ClasseObjeto.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ClasseObjeto/bin/Debug/netcoreapp3.1/ClasseObjeto.exe -------------------------------------------------------------------------------- /ClasseObjeto/bin/Debug/netcoreapp3.1/ClasseObjeto.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ClasseObjeto/bin/Debug/netcoreapp3.1/ClasseObjeto.pdb -------------------------------------------------------------------------------- /ClasseObjeto/bin/Debug/netcoreapp3.1/ClasseObjeto.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ClasseObjeto/bin/Debug/netcoreapp3.1/ClasseObjeto.runtimeconfig.dev.json -------------------------------------------------------------------------------- /ClasseObjeto/bin/Debug/netcoreapp3.1/ClasseObjeto.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ClasseObjeto/bin/Debug/netcoreapp3.1/ClasseObjeto.runtimeconfig.json -------------------------------------------------------------------------------- /ClasseObjeto/obj/ClasseObjeto.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ClasseObjeto/obj/ClasseObjeto.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /ClasseObjeto/obj/ClasseObjeto.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ClasseObjeto/obj/ClasseObjeto.csproj.nuget.g.props -------------------------------------------------------------------------------- /ClasseObjeto/obj/ClasseObjeto.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ClasseObjeto/obj/ClasseObjeto.csproj.nuget.g.targets -------------------------------------------------------------------------------- /ClasseObjeto/obj/Debug/netcoreapp3.1/ClasseObjeto.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ClasseObjeto/obj/Debug/netcoreapp3.1/ClasseObjeto.AssemblyInfo.cs -------------------------------------------------------------------------------- /ClasseObjeto/obj/Debug/netcoreapp3.1/ClasseObjeto.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 83d4018600c42f06eb896804e50af5eaf2f7e621 2 | -------------------------------------------------------------------------------- /ClasseObjeto/obj/Debug/netcoreapp3.1/ClasseObjeto.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ClasseObjeto/obj/Debug/netcoreapp3.1/ClasseObjeto.assets.cache -------------------------------------------------------------------------------- /ClasseObjeto/obj/Debug/netcoreapp3.1/ClasseObjeto.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 95983d98cf282f7a93dc0ead4f2c6e6f04819019 2 | -------------------------------------------------------------------------------- /ClasseObjeto/obj/Debug/netcoreapp3.1/ClasseObjeto.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ClasseObjeto/obj/Debug/netcoreapp3.1/ClasseObjeto.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ClasseObjeto/obj/Debug/netcoreapp3.1/ClasseObjeto.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ClasseObjeto/obj/Debug/netcoreapp3.1/ClasseObjeto.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /ClasseObjeto/obj/Debug/netcoreapp3.1/ClasseObjeto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ClasseObjeto/obj/Debug/netcoreapp3.1/ClasseObjeto.dll -------------------------------------------------------------------------------- /ClasseObjeto/obj/Debug/netcoreapp3.1/ClasseObjeto.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ClasseObjeto/obj/Debug/netcoreapp3.1/ClasseObjeto.exe -------------------------------------------------------------------------------- /ClasseObjeto/obj/Debug/netcoreapp3.1/ClasseObjeto.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /ClasseObjeto/obj/Debug/netcoreapp3.1/ClasseObjeto.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ClasseObjeto/obj/Debug/netcoreapp3.1/ClasseObjeto.pdb -------------------------------------------------------------------------------- /ClasseObjeto/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ClasseObjeto/obj/project.assets.json -------------------------------------------------------------------------------- /ClasseObjeto/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ClasseObjeto/obj/project.nuget.cache -------------------------------------------------------------------------------- /Colecoes/Colecoes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Colecoes/Colecoes.csproj -------------------------------------------------------------------------------- /Colecoes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Colecoes/Program.cs -------------------------------------------------------------------------------- /Colecoes/bin/Debug/netcoreapp3.1/Colecoes.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Colecoes/bin/Debug/netcoreapp3.1/Colecoes.deps.json -------------------------------------------------------------------------------- /Colecoes/bin/Debug/netcoreapp3.1/Colecoes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Colecoes/bin/Debug/netcoreapp3.1/Colecoes.dll -------------------------------------------------------------------------------- /Colecoes/bin/Debug/netcoreapp3.1/Colecoes.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Colecoes/bin/Debug/netcoreapp3.1/Colecoes.exe -------------------------------------------------------------------------------- /Colecoes/bin/Debug/netcoreapp3.1/Colecoes.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Colecoes/bin/Debug/netcoreapp3.1/Colecoes.pdb -------------------------------------------------------------------------------- /Colecoes/bin/Debug/netcoreapp3.1/Colecoes.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Colecoes/bin/Debug/netcoreapp3.1/Colecoes.runtimeconfig.dev.json -------------------------------------------------------------------------------- /Colecoes/bin/Debug/netcoreapp3.1/Colecoes.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Colecoes/bin/Debug/netcoreapp3.1/Colecoes.runtimeconfig.json -------------------------------------------------------------------------------- /Colecoes/obj/Colecoes.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Colecoes/obj/Colecoes.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Colecoes/obj/Colecoes.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Colecoes/obj/Colecoes.csproj.nuget.g.props -------------------------------------------------------------------------------- /Colecoes/obj/Colecoes.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Colecoes/obj/Colecoes.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Colecoes/obj/Debug/netcoreapp3.1/Colecoes.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Colecoes/obj/Debug/netcoreapp3.1/Colecoes.AssemblyInfo.cs -------------------------------------------------------------------------------- /Colecoes/obj/Debug/netcoreapp3.1/Colecoes.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 8499074f36790a1b4a69de344891ca7d053a4091 2 | -------------------------------------------------------------------------------- /Colecoes/obj/Debug/netcoreapp3.1/Colecoes.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Colecoes/obj/Debug/netcoreapp3.1/Colecoes.assets.cache -------------------------------------------------------------------------------- /Colecoes/obj/Debug/netcoreapp3.1/Colecoes.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a3b72c46768304117f07b173feb7d576325c21c9 2 | -------------------------------------------------------------------------------- /Colecoes/obj/Debug/netcoreapp3.1/Colecoes.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Colecoes/obj/Debug/netcoreapp3.1/Colecoes.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Colecoes/obj/Debug/netcoreapp3.1/Colecoes.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Colecoes/obj/Debug/netcoreapp3.1/Colecoes.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Colecoes/obj/Debug/netcoreapp3.1/Colecoes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Colecoes/obj/Debug/netcoreapp3.1/Colecoes.dll -------------------------------------------------------------------------------- /Colecoes/obj/Debug/netcoreapp3.1/Colecoes.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Colecoes/obj/Debug/netcoreapp3.1/Colecoes.exe -------------------------------------------------------------------------------- /Colecoes/obj/Debug/netcoreapp3.1/Colecoes.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /Colecoes/obj/Debug/netcoreapp3.1/Colecoes.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Colecoes/obj/Debug/netcoreapp3.1/Colecoes.pdb -------------------------------------------------------------------------------- /Colecoes/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Colecoes/obj/project.assets.json -------------------------------------------------------------------------------- /Colecoes/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Colecoes/obj/project.nuget.cache -------------------------------------------------------------------------------- /CondicionaisELoops/CondicionaisELoops.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/CondicionaisELoops/CondicionaisELoops.csproj -------------------------------------------------------------------------------- /CondicionaisELoops/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/CondicionaisELoops/Program.cs -------------------------------------------------------------------------------- /CondicionaisELoops/bin/Debug/netcoreapp3.1/CondicionaisELoops.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/CondicionaisELoops/bin/Debug/netcoreapp3.1/CondicionaisELoops.deps.json -------------------------------------------------------------------------------- /CondicionaisELoops/bin/Debug/netcoreapp3.1/CondicionaisELoops.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/CondicionaisELoops/bin/Debug/netcoreapp3.1/CondicionaisELoops.dll -------------------------------------------------------------------------------- /CondicionaisELoops/bin/Debug/netcoreapp3.1/CondicionaisELoops.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/CondicionaisELoops/bin/Debug/netcoreapp3.1/CondicionaisELoops.exe -------------------------------------------------------------------------------- /CondicionaisELoops/bin/Debug/netcoreapp3.1/CondicionaisELoops.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/CondicionaisELoops/bin/Debug/netcoreapp3.1/CondicionaisELoops.pdb -------------------------------------------------------------------------------- /CondicionaisELoops/bin/Debug/netcoreapp3.1/CondicionaisELoops.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/CondicionaisELoops/bin/Debug/netcoreapp3.1/CondicionaisELoops.runtimeconfig.dev.json -------------------------------------------------------------------------------- /CondicionaisELoops/bin/Debug/netcoreapp3.1/CondicionaisELoops.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/CondicionaisELoops/bin/Debug/netcoreapp3.1/CondicionaisELoops.runtimeconfig.json -------------------------------------------------------------------------------- /CondicionaisELoops/obj/CondicionaisELoops.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/CondicionaisELoops/obj/CondicionaisELoops.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /CondicionaisELoops/obj/CondicionaisELoops.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/CondicionaisELoops/obj/CondicionaisELoops.csproj.nuget.g.props -------------------------------------------------------------------------------- /CondicionaisELoops/obj/CondicionaisELoops.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/CondicionaisELoops/obj/CondicionaisELoops.csproj.nuget.g.targets -------------------------------------------------------------------------------- /CondicionaisELoops/obj/Debug/netcoreapp3.1/CondicionaisELoops.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/CondicionaisELoops/obj/Debug/netcoreapp3.1/CondicionaisELoops.AssemblyInfo.cs -------------------------------------------------------------------------------- /CondicionaisELoops/obj/Debug/netcoreapp3.1/CondicionaisELoops.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 6c85659aff031cc04fc425b61c640ef82f44d590 2 | -------------------------------------------------------------------------------- /CondicionaisELoops/obj/Debug/netcoreapp3.1/CondicionaisELoops.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/CondicionaisELoops/obj/Debug/netcoreapp3.1/CondicionaisELoops.assets.cache -------------------------------------------------------------------------------- /CondicionaisELoops/obj/Debug/netcoreapp3.1/CondicionaisELoops.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a3b72c46768304117f07b173feb7d576325c21c9 2 | -------------------------------------------------------------------------------- /CondicionaisELoops/obj/Debug/netcoreapp3.1/CondicionaisELoops.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/CondicionaisELoops/obj/Debug/netcoreapp3.1/CondicionaisELoops.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /CondicionaisELoops/obj/Debug/netcoreapp3.1/CondicionaisELoops.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/CondicionaisELoops/obj/Debug/netcoreapp3.1/CondicionaisELoops.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /CondicionaisELoops/obj/Debug/netcoreapp3.1/CondicionaisELoops.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/CondicionaisELoops/obj/Debug/netcoreapp3.1/CondicionaisELoops.dll -------------------------------------------------------------------------------- /CondicionaisELoops/obj/Debug/netcoreapp3.1/CondicionaisELoops.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/CondicionaisELoops/obj/Debug/netcoreapp3.1/CondicionaisELoops.exe -------------------------------------------------------------------------------- /CondicionaisELoops/obj/Debug/netcoreapp3.1/CondicionaisELoops.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /CondicionaisELoops/obj/Debug/netcoreapp3.1/CondicionaisELoops.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/CondicionaisELoops/obj/Debug/netcoreapp3.1/CondicionaisELoops.pdb -------------------------------------------------------------------------------- /CondicionaisELoops/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/CondicionaisELoops/obj/project.assets.json -------------------------------------------------------------------------------- /CondicionaisELoops/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/CondicionaisELoops/obj/project.nuget.cache -------------------------------------------------------------------------------- /Conversao/Conversao.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Conversao/Conversao.csproj -------------------------------------------------------------------------------- /Conversao/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Conversao/Program.cs -------------------------------------------------------------------------------- /Conversao/bin/Debug/netcoreapp3.1/Conversao.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Conversao/bin/Debug/netcoreapp3.1/Conversao.deps.json -------------------------------------------------------------------------------- /Conversao/bin/Debug/netcoreapp3.1/Conversao.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Conversao/bin/Debug/netcoreapp3.1/Conversao.dll -------------------------------------------------------------------------------- /Conversao/bin/Debug/netcoreapp3.1/Conversao.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Conversao/bin/Debug/netcoreapp3.1/Conversao.exe -------------------------------------------------------------------------------- /Conversao/bin/Debug/netcoreapp3.1/Conversao.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Conversao/bin/Debug/netcoreapp3.1/Conversao.pdb -------------------------------------------------------------------------------- /Conversao/bin/Debug/netcoreapp3.1/Conversao.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Conversao/bin/Debug/netcoreapp3.1/Conversao.runtimeconfig.dev.json -------------------------------------------------------------------------------- /Conversao/bin/Debug/netcoreapp3.1/Conversao.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Conversao/bin/Debug/netcoreapp3.1/Conversao.runtimeconfig.json -------------------------------------------------------------------------------- /Conversao/obj/Conversao.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Conversao/obj/Conversao.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Conversao/obj/Conversao.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Conversao/obj/Conversao.csproj.nuget.g.props -------------------------------------------------------------------------------- /Conversao/obj/Conversao.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Conversao/obj/Conversao.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Conversao/obj/Debug/netcoreapp3.1/Conversao.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Conversao/obj/Debug/netcoreapp3.1/Conversao.AssemblyInfo.cs -------------------------------------------------------------------------------- /Conversao/obj/Debug/netcoreapp3.1/Conversao.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Conversao/obj/Debug/netcoreapp3.1/Conversao.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /Conversao/obj/Debug/netcoreapp3.1/Conversao.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Conversao/obj/Debug/netcoreapp3.1/Conversao.assets.cache -------------------------------------------------------------------------------- /Conversao/obj/Debug/netcoreapp3.1/Conversao.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a3b72c46768304117f07b173feb7d576325c21c9 2 | -------------------------------------------------------------------------------- /Conversao/obj/Debug/netcoreapp3.1/Conversao.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Conversao/obj/Debug/netcoreapp3.1/Conversao.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Conversao/obj/Debug/netcoreapp3.1/Conversao.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Conversao/obj/Debug/netcoreapp3.1/Conversao.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Conversao/obj/Debug/netcoreapp3.1/Conversao.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Conversao/obj/Debug/netcoreapp3.1/Conversao.dll -------------------------------------------------------------------------------- /Conversao/obj/Debug/netcoreapp3.1/Conversao.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Conversao/obj/Debug/netcoreapp3.1/Conversao.exe -------------------------------------------------------------------------------- /Conversao/obj/Debug/netcoreapp3.1/Conversao.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /Conversao/obj/Debug/netcoreapp3.1/Conversao.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Conversao/obj/Debug/netcoreapp3.1/Conversao.pdb -------------------------------------------------------------------------------- /Conversao/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Conversao/obj/project.assets.json -------------------------------------------------------------------------------- /Conversao/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Conversao/obj/project.nuget.cache -------------------------------------------------------------------------------- /Generics/CalculoGenerico.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Generics/CalculoGenerico.cs -------------------------------------------------------------------------------- /Generics/CarroUsado.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Generics/CarroUsado.cs -------------------------------------------------------------------------------- /Generics/DesenvolvimentoDeSoftware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Generics/DesenvolvimentoDeSoftware.cs -------------------------------------------------------------------------------- /Generics/Generics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Generics/Generics.csproj -------------------------------------------------------------------------------- /Generics/ICalculoValor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Generics/ICalculoValor.cs -------------------------------------------------------------------------------- /Generics/KiloBuffet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Generics/KiloBuffet.cs -------------------------------------------------------------------------------- /Generics/MeuExtensionMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Generics/MeuExtensionMethod.cs -------------------------------------------------------------------------------- /Generics/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Generics/Program.cs -------------------------------------------------------------------------------- /Generics/bin/Debug/netcoreapp3.1/Generics.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Generics/bin/Debug/netcoreapp3.1/Generics.deps.json -------------------------------------------------------------------------------- /Generics/bin/Debug/netcoreapp3.1/Generics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Generics/bin/Debug/netcoreapp3.1/Generics.dll -------------------------------------------------------------------------------- /Generics/bin/Debug/netcoreapp3.1/Generics.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Generics/bin/Debug/netcoreapp3.1/Generics.exe -------------------------------------------------------------------------------- /Generics/bin/Debug/netcoreapp3.1/Generics.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Generics/bin/Debug/netcoreapp3.1/Generics.pdb -------------------------------------------------------------------------------- /Generics/bin/Debug/netcoreapp3.1/Generics.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Generics/bin/Debug/netcoreapp3.1/Generics.runtimeconfig.dev.json -------------------------------------------------------------------------------- /Generics/bin/Debug/netcoreapp3.1/Generics.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Generics/bin/Debug/netcoreapp3.1/Generics.runtimeconfig.json -------------------------------------------------------------------------------- /Generics/obj/Debug/netcoreapp3.1/Generics.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Generics/obj/Debug/netcoreapp3.1/Generics.AssemblyInfo.cs -------------------------------------------------------------------------------- /Generics/obj/Debug/netcoreapp3.1/Generics.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | e4f1b5899e32e90ce3f740dd24c108191c017c86 2 | -------------------------------------------------------------------------------- /Generics/obj/Debug/netcoreapp3.1/Generics.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Generics/obj/Debug/netcoreapp3.1/Generics.assets.cache -------------------------------------------------------------------------------- /Generics/obj/Debug/netcoreapp3.1/Generics.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 04e331d5f02ca426e3d804063e46318ffa290484 2 | -------------------------------------------------------------------------------- /Generics/obj/Debug/netcoreapp3.1/Generics.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Generics/obj/Debug/netcoreapp3.1/Generics.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Generics/obj/Debug/netcoreapp3.1/Generics.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Generics/obj/Debug/netcoreapp3.1/Generics.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Generics/obj/Debug/netcoreapp3.1/Generics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Generics/obj/Debug/netcoreapp3.1/Generics.dll -------------------------------------------------------------------------------- /Generics/obj/Debug/netcoreapp3.1/Generics.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Generics/obj/Debug/netcoreapp3.1/Generics.exe -------------------------------------------------------------------------------- /Generics/obj/Debug/netcoreapp3.1/Generics.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /Generics/obj/Debug/netcoreapp3.1/Generics.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Generics/obj/Debug/netcoreapp3.1/Generics.pdb -------------------------------------------------------------------------------- /Generics/obj/Generics.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Generics/obj/Generics.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Generics/obj/Generics.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Generics/obj/Generics.csproj.nuget.g.props -------------------------------------------------------------------------------- /Generics/obj/Generics.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Generics/obj/Generics.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Generics/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Generics/obj/project.assets.json -------------------------------------------------------------------------------- /Generics/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Generics/obj/project.nuget.cache -------------------------------------------------------------------------------- /Heranca/Adulto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Heranca/Adulto.cs -------------------------------------------------------------------------------- /Heranca/Calculo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Heranca/Calculo.cs -------------------------------------------------------------------------------- /Heranca/CriancaPequena.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Heranca/CriancaPequena.cs -------------------------------------------------------------------------------- /Heranca/Heranca.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Heranca/Heranca.csproj -------------------------------------------------------------------------------- /Heranca/Pessoa.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Heranca/Pessoa.cs -------------------------------------------------------------------------------- /Heranca/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Heranca/Program.cs -------------------------------------------------------------------------------- /Heranca/bin/Debug/netcoreapp3.1/Heranca.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Heranca/bin/Debug/netcoreapp3.1/Heranca.deps.json -------------------------------------------------------------------------------- /Heranca/bin/Debug/netcoreapp3.1/Heranca.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Heranca/bin/Debug/netcoreapp3.1/Heranca.dll -------------------------------------------------------------------------------- /Heranca/bin/Debug/netcoreapp3.1/Heranca.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Heranca/bin/Debug/netcoreapp3.1/Heranca.exe -------------------------------------------------------------------------------- /Heranca/bin/Debug/netcoreapp3.1/Heranca.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Heranca/bin/Debug/netcoreapp3.1/Heranca.pdb -------------------------------------------------------------------------------- /Heranca/bin/Debug/netcoreapp3.1/Heranca.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Heranca/bin/Debug/netcoreapp3.1/Heranca.runtimeconfig.dev.json -------------------------------------------------------------------------------- /Heranca/bin/Debug/netcoreapp3.1/Heranca.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Heranca/bin/Debug/netcoreapp3.1/Heranca.runtimeconfig.json -------------------------------------------------------------------------------- /Heranca/bin/Debug/netcoreapp3.1/ModificadorAcesso.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Heranca/bin/Debug/netcoreapp3.1/ModificadorAcesso.dll -------------------------------------------------------------------------------- /Heranca/bin/Debug/netcoreapp3.1/ModificadorAcesso.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Heranca/bin/Debug/netcoreapp3.1/ModificadorAcesso.exe -------------------------------------------------------------------------------- /Heranca/bin/Debug/netcoreapp3.1/ModificadorAcesso.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Heranca/bin/Debug/netcoreapp3.1/ModificadorAcesso.pdb -------------------------------------------------------------------------------- /Heranca/obj/Debug/netcoreapp3.1/Heranca.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Heranca/obj/Debug/netcoreapp3.1/Heranca.AssemblyInfo.cs -------------------------------------------------------------------------------- /Heranca/obj/Debug/netcoreapp3.1/Heranca.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 17013060c815fd9954757a19dfa1cc47716f41a5 2 | -------------------------------------------------------------------------------- /Heranca/obj/Debug/netcoreapp3.1/Heranca.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Heranca/obj/Debug/netcoreapp3.1/Heranca.assets.cache -------------------------------------------------------------------------------- /Heranca/obj/Debug/netcoreapp3.1/Heranca.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Heranca/obj/Debug/netcoreapp3.1/Heranca.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | e4940af0742401fc12105b8ed96677a398b9d5b3 2 | -------------------------------------------------------------------------------- /Heranca/obj/Debug/netcoreapp3.1/Heranca.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Heranca/obj/Debug/netcoreapp3.1/Heranca.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Heranca/obj/Debug/netcoreapp3.1/Heranca.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Heranca/obj/Debug/netcoreapp3.1/Heranca.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Heranca/obj/Debug/netcoreapp3.1/Heranca.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Heranca/obj/Debug/netcoreapp3.1/Heranca.dll -------------------------------------------------------------------------------- /Heranca/obj/Debug/netcoreapp3.1/Heranca.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Heranca/obj/Debug/netcoreapp3.1/Heranca.exe -------------------------------------------------------------------------------- /Heranca/obj/Debug/netcoreapp3.1/Heranca.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /Heranca/obj/Debug/netcoreapp3.1/Heranca.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Heranca/obj/Debug/netcoreapp3.1/Heranca.pdb -------------------------------------------------------------------------------- /Heranca/obj/Heranca.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Heranca/obj/Heranca.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Heranca/obj/Heranca.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Heranca/obj/Heranca.csproj.nuget.g.props -------------------------------------------------------------------------------- /Heranca/obj/Heranca.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Heranca/obj/Heranca.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Heranca/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Heranca/obj/project.assets.json -------------------------------------------------------------------------------- /Heranca/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Heranca/obj/project.nuget.cache -------------------------------------------------------------------------------- /Interfaces/Carro.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Interfaces/Carro.cs -------------------------------------------------------------------------------- /Interfaces/Gato.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Interfaces/Gato.cs -------------------------------------------------------------------------------- /Interfaces/ISom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Interfaces/ISom.cs -------------------------------------------------------------------------------- /Interfaces/Interfaces.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Interfaces/Interfaces.csproj -------------------------------------------------------------------------------- /Interfaces/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Interfaces/Program.cs -------------------------------------------------------------------------------- /Interfaces/Ventilador.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Interfaces/Ventilador.cs -------------------------------------------------------------------------------- /Interfaces/bin/Debug/netcoreapp3.1/Interfaces.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Interfaces/bin/Debug/netcoreapp3.1/Interfaces.deps.json -------------------------------------------------------------------------------- /Interfaces/bin/Debug/netcoreapp3.1/Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Interfaces/bin/Debug/netcoreapp3.1/Interfaces.dll -------------------------------------------------------------------------------- /Interfaces/bin/Debug/netcoreapp3.1/Interfaces.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Interfaces/bin/Debug/netcoreapp3.1/Interfaces.exe -------------------------------------------------------------------------------- /Interfaces/bin/Debug/netcoreapp3.1/Interfaces.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Interfaces/bin/Debug/netcoreapp3.1/Interfaces.pdb -------------------------------------------------------------------------------- /Interfaces/bin/Debug/netcoreapp3.1/Interfaces.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Interfaces/bin/Debug/netcoreapp3.1/Interfaces.runtimeconfig.dev.json -------------------------------------------------------------------------------- /Interfaces/bin/Debug/netcoreapp3.1/Interfaces.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Interfaces/bin/Debug/netcoreapp3.1/Interfaces.runtimeconfig.json -------------------------------------------------------------------------------- /Interfaces/obj/Debug/netcoreapp3.1/Interfaces.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Interfaces/obj/Debug/netcoreapp3.1/Interfaces.AssemblyInfo.cs -------------------------------------------------------------------------------- /Interfaces/obj/Debug/netcoreapp3.1/Interfaces.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 506ac7d8e2649e469320bbb97b1f68b9ae87fd47 2 | -------------------------------------------------------------------------------- /Interfaces/obj/Debug/netcoreapp3.1/Interfaces.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Interfaces/obj/Debug/netcoreapp3.1/Interfaces.assets.cache -------------------------------------------------------------------------------- /Interfaces/obj/Debug/netcoreapp3.1/Interfaces.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 33a46a6ccab5756f3010d7832c869d8440a86d34 2 | -------------------------------------------------------------------------------- /Interfaces/obj/Debug/netcoreapp3.1/Interfaces.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Interfaces/obj/Debug/netcoreapp3.1/Interfaces.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Interfaces/obj/Debug/netcoreapp3.1/Interfaces.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Interfaces/obj/Debug/netcoreapp3.1/Interfaces.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Interfaces/obj/Debug/netcoreapp3.1/Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Interfaces/obj/Debug/netcoreapp3.1/Interfaces.dll -------------------------------------------------------------------------------- /Interfaces/obj/Debug/netcoreapp3.1/Interfaces.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Interfaces/obj/Debug/netcoreapp3.1/Interfaces.exe -------------------------------------------------------------------------------- /Interfaces/obj/Debug/netcoreapp3.1/Interfaces.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /Interfaces/obj/Debug/netcoreapp3.1/Interfaces.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Interfaces/obj/Debug/netcoreapp3.1/Interfaces.pdb -------------------------------------------------------------------------------- /Interfaces/obj/Interfaces.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Interfaces/obj/Interfaces.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Interfaces/obj/Interfaces.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Interfaces/obj/Interfaces.csproj.nuget.g.props -------------------------------------------------------------------------------- /Interfaces/obj/Interfaces.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Interfaces/obj/Interfaces.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Interfaces/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Interfaces/obj/project.assets.json -------------------------------------------------------------------------------- /Interfaces/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/Interfaces/obj/project.nuget.cache -------------------------------------------------------------------------------- /LinqLambda/Consultas/ConsultasLambdas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/LinqLambda/Consultas/ConsultasLambdas.cs -------------------------------------------------------------------------------- /LinqLambda/Consultas/ConsultasLinq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/LinqLambda/Consultas/ConsultasLinq.cs -------------------------------------------------------------------------------- /LinqLambda/LinqLambda.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/LinqLambda/LinqLambda.csproj -------------------------------------------------------------------------------- /LinqLambda/Modelagem/Aluno.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/LinqLambda/Modelagem/Aluno.cs -------------------------------------------------------------------------------- /LinqLambda/Modelagem/Curso.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/LinqLambda/Modelagem/Curso.cs -------------------------------------------------------------------------------- /LinqLambda/Modelagem/Pessoa.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/LinqLambda/Modelagem/Pessoa.cs -------------------------------------------------------------------------------- /LinqLambda/Modelagem/Professor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/LinqLambda/Modelagem/Professor.cs -------------------------------------------------------------------------------- /LinqLambda/Modelagem/Turma.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/LinqLambda/Modelagem/Turma.cs -------------------------------------------------------------------------------- /LinqLambda/PreenchimentoDeDados.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/LinqLambda/PreenchimentoDeDados.cs -------------------------------------------------------------------------------- /LinqLambda/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/LinqLambda/Program.cs -------------------------------------------------------------------------------- /LinqLambda/bin/Debug/netcoreapp3.1/LinqLambda.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/LinqLambda/bin/Debug/netcoreapp3.1/LinqLambda.deps.json -------------------------------------------------------------------------------- /LinqLambda/bin/Debug/netcoreapp3.1/LinqLambda.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/LinqLambda/bin/Debug/netcoreapp3.1/LinqLambda.dll -------------------------------------------------------------------------------- /LinqLambda/bin/Debug/netcoreapp3.1/LinqLambda.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/LinqLambda/bin/Debug/netcoreapp3.1/LinqLambda.exe -------------------------------------------------------------------------------- /LinqLambda/bin/Debug/netcoreapp3.1/LinqLambda.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/LinqLambda/bin/Debug/netcoreapp3.1/LinqLambda.pdb -------------------------------------------------------------------------------- /LinqLambda/bin/Debug/netcoreapp3.1/LinqLambda.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/LinqLambda/bin/Debug/netcoreapp3.1/LinqLambda.runtimeconfig.dev.json -------------------------------------------------------------------------------- /LinqLambda/bin/Debug/netcoreapp3.1/LinqLambda.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/LinqLambda/bin/Debug/netcoreapp3.1/LinqLambda.runtimeconfig.json -------------------------------------------------------------------------------- /LinqLambda/obj/Debug/netcoreapp3.1/LinqLambda.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/LinqLambda/obj/Debug/netcoreapp3.1/LinqLambda.AssemblyInfo.cs -------------------------------------------------------------------------------- /LinqLambda/obj/Debug/netcoreapp3.1/LinqLambda.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 1d489c718d9036eda1d50aab80d9cbfe57fc0ab5 2 | -------------------------------------------------------------------------------- /LinqLambda/obj/Debug/netcoreapp3.1/LinqLambda.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/LinqLambda/obj/Debug/netcoreapp3.1/LinqLambda.assets.cache -------------------------------------------------------------------------------- /LinqLambda/obj/Debug/netcoreapp3.1/LinqLambda.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | b7c4aa2f6f69b20273159d434a933ae08577cc25 2 | -------------------------------------------------------------------------------- /LinqLambda/obj/Debug/netcoreapp3.1/LinqLambda.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/LinqLambda/obj/Debug/netcoreapp3.1/LinqLambda.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /LinqLambda/obj/Debug/netcoreapp3.1/LinqLambda.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/LinqLambda/obj/Debug/netcoreapp3.1/LinqLambda.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /LinqLambda/obj/Debug/netcoreapp3.1/LinqLambda.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/LinqLambda/obj/Debug/netcoreapp3.1/LinqLambda.dll -------------------------------------------------------------------------------- /LinqLambda/obj/Debug/netcoreapp3.1/LinqLambda.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/LinqLambda/obj/Debug/netcoreapp3.1/LinqLambda.exe -------------------------------------------------------------------------------- /LinqLambda/obj/Debug/netcoreapp3.1/LinqLambda.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /LinqLambda/obj/Debug/netcoreapp3.1/LinqLambda.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/LinqLambda/obj/Debug/netcoreapp3.1/LinqLambda.pdb -------------------------------------------------------------------------------- /LinqLambda/obj/LinqLambda.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/LinqLambda/obj/LinqLambda.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /LinqLambda/obj/LinqLambda.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/LinqLambda/obj/LinqLambda.csproj.nuget.g.props -------------------------------------------------------------------------------- /LinqLambda/obj/LinqLambda.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/LinqLambda/obj/LinqLambda.csproj.nuget.g.targets -------------------------------------------------------------------------------- /LinqLambda/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/LinqLambda/obj/project.assets.json -------------------------------------------------------------------------------- /LinqLambda/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/LinqLambda/obj/project.nuget.cache -------------------------------------------------------------------------------- /MeuPrimeiroProj.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroProj.sln -------------------------------------------------------------------------------- /MeuPrimeiroProj/MeuPrimeiroProj.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroProj/MeuPrimeiroProj.csproj -------------------------------------------------------------------------------- /MeuPrimeiroProj/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroProj/Program.cs -------------------------------------------------------------------------------- /MeuPrimeiroProj/bin/Debug/netcoreapp3.1/MeuPrimeiroProj.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroProj/bin/Debug/netcoreapp3.1/MeuPrimeiroProj.deps.json -------------------------------------------------------------------------------- /MeuPrimeiroProj/bin/Debug/netcoreapp3.1/MeuPrimeiroProj.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroProj/bin/Debug/netcoreapp3.1/MeuPrimeiroProj.dll -------------------------------------------------------------------------------- /MeuPrimeiroProj/bin/Debug/netcoreapp3.1/MeuPrimeiroProj.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroProj/bin/Debug/netcoreapp3.1/MeuPrimeiroProj.exe -------------------------------------------------------------------------------- /MeuPrimeiroProj/bin/Debug/netcoreapp3.1/MeuPrimeiroProj.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroProj/bin/Debug/netcoreapp3.1/MeuPrimeiroProj.pdb -------------------------------------------------------------------------------- /MeuPrimeiroProj/bin/Debug/netcoreapp3.1/MeuPrimeiroProj.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroProj/bin/Debug/netcoreapp3.1/MeuPrimeiroProj.runtimeconfig.dev.json -------------------------------------------------------------------------------- /MeuPrimeiroProj/bin/Debug/netcoreapp3.1/MeuPrimeiroProj.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroProj/bin/Debug/netcoreapp3.1/MeuPrimeiroProj.runtimeconfig.json -------------------------------------------------------------------------------- /MeuPrimeiroProj/obj/Debug/netcoreapp3.1/MeuPrimeiroProj.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroProj/obj/Debug/netcoreapp3.1/MeuPrimeiroProj.AssemblyInfo.cs -------------------------------------------------------------------------------- /MeuPrimeiroProj/obj/Debug/netcoreapp3.1/MeuPrimeiroProj.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 3eead0a261a5a71fbb263c85b03858491d063a17 2 | -------------------------------------------------------------------------------- /MeuPrimeiroProj/obj/Debug/netcoreapp3.1/MeuPrimeiroProj.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroProj/obj/Debug/netcoreapp3.1/MeuPrimeiroProj.assets.cache -------------------------------------------------------------------------------- /MeuPrimeiroProj/obj/Debug/netcoreapp3.1/MeuPrimeiroProj.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a3b72c46768304117f07b173feb7d576325c21c9 2 | -------------------------------------------------------------------------------- /MeuPrimeiroProj/obj/Debug/netcoreapp3.1/MeuPrimeiroProj.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroProj/obj/Debug/netcoreapp3.1/MeuPrimeiroProj.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /MeuPrimeiroProj/obj/Debug/netcoreapp3.1/MeuPrimeiroProj.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroProj/obj/Debug/netcoreapp3.1/MeuPrimeiroProj.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /MeuPrimeiroProj/obj/Debug/netcoreapp3.1/MeuPrimeiroProj.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroProj/obj/Debug/netcoreapp3.1/MeuPrimeiroProj.dll -------------------------------------------------------------------------------- /MeuPrimeiroProj/obj/Debug/netcoreapp3.1/MeuPrimeiroProj.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroProj/obj/Debug/netcoreapp3.1/MeuPrimeiroProj.exe -------------------------------------------------------------------------------- /MeuPrimeiroProj/obj/Debug/netcoreapp3.1/MeuPrimeiroProj.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /MeuPrimeiroProj/obj/Debug/netcoreapp3.1/MeuPrimeiroProj.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroProj/obj/Debug/netcoreapp3.1/MeuPrimeiroProj.pdb -------------------------------------------------------------------------------- /MeuPrimeiroProj/obj/MeuPrimeiroProj.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroProj/obj/MeuPrimeiroProj.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /MeuPrimeiroProj/obj/MeuPrimeiroProj.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroProj/obj/MeuPrimeiroProj.csproj.nuget.g.props -------------------------------------------------------------------------------- /MeuPrimeiroProj/obj/MeuPrimeiroProj.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroProj/obj/MeuPrimeiroProj.csproj.nuget.g.targets -------------------------------------------------------------------------------- /MeuPrimeiroProj/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroProj/obj/project.assets.json -------------------------------------------------------------------------------- /MeuPrimeiroProj/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroProj/obj/project.nuget.cache -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/ClasseObjeto/ClasseObjetoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/ClasseObjeto/ClasseObjetoTest.cs -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/Generics/GenericsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/Generics/GenericsTest.cs -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/MeuPrimeiroTeste-xUnit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/MeuPrimeiroTeste-xUnit.csproj -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ClasseObjeto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ClasseObjeto.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ClasseObjeto.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ClasseObjeto.exe -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ClasseObjeto.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ClasseObjeto.pdb -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/Generics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/Generics.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/Generics.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/Generics.exe -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/Generics.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/Generics.pdb -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/MeuPrimeiroTeste-xUnit.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/MeuPrimeiroTeste-xUnit.deps.json -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/MeuPrimeiroTeste-xUnit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/MeuPrimeiroTeste-xUnit.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/MeuPrimeiroTeste-xUnit.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/MeuPrimeiroTeste-xUnit.pdb -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/MeuPrimeiroTeste-xUnit.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/MeuPrimeiroTeste-xUnit.runtimeconfig.dev.json -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/MeuPrimeiroTeste-xUnit.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/MeuPrimeiroTeste-xUnit.runtimeconfig.json -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/testhost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/testhost.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/xunit.abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/xunit.abstractions.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/xunit.assert.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/xunit.assert.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/xunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/xunit.core.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/xunit.execution.dotnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/xunit.execution.dotnet.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/xunit.runner.reporters.netcoreapp10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/xunit.runner.reporters.netcoreapp10.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/xunit.runner.utility.netcoreapp10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/xunit.runner.utility.netcoreapp10.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/xunit.runner.visualstudio.dotnetcore.testadapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/xunit.runner.visualstudio.dotnetcore.testadapter.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/obj/Debug/netcoreapp3.1/MeuPrimeiroTeste-xUnit.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/obj/Debug/netcoreapp3.1/MeuPrimeiroTeste-xUnit.AssemblyInfo.cs -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/obj/Debug/netcoreapp3.1/MeuPrimeiroTeste-xUnit.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 43e11cefafaf2576a171920053522df8145c9bfc 2 | -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/obj/Debug/netcoreapp3.1/MeuPrimeiroTeste-xUnit.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/obj/Debug/netcoreapp3.1/MeuPrimeiroTeste-xUnit.assets.cache -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/obj/Debug/netcoreapp3.1/MeuPrimeiroTeste-xUnit.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/obj/Debug/netcoreapp3.1/MeuPrimeiroTeste-xUnit.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | cf4d6ebd242d1d69727af50dbeb68580f72d2a3f 2 | -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/obj/Debug/netcoreapp3.1/MeuPrimeiroTeste-xUnit.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/obj/Debug/netcoreapp3.1/MeuPrimeiroTeste-xUnit.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/obj/Debug/netcoreapp3.1/MeuPrimeiroTeste-xUnit.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/obj/Debug/netcoreapp3.1/MeuPrimeiroTeste-xUnit.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/obj/Debug/netcoreapp3.1/MeuPrimeiroTeste-xUnit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/obj/Debug/netcoreapp3.1/MeuPrimeiroTeste-xUnit.dll -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/obj/Debug/netcoreapp3.1/MeuPrimeiroTeste-xUnit.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | aca957f94ad5c178d9121f67400d5583889b6cf6 2 | -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/obj/Debug/netcoreapp3.1/MeuPrimeiroTeste-xUnit.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/obj/Debug/netcoreapp3.1/MeuPrimeiroTeste-xUnit.pdb -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/obj/MeuPrimeiroTeste-xUnit.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/obj/MeuPrimeiroTeste-xUnit.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/obj/MeuPrimeiroTeste-xUnit.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/obj/MeuPrimeiroTeste-xUnit.csproj.nuget.g.props -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/obj/MeuPrimeiroTeste-xUnit.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/obj/MeuPrimeiroTeste-xUnit.csproj.nuget.g.targets -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/obj/project.assets.json -------------------------------------------------------------------------------- /MeuPrimeiroTeste-xUnit/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/MeuPrimeiroTeste-xUnit/obj/project.nuget.cache -------------------------------------------------------------------------------- /ModificadorAcesso/ClasseInterna.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ModificadorAcesso/ClasseInterna.cs -------------------------------------------------------------------------------- /ModificadorAcesso/ClassePublica.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ModificadorAcesso/ClassePublica.cs -------------------------------------------------------------------------------- /ModificadorAcesso/ModificadorAcesso.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ModificadorAcesso/ModificadorAcesso.csproj -------------------------------------------------------------------------------- /ModificadorAcesso/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ModificadorAcesso/Program.cs -------------------------------------------------------------------------------- /ModificadorAcesso/bin/Debug/netcoreapp3.1/ModificadorAcesso.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ModificadorAcesso/bin/Debug/netcoreapp3.1/ModificadorAcesso.deps.json -------------------------------------------------------------------------------- /ModificadorAcesso/bin/Debug/netcoreapp3.1/ModificadorAcesso.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ModificadorAcesso/bin/Debug/netcoreapp3.1/ModificadorAcesso.dll -------------------------------------------------------------------------------- /ModificadorAcesso/bin/Debug/netcoreapp3.1/ModificadorAcesso.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ModificadorAcesso/bin/Debug/netcoreapp3.1/ModificadorAcesso.exe -------------------------------------------------------------------------------- /ModificadorAcesso/bin/Debug/netcoreapp3.1/ModificadorAcesso.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ModificadorAcesso/bin/Debug/netcoreapp3.1/ModificadorAcesso.pdb -------------------------------------------------------------------------------- /ModificadorAcesso/bin/Debug/netcoreapp3.1/ModificadorAcesso.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ModificadorAcesso/bin/Debug/netcoreapp3.1/ModificadorAcesso.runtimeconfig.dev.json -------------------------------------------------------------------------------- /ModificadorAcesso/bin/Debug/netcoreapp3.1/ModificadorAcesso.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ModificadorAcesso/bin/Debug/netcoreapp3.1/ModificadorAcesso.runtimeconfig.json -------------------------------------------------------------------------------- /ModificadorAcesso/obj/Debug/netcoreapp3.1/ModificadorAcesso.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ModificadorAcesso/obj/Debug/netcoreapp3.1/ModificadorAcesso.AssemblyInfo.cs -------------------------------------------------------------------------------- /ModificadorAcesso/obj/Debug/netcoreapp3.1/ModificadorAcesso.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ModificadorAcesso/obj/Debug/netcoreapp3.1/ModificadorAcesso.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /ModificadorAcesso/obj/Debug/netcoreapp3.1/ModificadorAcesso.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ModificadorAcesso/obj/Debug/netcoreapp3.1/ModificadorAcesso.assets.cache -------------------------------------------------------------------------------- /ModificadorAcesso/obj/Debug/netcoreapp3.1/ModificadorAcesso.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 392a95fc737ec8d32aa60484963666442ec59c17 2 | -------------------------------------------------------------------------------- /ModificadorAcesso/obj/Debug/netcoreapp3.1/ModificadorAcesso.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ModificadorAcesso/obj/Debug/netcoreapp3.1/ModificadorAcesso.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ModificadorAcesso/obj/Debug/netcoreapp3.1/ModificadorAcesso.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ModificadorAcesso/obj/Debug/netcoreapp3.1/ModificadorAcesso.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /ModificadorAcesso/obj/Debug/netcoreapp3.1/ModificadorAcesso.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ModificadorAcesso/obj/Debug/netcoreapp3.1/ModificadorAcesso.dll -------------------------------------------------------------------------------- /ModificadorAcesso/obj/Debug/netcoreapp3.1/ModificadorAcesso.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ModificadorAcesso/obj/Debug/netcoreapp3.1/ModificadorAcesso.exe -------------------------------------------------------------------------------- /ModificadorAcesso/obj/Debug/netcoreapp3.1/ModificadorAcesso.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /ModificadorAcesso/obj/Debug/netcoreapp3.1/ModificadorAcesso.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ModificadorAcesso/obj/Debug/netcoreapp3.1/ModificadorAcesso.pdb -------------------------------------------------------------------------------- /ModificadorAcesso/obj/ModificadorAcesso.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ModificadorAcesso/obj/ModificadorAcesso.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /ModificadorAcesso/obj/ModificadorAcesso.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ModificadorAcesso/obj/ModificadorAcesso.csproj.nuget.g.props -------------------------------------------------------------------------------- /ModificadorAcesso/obj/ModificadorAcesso.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ModificadorAcesso/obj/ModificadorAcesso.csproj.nuget.g.targets -------------------------------------------------------------------------------- /ModificadorAcesso/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ModificadorAcesso/obj/project.assets.json -------------------------------------------------------------------------------- /ModificadorAcesso/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenation-dev/AceleraDev-Csharp/HEAD/ModificadorAcesso/obj/project.nuget.cache --------------------------------------------------------------------------------