├── .github └── FUNDING.yml ├── LICENSE ├── PROJETOS ├── Agenda │ ├── Agenda.sln │ ├── Agenda.suo │ └── Agenda │ │ ├── Agenda.csproj │ │ ├── Agenda.csproj.user │ │ ├── Agenda.mdf │ │ ├── AgendaDataSet.Designer.cs │ │ ├── AgendaDataSet.xsc │ │ ├── AgendaDataSet.xsd │ │ ├── AgendaDataSet.xss │ │ ├── Agenda_log.LDF │ │ ├── Devices-media-floppy.ico │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── app.config │ │ ├── bin │ │ └── Debug │ │ │ ├── Agenda.exe.config │ │ │ ├── Agenda.mdf │ │ │ ├── Agenda.pdb │ │ │ ├── Agenda.vshost.exe.config │ │ │ ├── Agenda.vshost.exe.manifest │ │ │ └── Agenda_log.ldf │ │ └── obj │ │ └── x86 │ │ └── Debug │ │ ├── Agenda.Form1.resources │ │ ├── Agenda.Properties.Resources.resources │ │ ├── Agenda.csproj.FileListAbsolute.txt │ │ ├── Agenda.pdb │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ ├── ResolveAssemblyReference.cache │ │ └── TempPE │ │ └── AgendaDataSet.Designer.cs.dll ├── Calculadora │ ├── Calculadora.sln │ ├── Calculadora.suo │ └── Calculadora │ │ ├── Calculadora.csproj │ │ ├── Calculo.cs │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── bin │ │ └── Debug │ │ │ ├── Calculadora.pdb │ │ │ └── Calculadora.vshost.exe.manifest │ │ ├── calculator.ico │ │ └── obj │ │ └── x86 │ │ └── Debug │ │ ├── Calculadora.Form1.resources │ │ ├── Calculadora.Properties.Resources.resources │ │ ├── Calculadora.csproj.FileListAbsolute.txt │ │ ├── Calculadora.pdb │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ └── ResolveAssemblyReference.cache ├── Calculadora2 │ ├── Calculadora2.sln │ ├── Calculadora2.suo │ └── Calculadora2 │ │ ├── Calculadora2.csproj │ │ ├── Calculo.cs │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── bin │ │ └── Debug │ │ │ ├── Calculadora2.pdb │ │ │ └── Calculadora2.vshost.exe.manifest │ │ └── obj │ │ └── x86 │ │ └── Debug │ │ ├── Calculadora2.Form1.resources │ │ ├── Calculadora2.Properties.Resources.resources │ │ ├── Calculadora2.csproj.FileListAbsolute.txt │ │ ├── Calculadora2.pdb │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ └── ResolveAssemblyReference.cache ├── Conversor │ ├── Conversor.sln │ ├── Conversor.suo │ └── Conversor │ │ ├── BinarioDecimal.cs │ │ ├── Conversor.csproj │ │ ├── DecimalBinario.cs │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── bin │ │ └── Debug │ │ │ ├── Conversor.pdb │ │ │ └── Conversor.vshost.exe.manifest │ │ └── obj │ │ └── x86 │ │ └── Debug │ │ ├── Conversor.Form1.resources │ │ ├── Conversor.Properties.Resources.resources │ │ ├── Conversor.csproj.FileListAbsolute.txt │ │ ├── Conversor.pdb │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ └── ResolveAssemblyReference.cache ├── Desligar │ ├── Desligar.sln │ ├── Desligar.suo │ └── Desligar │ │ ├── Button-Turn-Off.ico │ │ ├── Desligar.csproj │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── bin │ │ └── Debug │ │ │ ├── Desligar.pdb │ │ │ └── Desligar.vshost.exe.manifest │ │ └── obj │ │ └── x86 │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── Desligar.Form1.resources │ │ ├── Desligar.Properties.Resources.resources │ │ ├── Desligar.csproj.FileListAbsolute.txt │ │ ├── Desligar.pdb │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ └── ResolveAssemblyReference.cache ├── DespertadorProgramavel │ ├── DespertadorProgramavel.sln │ ├── DespertadorProgramavel.suo │ └── DespertadorProgramavel │ │ ├── DespertadorProgramavel.csproj │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── bin │ │ └── Debug │ │ │ ├── AxInterop.WMPLib.dll │ │ │ ├── DespertadorProgramavel.pdb │ │ │ ├── DespertadorProgramavel.vshost.exe.manifest │ │ │ └── Interop.WMPLib.dll │ │ ├── clock.ico │ │ └── obj │ │ └── x86 │ │ └── Debug │ │ ├── AxInterop.WMPLib.dll │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── DespertadorProgramavel.Form1.resources │ │ ├── DespertadorProgramavel.Properties.Resources.resources │ │ ├── DespertadorProgramavel.csproj.FileListAbsolute.txt │ │ ├── DespertadorProgramavel.csproj.ResolveComReference.cache │ │ ├── DespertadorProgramavel.pdb │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ └── Interop.WMPLib.dll ├── Email │ ├── Email.sln │ ├── Email.suo │ └── Email │ │ ├── Email.csproj │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Mail.ico │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── bin │ │ └── Debug │ │ │ ├── Email.pdb │ │ │ └── Email.vshost.exe.manifest │ │ └── obj │ │ └── x86 │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── Email.Form1.resources │ │ ├── Email.Properties.Resources.resources │ │ ├── Email.csproj.FileListAbsolute.txt │ │ ├── Email.pdb │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ ├── ResolveAssemblyReference.cache │ │ └── TempPE │ │ └── Properties.Resources.Designer.cs.dll ├── Esfera │ ├── Esfera.sln │ ├── Esfera.suo │ └── Esfera │ │ ├── Esfera.csproj │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── bin │ │ └── Debug │ │ │ ├── Esfera.pdb │ │ │ └── Esfera.vshost.exe.manifest │ │ ├── esfera.jpg │ │ └── obj │ │ └── x86 │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── Esfera.Form1.resources │ │ ├── Esfera.Properties.Resources.resources │ │ ├── Esfera.csproj.FileListAbsolute.txt │ │ ├── Esfera.pdb │ │ ├── GenerateResource.read.1.tlog │ │ └── GenerateResource.write.1.tlog ├── Gerador │ ├── Gerador.sln │ ├── Gerador.suo │ └── Gerador │ │ ├── Constantes.cs │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Gerador.csproj │ │ ├── Gerar.cs │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── ValidarCNPJ.cs │ │ ├── ValidarCPF.cs │ │ ├── ValidarPIS.cs │ │ ├── bin │ │ └── Debug │ │ │ ├── Gerador.pdb │ │ │ └── Gerador.vshost.exe.manifest │ │ └── obj │ │ └── x86 │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ ├── Gerador.Form1.resources │ │ ├── Gerador.Properties.Resources.resources │ │ ├── Gerador.csproj.FileListAbsolute.txt │ │ ├── Gerador.pdb │ │ └── ResolveAssemblyReference.cache ├── HD │ ├── HD.sln │ ├── HD.suo │ └── HD │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── HD.cs │ │ ├── HD.csproj │ │ ├── Hard-drive.ico │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── bin │ │ └── Debug │ │ │ ├── HD.pdb │ │ │ └── HD.vshost.exe.manifest │ │ └── obj │ │ └── x86 │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ ├── HD.Form1.resources │ │ ├── HD.Properties.Resources.resources │ │ ├── HD.csproj.FileListAbsolute.txt │ │ └── HD.pdb ├── Hexa │ ├── Hexa.sln │ ├── Hexa.suo │ └── Hexa │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Hexa.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── bin │ │ └── Debug │ │ │ ├── Hexa.pdb │ │ │ └── Hexa.vshost.exe.manifest │ │ └── obj │ │ └── x86 │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ ├── Hexa.Form1.resources │ │ ├── Hexa.Properties.Resources.resources │ │ ├── Hexa.csproj.FileListAbsolute.txt │ │ └── Hexa.pdb ├── MAC │ ├── MAC.sln │ └── MAC │ │ ├── Devices-computer-laptop.ico │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── MAC.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── bin │ │ └── Debug │ │ │ ├── MAC.pdb │ │ │ └── MAC.vshost.exe.manifest │ │ └── obj │ │ └── x86 │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ ├── MAC.Form1.resources │ │ ├── MAC.Properties.Resources.resources │ │ ├── MAC.csproj.FileListAbsolute.txt │ │ └── MAC.pdb ├── MU │ ├── MU.sln │ ├── MU.suo │ └── MU │ │ ├── Categories-system-help.ico │ │ ├── Cript.cs │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Help.Designer.cs │ │ ├── Help.cs │ │ ├── Help.resx │ │ ├── Lock.ico │ │ ├── MU.csproj │ │ ├── MU.jpg │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── bin │ │ └── Debug │ │ │ ├── MU.pdb │ │ │ └── MU.vshost.exe.manifest │ │ └── obj │ │ └── x86 │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ ├── MU.Form1.resources │ │ ├── MU.Help.resources │ │ ├── MU.Properties.Resources.resources │ │ ├── MU.csproj.FileListAbsolute.txt │ │ ├── MU.pdb │ │ └── ResolveAssemblyReference.cache ├── MiniNavegador │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── MiniNavegador.csproj │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── bin │ │ └── Debug │ │ │ ├── MiniNavegador.pdb │ │ │ └── MiniNavegador.vshost.exe.manifest │ └── obj │ │ └── x86 │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ ├── MiniNavegador.Form1.resources │ │ ├── MiniNavegador.Properties.Resources.resources │ │ ├── MiniNavegador.csproj.FileListAbsolute.txt │ │ └── MiniNavegador.pdb ├── MountyHall │ ├── MountyHall.sln │ ├── MountyHall.suo │ └── MountyHall │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── MountyHall.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── bin │ │ └── Debug │ │ │ ├── MountyHall.pdb │ │ │ └── MountyHall.vshost.exe.manifest │ │ └── obj │ │ └── x86 │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── MountyHall.Form1.resources │ │ ├── MountyHall.Properties.Resources.resources │ │ ├── MountyHall.csproj.FileListAbsolute.txt │ │ ├── MountyHall.csproj.GenerateResource.Cache │ │ └── MountyHall.pdb ├── Relógio │ ├── Relógio.sln │ ├── Relógio.suo │ └── Relógio │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Relógio.csproj │ │ ├── Settings-Clock.ico │ │ ├── bin │ │ └── Debug │ │ │ ├── Relógio.pdb │ │ │ └── Relógio.vshost.exe.manifest │ │ └── obj │ │ └── x86 │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ ├── Relógio.Form1.resources │ │ ├── Relógio.Properties.Resources.resources │ │ ├── Relógio.csproj.FileListAbsolute.txt │ │ └── Relógio.pdb ├── Reverter │ ├── Reverter.sln │ ├── Reverter.suo │ └── Reverter │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Inverte.cs │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Reverter.csproj │ │ ├── bin │ │ └── Debug │ │ │ ├── Reverter.pdb │ │ │ └── Reverter.vshost.exe.manifest │ │ └── obj │ │ └── x86 │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ ├── ResolveAssemblyReference.cache │ │ ├── Reverter.Form1.resources │ │ ├── Reverter.Properties.Resources.resources │ │ ├── Reverter.csproj.FileListAbsolute.txt │ │ └── Reverter.pdb ├── Snake │ ├── Snake.sln │ ├── Snake.suo │ └── Snake │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Snake.csproj │ │ ├── bin │ │ └── Debug │ │ │ ├── Snake.pdb │ │ │ └── Snake.vshost.exe.manifest │ │ ├── obj │ │ └── x86 │ │ │ └── Debug │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── GenerateResource.read.1.tlog │ │ │ ├── GenerateResource.write.1.tlog │ │ │ ├── ResolveAssemblyReference.cache │ │ │ ├── Snake.Form1.resources │ │ │ ├── Snake.Properties.Resources.resources │ │ │ ├── Snake.csproj.FileListAbsolute.txt │ │ │ └── Snake.pdb │ │ └── snake.ico └── Txt │ ├── Txt.sln │ ├── Txt.suo │ └── Txt │ ├── Bloc-notes.ico │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Gravar.cs │ ├── Ler.cs │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Txt.csproj │ ├── bin │ └── Debug │ │ ├── Txt.pdb │ │ └── Txt.vshost.exe.manifest │ └── obj │ └── x86 │ └── Debug │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── GenerateResource.read.1.tlog │ ├── GenerateResource.write.1.tlog │ ├── ResolveAssemblyReference.cache │ ├── Txt.Form1.resources │ ├── Txt.Properties.Resources.resources │ ├── Txt.csproj.FileListAbsolute.txt │ └── Txt.pdb └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/LICENSE -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda.sln -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda.suo -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/Agenda.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/Agenda.csproj -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/Agenda.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/Agenda.csproj.user -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/Agenda.mdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/Agenda.mdf -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/AgendaDataSet.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/AgendaDataSet.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/AgendaDataSet.xsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/AgendaDataSet.xsc -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/AgendaDataSet.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/AgendaDataSet.xsd -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/AgendaDataSet.xss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/AgendaDataSet.xss -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/Agenda_log.LDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/Agenda_log.LDF -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/Devices-media-floppy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/Devices-media-floppy.ico -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/Form1.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/Form1.cs -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/Form1.resx -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/Program.cs -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/Properties/Resources.resx -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/Properties/Settings.settings -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/app.config -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/bin/Debug/Agenda.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/bin/Debug/Agenda.exe.config -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/bin/Debug/Agenda.mdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/bin/Debug/Agenda.mdf -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/bin/Debug/Agenda.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/bin/Debug/Agenda.pdb -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/bin/Debug/Agenda.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/bin/Debug/Agenda.vshost.exe.config -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/bin/Debug/Agenda.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/bin/Debug/Agenda.vshost.exe.manifest -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/bin/Debug/Agenda_log.ldf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/bin/Debug/Agenda_log.ldf -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/obj/x86/Debug/Agenda.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/obj/x86/Debug/Agenda.Form1.resources -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/obj/x86/Debug/Agenda.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/obj/x86/Debug/Agenda.Properties.Resources.resources -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/obj/x86/Debug/Agenda.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/obj/x86/Debug/Agenda.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/obj/x86/Debug/Agenda.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/obj/x86/Debug/Agenda.pdb -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/obj/x86/Debug/GenerateResource.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/obj/x86/Debug/GenerateResource.read.1.tlog -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/obj/x86/Debug/GenerateResource.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/obj/x86/Debug/GenerateResource.write.1.tlog -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/obj/x86/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/obj/x86/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /PROJETOS/Agenda/Agenda/obj/x86/Debug/TempPE/AgendaDataSet.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Agenda/Agenda/obj/x86/Debug/TempPE/AgendaDataSet.Designer.cs.dll -------------------------------------------------------------------------------- /PROJETOS/Calculadora/Calculadora.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora/Calculadora.sln -------------------------------------------------------------------------------- /PROJETOS/Calculadora/Calculadora.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora/Calculadora.suo -------------------------------------------------------------------------------- /PROJETOS/Calculadora/Calculadora/Calculadora.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora/Calculadora/Calculadora.csproj -------------------------------------------------------------------------------- /PROJETOS/Calculadora/Calculadora/Calculo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora/Calculadora/Calculo.cs -------------------------------------------------------------------------------- /PROJETOS/Calculadora/Calculadora/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora/Calculadora/Form1.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Calculadora/Calculadora/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora/Calculadora/Form1.cs -------------------------------------------------------------------------------- /PROJETOS/Calculadora/Calculadora/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora/Calculadora/Form1.resx -------------------------------------------------------------------------------- /PROJETOS/Calculadora/Calculadora/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora/Calculadora/Program.cs -------------------------------------------------------------------------------- /PROJETOS/Calculadora/Calculadora/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora/Calculadora/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PROJETOS/Calculadora/Calculadora/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora/Calculadora/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Calculadora/Calculadora/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora/Calculadora/Properties/Resources.resx -------------------------------------------------------------------------------- /PROJETOS/Calculadora/Calculadora/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora/Calculadora/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Calculadora/Calculadora/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora/Calculadora/Properties/Settings.settings -------------------------------------------------------------------------------- /PROJETOS/Calculadora/Calculadora/bin/Debug/Calculadora.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora/Calculadora/bin/Debug/Calculadora.pdb -------------------------------------------------------------------------------- /PROJETOS/Calculadora/Calculadora/bin/Debug/Calculadora.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora/Calculadora/bin/Debug/Calculadora.vshost.exe.manifest -------------------------------------------------------------------------------- /PROJETOS/Calculadora/Calculadora/calculator.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora/Calculadora/calculator.ico -------------------------------------------------------------------------------- /PROJETOS/Calculadora/Calculadora/obj/x86/Debug/Calculadora.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora/Calculadora/obj/x86/Debug/Calculadora.Form1.resources -------------------------------------------------------------------------------- /PROJETOS/Calculadora/Calculadora/obj/x86/Debug/Calculadora.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora/Calculadora/obj/x86/Debug/Calculadora.Properties.Resources.resources -------------------------------------------------------------------------------- /PROJETOS/Calculadora/Calculadora/obj/x86/Debug/Calculadora.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora/Calculadora/obj/x86/Debug/Calculadora.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /PROJETOS/Calculadora/Calculadora/obj/x86/Debug/Calculadora.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora/Calculadora/obj/x86/Debug/Calculadora.pdb -------------------------------------------------------------------------------- /PROJETOS/Calculadora/Calculadora/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora/Calculadora/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /PROJETOS/Calculadora/Calculadora/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora/Calculadora/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PROJETOS/Calculadora/Calculadora/obj/x86/Debug/GenerateResource.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora/Calculadora/obj/x86/Debug/GenerateResource.read.1.tlog -------------------------------------------------------------------------------- /PROJETOS/Calculadora/Calculadora/obj/x86/Debug/GenerateResource.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora/Calculadora/obj/x86/Debug/GenerateResource.write.1.tlog -------------------------------------------------------------------------------- /PROJETOS/Calculadora/Calculadora/obj/x86/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora/Calculadora/obj/x86/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /PROJETOS/Calculadora2/Calculadora2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora2/Calculadora2.sln -------------------------------------------------------------------------------- /PROJETOS/Calculadora2/Calculadora2.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora2/Calculadora2.suo -------------------------------------------------------------------------------- /PROJETOS/Calculadora2/Calculadora2/Calculadora2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora2/Calculadora2/Calculadora2.csproj -------------------------------------------------------------------------------- /PROJETOS/Calculadora2/Calculadora2/Calculo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora2/Calculadora2/Calculo.cs -------------------------------------------------------------------------------- /PROJETOS/Calculadora2/Calculadora2/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora2/Calculadora2/Form1.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Calculadora2/Calculadora2/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora2/Calculadora2/Form1.cs -------------------------------------------------------------------------------- /PROJETOS/Calculadora2/Calculadora2/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora2/Calculadora2/Form1.resx -------------------------------------------------------------------------------- /PROJETOS/Calculadora2/Calculadora2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora2/Calculadora2/Program.cs -------------------------------------------------------------------------------- /PROJETOS/Calculadora2/Calculadora2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora2/Calculadora2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PROJETOS/Calculadora2/Calculadora2/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora2/Calculadora2/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Calculadora2/Calculadora2/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora2/Calculadora2/Properties/Resources.resx -------------------------------------------------------------------------------- /PROJETOS/Calculadora2/Calculadora2/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora2/Calculadora2/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Calculadora2/Calculadora2/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora2/Calculadora2/Properties/Settings.settings -------------------------------------------------------------------------------- /PROJETOS/Calculadora2/Calculadora2/bin/Debug/Calculadora2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora2/Calculadora2/bin/Debug/Calculadora2.pdb -------------------------------------------------------------------------------- /PROJETOS/Calculadora2/Calculadora2/bin/Debug/Calculadora2.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora2/Calculadora2/bin/Debug/Calculadora2.vshost.exe.manifest -------------------------------------------------------------------------------- /PROJETOS/Calculadora2/Calculadora2/obj/x86/Debug/Calculadora2.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora2/Calculadora2/obj/x86/Debug/Calculadora2.Form1.resources -------------------------------------------------------------------------------- /PROJETOS/Calculadora2/Calculadora2/obj/x86/Debug/Calculadora2.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora2/Calculadora2/obj/x86/Debug/Calculadora2.Properties.Resources.resources -------------------------------------------------------------------------------- /PROJETOS/Calculadora2/Calculadora2/obj/x86/Debug/Calculadora2.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora2/Calculadora2/obj/x86/Debug/Calculadora2.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /PROJETOS/Calculadora2/Calculadora2/obj/x86/Debug/Calculadora2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora2/Calculadora2/obj/x86/Debug/Calculadora2.pdb -------------------------------------------------------------------------------- /PROJETOS/Calculadora2/Calculadora2/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora2/Calculadora2/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /PROJETOS/Calculadora2/Calculadora2/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora2/Calculadora2/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PROJETOS/Calculadora2/Calculadora2/obj/x86/Debug/GenerateResource.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora2/Calculadora2/obj/x86/Debug/GenerateResource.read.1.tlog -------------------------------------------------------------------------------- /PROJETOS/Calculadora2/Calculadora2/obj/x86/Debug/GenerateResource.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora2/Calculadora2/obj/x86/Debug/GenerateResource.write.1.tlog -------------------------------------------------------------------------------- /PROJETOS/Calculadora2/Calculadora2/obj/x86/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Calculadora2/Calculadora2/obj/x86/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /PROJETOS/Conversor/Conversor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Conversor/Conversor.sln -------------------------------------------------------------------------------- /PROJETOS/Conversor/Conversor.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Conversor/Conversor.suo -------------------------------------------------------------------------------- /PROJETOS/Conversor/Conversor/BinarioDecimal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Conversor/Conversor/BinarioDecimal.cs -------------------------------------------------------------------------------- /PROJETOS/Conversor/Conversor/Conversor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Conversor/Conversor/Conversor.csproj -------------------------------------------------------------------------------- /PROJETOS/Conversor/Conversor/DecimalBinario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Conversor/Conversor/DecimalBinario.cs -------------------------------------------------------------------------------- /PROJETOS/Conversor/Conversor/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Conversor/Conversor/Form1.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Conversor/Conversor/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Conversor/Conversor/Form1.cs -------------------------------------------------------------------------------- /PROJETOS/Conversor/Conversor/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Conversor/Conversor/Form1.resx -------------------------------------------------------------------------------- /PROJETOS/Conversor/Conversor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Conversor/Conversor/Program.cs -------------------------------------------------------------------------------- /PROJETOS/Conversor/Conversor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Conversor/Conversor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PROJETOS/Conversor/Conversor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Conversor/Conversor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Conversor/Conversor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Conversor/Conversor/Properties/Resources.resx -------------------------------------------------------------------------------- /PROJETOS/Conversor/Conversor/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Conversor/Conversor/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Conversor/Conversor/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Conversor/Conversor/Properties/Settings.settings -------------------------------------------------------------------------------- /PROJETOS/Conversor/Conversor/bin/Debug/Conversor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Conversor/Conversor/bin/Debug/Conversor.pdb -------------------------------------------------------------------------------- /PROJETOS/Conversor/Conversor/bin/Debug/Conversor.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Conversor/Conversor/bin/Debug/Conversor.vshost.exe.manifest -------------------------------------------------------------------------------- /PROJETOS/Conversor/Conversor/obj/x86/Debug/Conversor.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Conversor/Conversor/obj/x86/Debug/Conversor.Form1.resources -------------------------------------------------------------------------------- /PROJETOS/Conversor/Conversor/obj/x86/Debug/Conversor.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Conversor/Conversor/obj/x86/Debug/Conversor.Properties.Resources.resources -------------------------------------------------------------------------------- /PROJETOS/Conversor/Conversor/obj/x86/Debug/Conversor.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Conversor/Conversor/obj/x86/Debug/Conversor.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /PROJETOS/Conversor/Conversor/obj/x86/Debug/Conversor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Conversor/Conversor/obj/x86/Debug/Conversor.pdb -------------------------------------------------------------------------------- /PROJETOS/Conversor/Conversor/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Conversor/Conversor/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /PROJETOS/Conversor/Conversor/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Conversor/Conversor/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PROJETOS/Conversor/Conversor/obj/x86/Debug/GenerateResource.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Conversor/Conversor/obj/x86/Debug/GenerateResource.read.1.tlog -------------------------------------------------------------------------------- /PROJETOS/Conversor/Conversor/obj/x86/Debug/GenerateResource.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Conversor/Conversor/obj/x86/Debug/GenerateResource.write.1.tlog -------------------------------------------------------------------------------- /PROJETOS/Conversor/Conversor/obj/x86/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Conversor/Conversor/obj/x86/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /PROJETOS/Desligar/Desligar.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Desligar/Desligar.sln -------------------------------------------------------------------------------- /PROJETOS/Desligar/Desligar.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Desligar/Desligar.suo -------------------------------------------------------------------------------- /PROJETOS/Desligar/Desligar/Button-Turn-Off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Desligar/Desligar/Button-Turn-Off.ico -------------------------------------------------------------------------------- /PROJETOS/Desligar/Desligar/Desligar.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Desligar/Desligar/Desligar.csproj -------------------------------------------------------------------------------- /PROJETOS/Desligar/Desligar/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Desligar/Desligar/Form1.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Desligar/Desligar/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Desligar/Desligar/Form1.cs -------------------------------------------------------------------------------- /PROJETOS/Desligar/Desligar/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Desligar/Desligar/Form1.resx -------------------------------------------------------------------------------- /PROJETOS/Desligar/Desligar/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Desligar/Desligar/Program.cs -------------------------------------------------------------------------------- /PROJETOS/Desligar/Desligar/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Desligar/Desligar/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PROJETOS/Desligar/Desligar/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Desligar/Desligar/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Desligar/Desligar/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Desligar/Desligar/Properties/Resources.resx -------------------------------------------------------------------------------- /PROJETOS/Desligar/Desligar/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Desligar/Desligar/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Desligar/Desligar/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Desligar/Desligar/Properties/Settings.settings -------------------------------------------------------------------------------- /PROJETOS/Desligar/Desligar/bin/Debug/Desligar.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Desligar/Desligar/bin/Debug/Desligar.pdb -------------------------------------------------------------------------------- /PROJETOS/Desligar/Desligar/bin/Debug/Desligar.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Desligar/Desligar/bin/Debug/Desligar.vshost.exe.manifest -------------------------------------------------------------------------------- /PROJETOS/Desligar/Desligar/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Desligar/Desligar/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /PROJETOS/Desligar/Desligar/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Desligar/Desligar/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PROJETOS/Desligar/Desligar/obj/x86/Debug/Desligar.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Desligar/Desligar/obj/x86/Debug/Desligar.Form1.resources -------------------------------------------------------------------------------- /PROJETOS/Desligar/Desligar/obj/x86/Debug/Desligar.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Desligar/Desligar/obj/x86/Debug/Desligar.Properties.Resources.resources -------------------------------------------------------------------------------- /PROJETOS/Desligar/Desligar/obj/x86/Debug/Desligar.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Desligar/Desligar/obj/x86/Debug/Desligar.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /PROJETOS/Desligar/Desligar/obj/x86/Debug/Desligar.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Desligar/Desligar/obj/x86/Debug/Desligar.pdb -------------------------------------------------------------------------------- /PROJETOS/Desligar/Desligar/obj/x86/Debug/GenerateResource.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Desligar/Desligar/obj/x86/Debug/GenerateResource.read.1.tlog -------------------------------------------------------------------------------- /PROJETOS/Desligar/Desligar/obj/x86/Debug/GenerateResource.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Desligar/Desligar/obj/x86/Debug/GenerateResource.write.1.tlog -------------------------------------------------------------------------------- /PROJETOS/Desligar/Desligar/obj/x86/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Desligar/Desligar/obj/x86/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /PROJETOS/DespertadorProgramavel/DespertadorProgramavel.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/DespertadorProgramavel/DespertadorProgramavel.sln -------------------------------------------------------------------------------- /PROJETOS/DespertadorProgramavel/DespertadorProgramavel.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/DespertadorProgramavel/DespertadorProgramavel.suo -------------------------------------------------------------------------------- /PROJETOS/DespertadorProgramavel/DespertadorProgramavel/DespertadorProgramavel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/DespertadorProgramavel/DespertadorProgramavel/DespertadorProgramavel.csproj -------------------------------------------------------------------------------- /PROJETOS/DespertadorProgramavel/DespertadorProgramavel/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/DespertadorProgramavel/DespertadorProgramavel/Form1.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/DespertadorProgramavel/DespertadorProgramavel/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/DespertadorProgramavel/DespertadorProgramavel/Form1.cs -------------------------------------------------------------------------------- /PROJETOS/DespertadorProgramavel/DespertadorProgramavel/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/DespertadorProgramavel/DespertadorProgramavel/Form1.resx -------------------------------------------------------------------------------- /PROJETOS/DespertadorProgramavel/DespertadorProgramavel/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/DespertadorProgramavel/DespertadorProgramavel/Program.cs -------------------------------------------------------------------------------- /PROJETOS/DespertadorProgramavel/DespertadorProgramavel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/DespertadorProgramavel/DespertadorProgramavel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PROJETOS/DespertadorProgramavel/DespertadorProgramavel/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/DespertadorProgramavel/DespertadorProgramavel/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/DespertadorProgramavel/DespertadorProgramavel/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/DespertadorProgramavel/DespertadorProgramavel/Properties/Resources.resx -------------------------------------------------------------------------------- /PROJETOS/DespertadorProgramavel/DespertadorProgramavel/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/DespertadorProgramavel/DespertadorProgramavel/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/DespertadorProgramavel/DespertadorProgramavel/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/DespertadorProgramavel/DespertadorProgramavel/Properties/Settings.settings -------------------------------------------------------------------------------- /PROJETOS/DespertadorProgramavel/DespertadorProgramavel/bin/Debug/AxInterop.WMPLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/DespertadorProgramavel/DespertadorProgramavel/bin/Debug/AxInterop.WMPLib.dll -------------------------------------------------------------------------------- /PROJETOS/DespertadorProgramavel/DespertadorProgramavel/bin/Debug/DespertadorProgramavel.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/DespertadorProgramavel/DespertadorProgramavel/bin/Debug/DespertadorProgramavel.pdb -------------------------------------------------------------------------------- /PROJETOS/DespertadorProgramavel/DespertadorProgramavel/bin/Debug/DespertadorProgramavel.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/DespertadorProgramavel/DespertadorProgramavel/bin/Debug/DespertadorProgramavel.vshost.exe.manifest -------------------------------------------------------------------------------- /PROJETOS/DespertadorProgramavel/DespertadorProgramavel/bin/Debug/Interop.WMPLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/DespertadorProgramavel/DespertadorProgramavel/bin/Debug/Interop.WMPLib.dll -------------------------------------------------------------------------------- /PROJETOS/DespertadorProgramavel/DespertadorProgramavel/clock.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/DespertadorProgramavel/DespertadorProgramavel/clock.ico -------------------------------------------------------------------------------- /PROJETOS/DespertadorProgramavel/DespertadorProgramavel/obj/x86/Debug/AxInterop.WMPLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/DespertadorProgramavel/DespertadorProgramavel/obj/x86/Debug/AxInterop.WMPLib.dll -------------------------------------------------------------------------------- /PROJETOS/DespertadorProgramavel/DespertadorProgramavel/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/DespertadorProgramavel/DespertadorProgramavel/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /PROJETOS/DespertadorProgramavel/DespertadorProgramavel/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/DespertadorProgramavel/DespertadorProgramavel/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PROJETOS/DespertadorProgramavel/DespertadorProgramavel/obj/x86/Debug/DespertadorProgramavel.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/DespertadorProgramavel/DespertadorProgramavel/obj/x86/Debug/DespertadorProgramavel.Form1.resources -------------------------------------------------------------------------------- /PROJETOS/DespertadorProgramavel/DespertadorProgramavel/obj/x86/Debug/DespertadorProgramavel.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/DespertadorProgramavel/DespertadorProgramavel/obj/x86/Debug/DespertadorProgramavel.Properties.Resources.resources -------------------------------------------------------------------------------- /PROJETOS/DespertadorProgramavel/DespertadorProgramavel/obj/x86/Debug/DespertadorProgramavel.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/DespertadorProgramavel/DespertadorProgramavel/obj/x86/Debug/DespertadorProgramavel.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /PROJETOS/DespertadorProgramavel/DespertadorProgramavel/obj/x86/Debug/DespertadorProgramavel.csproj.ResolveComReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/DespertadorProgramavel/DespertadorProgramavel/obj/x86/Debug/DespertadorProgramavel.csproj.ResolveComReference.cache -------------------------------------------------------------------------------- /PROJETOS/DespertadorProgramavel/DespertadorProgramavel/obj/x86/Debug/DespertadorProgramavel.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/DespertadorProgramavel/DespertadorProgramavel/obj/x86/Debug/DespertadorProgramavel.pdb -------------------------------------------------------------------------------- /PROJETOS/DespertadorProgramavel/DespertadorProgramavel/obj/x86/Debug/GenerateResource.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/DespertadorProgramavel/DespertadorProgramavel/obj/x86/Debug/GenerateResource.read.1.tlog -------------------------------------------------------------------------------- /PROJETOS/DespertadorProgramavel/DespertadorProgramavel/obj/x86/Debug/GenerateResource.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/DespertadorProgramavel/DespertadorProgramavel/obj/x86/Debug/GenerateResource.write.1.tlog -------------------------------------------------------------------------------- /PROJETOS/DespertadorProgramavel/DespertadorProgramavel/obj/x86/Debug/Interop.WMPLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/DespertadorProgramavel/DespertadorProgramavel/obj/x86/Debug/Interop.WMPLib.dll -------------------------------------------------------------------------------- /PROJETOS/Email/Email.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Email/Email.sln -------------------------------------------------------------------------------- /PROJETOS/Email/Email.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Email/Email.suo -------------------------------------------------------------------------------- /PROJETOS/Email/Email/Email.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Email/Email/Email.csproj -------------------------------------------------------------------------------- /PROJETOS/Email/Email/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Email/Email/Form1.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Email/Email/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Email/Email/Form1.cs -------------------------------------------------------------------------------- /PROJETOS/Email/Email/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Email/Email/Form1.resx -------------------------------------------------------------------------------- /PROJETOS/Email/Email/Mail.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Email/Email/Mail.ico -------------------------------------------------------------------------------- /PROJETOS/Email/Email/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Email/Email/Program.cs -------------------------------------------------------------------------------- /PROJETOS/Email/Email/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Email/Email/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PROJETOS/Email/Email/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Email/Email/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Email/Email/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Email/Email/Properties/Resources.resx -------------------------------------------------------------------------------- /PROJETOS/Email/Email/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Email/Email/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Email/Email/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Email/Email/Properties/Settings.settings -------------------------------------------------------------------------------- /PROJETOS/Email/Email/bin/Debug/Email.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Email/Email/bin/Debug/Email.pdb -------------------------------------------------------------------------------- /PROJETOS/Email/Email/bin/Debug/Email.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Email/Email/bin/Debug/Email.vshost.exe.manifest -------------------------------------------------------------------------------- /PROJETOS/Email/Email/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Email/Email/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /PROJETOS/Email/Email/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Email/Email/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PROJETOS/Email/Email/obj/x86/Debug/Email.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Email/Email/obj/x86/Debug/Email.Form1.resources -------------------------------------------------------------------------------- /PROJETOS/Email/Email/obj/x86/Debug/Email.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Email/Email/obj/x86/Debug/Email.Properties.Resources.resources -------------------------------------------------------------------------------- /PROJETOS/Email/Email/obj/x86/Debug/Email.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Email/Email/obj/x86/Debug/Email.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /PROJETOS/Email/Email/obj/x86/Debug/Email.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Email/Email/obj/x86/Debug/Email.pdb -------------------------------------------------------------------------------- /PROJETOS/Email/Email/obj/x86/Debug/GenerateResource.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Email/Email/obj/x86/Debug/GenerateResource.read.1.tlog -------------------------------------------------------------------------------- /PROJETOS/Email/Email/obj/x86/Debug/GenerateResource.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Email/Email/obj/x86/Debug/GenerateResource.write.1.tlog -------------------------------------------------------------------------------- /PROJETOS/Email/Email/obj/x86/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Email/Email/obj/x86/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /PROJETOS/Email/Email/obj/x86/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Email/Email/obj/x86/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /PROJETOS/Esfera/Esfera.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Esfera/Esfera.sln -------------------------------------------------------------------------------- /PROJETOS/Esfera/Esfera.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Esfera/Esfera.suo -------------------------------------------------------------------------------- /PROJETOS/Esfera/Esfera/Esfera.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Esfera/Esfera/Esfera.csproj -------------------------------------------------------------------------------- /PROJETOS/Esfera/Esfera/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Esfera/Esfera/Form1.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Esfera/Esfera/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Esfera/Esfera/Form1.cs -------------------------------------------------------------------------------- /PROJETOS/Esfera/Esfera/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Esfera/Esfera/Form1.resx -------------------------------------------------------------------------------- /PROJETOS/Esfera/Esfera/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Esfera/Esfera/Program.cs -------------------------------------------------------------------------------- /PROJETOS/Esfera/Esfera/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Esfera/Esfera/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PROJETOS/Esfera/Esfera/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Esfera/Esfera/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Esfera/Esfera/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Esfera/Esfera/Properties/Resources.resx -------------------------------------------------------------------------------- /PROJETOS/Esfera/Esfera/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Esfera/Esfera/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Esfera/Esfera/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Esfera/Esfera/Properties/Settings.settings -------------------------------------------------------------------------------- /PROJETOS/Esfera/Esfera/bin/Debug/Esfera.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Esfera/Esfera/bin/Debug/Esfera.pdb -------------------------------------------------------------------------------- /PROJETOS/Esfera/Esfera/bin/Debug/Esfera.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Esfera/Esfera/bin/Debug/Esfera.vshost.exe.manifest -------------------------------------------------------------------------------- /PROJETOS/Esfera/Esfera/esfera.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Esfera/Esfera/esfera.jpg -------------------------------------------------------------------------------- /PROJETOS/Esfera/Esfera/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Esfera/Esfera/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /PROJETOS/Esfera/Esfera/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Esfera/Esfera/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PROJETOS/Esfera/Esfera/obj/x86/Debug/Esfera.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Esfera/Esfera/obj/x86/Debug/Esfera.Form1.resources -------------------------------------------------------------------------------- /PROJETOS/Esfera/Esfera/obj/x86/Debug/Esfera.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Esfera/Esfera/obj/x86/Debug/Esfera.Properties.Resources.resources -------------------------------------------------------------------------------- /PROJETOS/Esfera/Esfera/obj/x86/Debug/Esfera.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Esfera/Esfera/obj/x86/Debug/Esfera.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /PROJETOS/Esfera/Esfera/obj/x86/Debug/Esfera.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Esfera/Esfera/obj/x86/Debug/Esfera.pdb -------------------------------------------------------------------------------- /PROJETOS/Esfera/Esfera/obj/x86/Debug/GenerateResource.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Esfera/Esfera/obj/x86/Debug/GenerateResource.read.1.tlog -------------------------------------------------------------------------------- /PROJETOS/Esfera/Esfera/obj/x86/Debug/GenerateResource.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Esfera/Esfera/obj/x86/Debug/GenerateResource.write.1.tlog -------------------------------------------------------------------------------- /PROJETOS/Gerador/Gerador.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Gerador/Gerador.sln -------------------------------------------------------------------------------- /PROJETOS/Gerador/Gerador.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Gerador/Gerador.suo -------------------------------------------------------------------------------- /PROJETOS/Gerador/Gerador/Constantes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Gerador/Gerador/Constantes.cs -------------------------------------------------------------------------------- /PROJETOS/Gerador/Gerador/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Gerador/Gerador/Form1.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Gerador/Gerador/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Gerador/Gerador/Form1.cs -------------------------------------------------------------------------------- /PROJETOS/Gerador/Gerador/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Gerador/Gerador/Form1.resx -------------------------------------------------------------------------------- /PROJETOS/Gerador/Gerador/Gerador.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Gerador/Gerador/Gerador.csproj -------------------------------------------------------------------------------- /PROJETOS/Gerador/Gerador/Gerar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Gerador/Gerador/Gerar.cs -------------------------------------------------------------------------------- /PROJETOS/Gerador/Gerador/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Gerador/Gerador/Program.cs -------------------------------------------------------------------------------- /PROJETOS/Gerador/Gerador/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Gerador/Gerador/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PROJETOS/Gerador/Gerador/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Gerador/Gerador/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Gerador/Gerador/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Gerador/Gerador/Properties/Resources.resx -------------------------------------------------------------------------------- /PROJETOS/Gerador/Gerador/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Gerador/Gerador/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Gerador/Gerador/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Gerador/Gerador/Properties/Settings.settings -------------------------------------------------------------------------------- /PROJETOS/Gerador/Gerador/ValidarCNPJ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Gerador/Gerador/ValidarCNPJ.cs -------------------------------------------------------------------------------- /PROJETOS/Gerador/Gerador/ValidarCPF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Gerador/Gerador/ValidarCPF.cs -------------------------------------------------------------------------------- /PROJETOS/Gerador/Gerador/ValidarPIS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Gerador/Gerador/ValidarPIS.cs -------------------------------------------------------------------------------- /PROJETOS/Gerador/Gerador/bin/Debug/Gerador.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Gerador/Gerador/bin/Debug/Gerador.pdb -------------------------------------------------------------------------------- /PROJETOS/Gerador/Gerador/bin/Debug/Gerador.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Gerador/Gerador/bin/Debug/Gerador.vshost.exe.manifest -------------------------------------------------------------------------------- /PROJETOS/Gerador/Gerador/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Gerador/Gerador/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /PROJETOS/Gerador/Gerador/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Gerador/Gerador/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PROJETOS/Gerador/Gerador/obj/x86/Debug/GenerateResource.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Gerador/Gerador/obj/x86/Debug/GenerateResource.read.1.tlog -------------------------------------------------------------------------------- /PROJETOS/Gerador/Gerador/obj/x86/Debug/GenerateResource.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Gerador/Gerador/obj/x86/Debug/GenerateResource.write.1.tlog -------------------------------------------------------------------------------- /PROJETOS/Gerador/Gerador/obj/x86/Debug/Gerador.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Gerador/Gerador/obj/x86/Debug/Gerador.Form1.resources -------------------------------------------------------------------------------- /PROJETOS/Gerador/Gerador/obj/x86/Debug/Gerador.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Gerador/Gerador/obj/x86/Debug/Gerador.Properties.Resources.resources -------------------------------------------------------------------------------- /PROJETOS/Gerador/Gerador/obj/x86/Debug/Gerador.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Gerador/Gerador/obj/x86/Debug/Gerador.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /PROJETOS/Gerador/Gerador/obj/x86/Debug/Gerador.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Gerador/Gerador/obj/x86/Debug/Gerador.pdb -------------------------------------------------------------------------------- /PROJETOS/Gerador/Gerador/obj/x86/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Gerador/Gerador/obj/x86/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /PROJETOS/HD/HD.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/HD/HD.sln -------------------------------------------------------------------------------- /PROJETOS/HD/HD.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/HD/HD.suo -------------------------------------------------------------------------------- /PROJETOS/HD/HD/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/HD/HD/Form1.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/HD/HD/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/HD/HD/Form1.cs -------------------------------------------------------------------------------- /PROJETOS/HD/HD/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/HD/HD/Form1.resx -------------------------------------------------------------------------------- /PROJETOS/HD/HD/HD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/HD/HD/HD.cs -------------------------------------------------------------------------------- /PROJETOS/HD/HD/HD.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/HD/HD/HD.csproj -------------------------------------------------------------------------------- /PROJETOS/HD/HD/Hard-drive.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/HD/HD/Hard-drive.ico -------------------------------------------------------------------------------- /PROJETOS/HD/HD/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/HD/HD/Program.cs -------------------------------------------------------------------------------- /PROJETOS/HD/HD/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/HD/HD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PROJETOS/HD/HD/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/HD/HD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/HD/HD/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/HD/HD/Properties/Resources.resx -------------------------------------------------------------------------------- /PROJETOS/HD/HD/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/HD/HD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/HD/HD/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/HD/HD/Properties/Settings.settings -------------------------------------------------------------------------------- /PROJETOS/HD/HD/bin/Debug/HD.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/HD/HD/bin/Debug/HD.pdb -------------------------------------------------------------------------------- /PROJETOS/HD/HD/bin/Debug/HD.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/HD/HD/bin/Debug/HD.vshost.exe.manifest -------------------------------------------------------------------------------- /PROJETOS/HD/HD/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/HD/HD/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /PROJETOS/HD/HD/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/HD/HD/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PROJETOS/HD/HD/obj/x86/Debug/GenerateResource.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/HD/HD/obj/x86/Debug/GenerateResource.read.1.tlog -------------------------------------------------------------------------------- /PROJETOS/HD/HD/obj/x86/Debug/GenerateResource.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/HD/HD/obj/x86/Debug/GenerateResource.write.1.tlog -------------------------------------------------------------------------------- /PROJETOS/HD/HD/obj/x86/Debug/HD.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/HD/HD/obj/x86/Debug/HD.Form1.resources -------------------------------------------------------------------------------- /PROJETOS/HD/HD/obj/x86/Debug/HD.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/HD/HD/obj/x86/Debug/HD.Properties.Resources.resources -------------------------------------------------------------------------------- /PROJETOS/HD/HD/obj/x86/Debug/HD.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/HD/HD/obj/x86/Debug/HD.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /PROJETOS/HD/HD/obj/x86/Debug/HD.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/HD/HD/obj/x86/Debug/HD.pdb -------------------------------------------------------------------------------- /PROJETOS/Hexa/Hexa.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Hexa/Hexa.sln -------------------------------------------------------------------------------- /PROJETOS/Hexa/Hexa.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Hexa/Hexa.suo -------------------------------------------------------------------------------- /PROJETOS/Hexa/Hexa/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Hexa/Hexa/Form1.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Hexa/Hexa/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Hexa/Hexa/Form1.cs -------------------------------------------------------------------------------- /PROJETOS/Hexa/Hexa/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Hexa/Hexa/Form1.resx -------------------------------------------------------------------------------- /PROJETOS/Hexa/Hexa/Hexa.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Hexa/Hexa/Hexa.csproj -------------------------------------------------------------------------------- /PROJETOS/Hexa/Hexa/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Hexa/Hexa/Program.cs -------------------------------------------------------------------------------- /PROJETOS/Hexa/Hexa/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Hexa/Hexa/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PROJETOS/Hexa/Hexa/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Hexa/Hexa/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Hexa/Hexa/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Hexa/Hexa/Properties/Resources.resx -------------------------------------------------------------------------------- /PROJETOS/Hexa/Hexa/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Hexa/Hexa/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Hexa/Hexa/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Hexa/Hexa/Properties/Settings.settings -------------------------------------------------------------------------------- /PROJETOS/Hexa/Hexa/bin/Debug/Hexa.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Hexa/Hexa/bin/Debug/Hexa.pdb -------------------------------------------------------------------------------- /PROJETOS/Hexa/Hexa/bin/Debug/Hexa.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Hexa/Hexa/bin/Debug/Hexa.vshost.exe.manifest -------------------------------------------------------------------------------- /PROJETOS/Hexa/Hexa/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Hexa/Hexa/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /PROJETOS/Hexa/Hexa/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Hexa/Hexa/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PROJETOS/Hexa/Hexa/obj/x86/Debug/GenerateResource.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Hexa/Hexa/obj/x86/Debug/GenerateResource.read.1.tlog -------------------------------------------------------------------------------- /PROJETOS/Hexa/Hexa/obj/x86/Debug/GenerateResource.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Hexa/Hexa/obj/x86/Debug/GenerateResource.write.1.tlog -------------------------------------------------------------------------------- /PROJETOS/Hexa/Hexa/obj/x86/Debug/Hexa.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Hexa/Hexa/obj/x86/Debug/Hexa.Form1.resources -------------------------------------------------------------------------------- /PROJETOS/Hexa/Hexa/obj/x86/Debug/Hexa.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Hexa/Hexa/obj/x86/Debug/Hexa.Properties.Resources.resources -------------------------------------------------------------------------------- /PROJETOS/Hexa/Hexa/obj/x86/Debug/Hexa.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Hexa/Hexa/obj/x86/Debug/Hexa.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /PROJETOS/Hexa/Hexa/obj/x86/Debug/Hexa.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Hexa/Hexa/obj/x86/Debug/Hexa.pdb -------------------------------------------------------------------------------- /PROJETOS/MAC/MAC.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MAC/MAC.sln -------------------------------------------------------------------------------- /PROJETOS/MAC/MAC/Devices-computer-laptop.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MAC/MAC/Devices-computer-laptop.ico -------------------------------------------------------------------------------- /PROJETOS/MAC/MAC/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MAC/MAC/Form1.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/MAC/MAC/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MAC/MAC/Form1.cs -------------------------------------------------------------------------------- /PROJETOS/MAC/MAC/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MAC/MAC/Form1.resx -------------------------------------------------------------------------------- /PROJETOS/MAC/MAC/MAC.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MAC/MAC/MAC.csproj -------------------------------------------------------------------------------- /PROJETOS/MAC/MAC/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MAC/MAC/Program.cs -------------------------------------------------------------------------------- /PROJETOS/MAC/MAC/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MAC/MAC/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PROJETOS/MAC/MAC/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MAC/MAC/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/MAC/MAC/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MAC/MAC/Properties/Resources.resx -------------------------------------------------------------------------------- /PROJETOS/MAC/MAC/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MAC/MAC/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/MAC/MAC/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MAC/MAC/Properties/Settings.settings -------------------------------------------------------------------------------- /PROJETOS/MAC/MAC/bin/Debug/MAC.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MAC/MAC/bin/Debug/MAC.pdb -------------------------------------------------------------------------------- /PROJETOS/MAC/MAC/bin/Debug/MAC.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MAC/MAC/bin/Debug/MAC.vshost.exe.manifest -------------------------------------------------------------------------------- /PROJETOS/MAC/MAC/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MAC/MAC/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /PROJETOS/MAC/MAC/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MAC/MAC/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PROJETOS/MAC/MAC/obj/x86/Debug/GenerateResource.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MAC/MAC/obj/x86/Debug/GenerateResource.read.1.tlog -------------------------------------------------------------------------------- /PROJETOS/MAC/MAC/obj/x86/Debug/GenerateResource.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MAC/MAC/obj/x86/Debug/GenerateResource.write.1.tlog -------------------------------------------------------------------------------- /PROJETOS/MAC/MAC/obj/x86/Debug/MAC.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MAC/MAC/obj/x86/Debug/MAC.Form1.resources -------------------------------------------------------------------------------- /PROJETOS/MAC/MAC/obj/x86/Debug/MAC.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MAC/MAC/obj/x86/Debug/MAC.Properties.Resources.resources -------------------------------------------------------------------------------- /PROJETOS/MAC/MAC/obj/x86/Debug/MAC.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MAC/MAC/obj/x86/Debug/MAC.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /PROJETOS/MAC/MAC/obj/x86/Debug/MAC.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MAC/MAC/obj/x86/Debug/MAC.pdb -------------------------------------------------------------------------------- /PROJETOS/MU/MU.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU.sln -------------------------------------------------------------------------------- /PROJETOS/MU/MU.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU.suo -------------------------------------------------------------------------------- /PROJETOS/MU/MU/Categories-system-help.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU/Categories-system-help.ico -------------------------------------------------------------------------------- /PROJETOS/MU/MU/Cript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU/Cript.cs -------------------------------------------------------------------------------- /PROJETOS/MU/MU/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU/Form1.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/MU/MU/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU/Form1.cs -------------------------------------------------------------------------------- /PROJETOS/MU/MU/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU/Form1.resx -------------------------------------------------------------------------------- /PROJETOS/MU/MU/Help.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU/Help.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/MU/MU/Help.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU/Help.cs -------------------------------------------------------------------------------- /PROJETOS/MU/MU/Help.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU/Help.resx -------------------------------------------------------------------------------- /PROJETOS/MU/MU/Lock.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU/Lock.ico -------------------------------------------------------------------------------- /PROJETOS/MU/MU/MU.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU/MU.csproj -------------------------------------------------------------------------------- /PROJETOS/MU/MU/MU.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU/MU.jpg -------------------------------------------------------------------------------- /PROJETOS/MU/MU/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU/Program.cs -------------------------------------------------------------------------------- /PROJETOS/MU/MU/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PROJETOS/MU/MU/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/MU/MU/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU/Properties/Resources.resx -------------------------------------------------------------------------------- /PROJETOS/MU/MU/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/MU/MU/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU/Properties/Settings.settings -------------------------------------------------------------------------------- /PROJETOS/MU/MU/bin/Debug/MU.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU/bin/Debug/MU.pdb -------------------------------------------------------------------------------- /PROJETOS/MU/MU/bin/Debug/MU.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU/bin/Debug/MU.vshost.exe.manifest -------------------------------------------------------------------------------- /PROJETOS/MU/MU/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /PROJETOS/MU/MU/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PROJETOS/MU/MU/obj/x86/Debug/GenerateResource.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU/obj/x86/Debug/GenerateResource.read.1.tlog -------------------------------------------------------------------------------- /PROJETOS/MU/MU/obj/x86/Debug/GenerateResource.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU/obj/x86/Debug/GenerateResource.write.1.tlog -------------------------------------------------------------------------------- /PROJETOS/MU/MU/obj/x86/Debug/MU.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU/obj/x86/Debug/MU.Form1.resources -------------------------------------------------------------------------------- /PROJETOS/MU/MU/obj/x86/Debug/MU.Help.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU/obj/x86/Debug/MU.Help.resources -------------------------------------------------------------------------------- /PROJETOS/MU/MU/obj/x86/Debug/MU.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU/obj/x86/Debug/MU.Properties.Resources.resources -------------------------------------------------------------------------------- /PROJETOS/MU/MU/obj/x86/Debug/MU.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU/obj/x86/Debug/MU.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /PROJETOS/MU/MU/obj/x86/Debug/MU.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU/obj/x86/Debug/MU.pdb -------------------------------------------------------------------------------- /PROJETOS/MU/MU/obj/x86/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MU/MU/obj/x86/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /PROJETOS/MiniNavegador/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MiniNavegador/Form1.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/MiniNavegador/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MiniNavegador/Form1.cs -------------------------------------------------------------------------------- /PROJETOS/MiniNavegador/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MiniNavegador/Form1.resx -------------------------------------------------------------------------------- /PROJETOS/MiniNavegador/MiniNavegador.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MiniNavegador/MiniNavegador.csproj -------------------------------------------------------------------------------- /PROJETOS/MiniNavegador/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MiniNavegador/Program.cs -------------------------------------------------------------------------------- /PROJETOS/MiniNavegador/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MiniNavegador/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PROJETOS/MiniNavegador/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MiniNavegador/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/MiniNavegador/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MiniNavegador/Properties/Resources.resx -------------------------------------------------------------------------------- /PROJETOS/MiniNavegador/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MiniNavegador/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/MiniNavegador/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MiniNavegador/Properties/Settings.settings -------------------------------------------------------------------------------- /PROJETOS/MiniNavegador/bin/Debug/MiniNavegador.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MiniNavegador/bin/Debug/MiniNavegador.pdb -------------------------------------------------------------------------------- /PROJETOS/MiniNavegador/bin/Debug/MiniNavegador.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MiniNavegador/bin/Debug/MiniNavegador.vshost.exe.manifest -------------------------------------------------------------------------------- /PROJETOS/MiniNavegador/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MiniNavegador/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /PROJETOS/MiniNavegador/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MiniNavegador/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PROJETOS/MiniNavegador/obj/x86/Debug/GenerateResource.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MiniNavegador/obj/x86/Debug/GenerateResource.read.1.tlog -------------------------------------------------------------------------------- /PROJETOS/MiniNavegador/obj/x86/Debug/GenerateResource.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MiniNavegador/obj/x86/Debug/GenerateResource.write.1.tlog -------------------------------------------------------------------------------- /PROJETOS/MiniNavegador/obj/x86/Debug/MiniNavegador.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MiniNavegador/obj/x86/Debug/MiniNavegador.Form1.resources -------------------------------------------------------------------------------- /PROJETOS/MiniNavegador/obj/x86/Debug/MiniNavegador.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MiniNavegador/obj/x86/Debug/MiniNavegador.Properties.Resources.resources -------------------------------------------------------------------------------- /PROJETOS/MiniNavegador/obj/x86/Debug/MiniNavegador.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MiniNavegador/obj/x86/Debug/MiniNavegador.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /PROJETOS/MiniNavegador/obj/x86/Debug/MiniNavegador.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MiniNavegador/obj/x86/Debug/MiniNavegador.pdb -------------------------------------------------------------------------------- /PROJETOS/MountyHall/MountyHall.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MountyHall/MountyHall.sln -------------------------------------------------------------------------------- /PROJETOS/MountyHall/MountyHall.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MountyHall/MountyHall.suo -------------------------------------------------------------------------------- /PROJETOS/MountyHall/MountyHall/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MountyHall/MountyHall/Form1.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/MountyHall/MountyHall/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MountyHall/MountyHall/Form1.cs -------------------------------------------------------------------------------- /PROJETOS/MountyHall/MountyHall/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MountyHall/MountyHall/Form1.resx -------------------------------------------------------------------------------- /PROJETOS/MountyHall/MountyHall/MountyHall.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MountyHall/MountyHall/MountyHall.csproj -------------------------------------------------------------------------------- /PROJETOS/MountyHall/MountyHall/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MountyHall/MountyHall/Program.cs -------------------------------------------------------------------------------- /PROJETOS/MountyHall/MountyHall/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MountyHall/MountyHall/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PROJETOS/MountyHall/MountyHall/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MountyHall/MountyHall/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/MountyHall/MountyHall/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MountyHall/MountyHall/Properties/Resources.resx -------------------------------------------------------------------------------- /PROJETOS/MountyHall/MountyHall/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MountyHall/MountyHall/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/MountyHall/MountyHall/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MountyHall/MountyHall/Properties/Settings.settings -------------------------------------------------------------------------------- /PROJETOS/MountyHall/MountyHall/bin/Debug/MountyHall.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MountyHall/MountyHall/bin/Debug/MountyHall.pdb -------------------------------------------------------------------------------- /PROJETOS/MountyHall/MountyHall/bin/Debug/MountyHall.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MountyHall/MountyHall/bin/Debug/MountyHall.vshost.exe.manifest -------------------------------------------------------------------------------- /PROJETOS/MountyHall/MountyHall/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MountyHall/MountyHall/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /PROJETOS/MountyHall/MountyHall/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MountyHall/MountyHall/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PROJETOS/MountyHall/MountyHall/obj/x86/Debug/MountyHall.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MountyHall/MountyHall/obj/x86/Debug/MountyHall.Form1.resources -------------------------------------------------------------------------------- /PROJETOS/MountyHall/MountyHall/obj/x86/Debug/MountyHall.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MountyHall/MountyHall/obj/x86/Debug/MountyHall.Properties.Resources.resources -------------------------------------------------------------------------------- /PROJETOS/MountyHall/MountyHall/obj/x86/Debug/MountyHall.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MountyHall/MountyHall/obj/x86/Debug/MountyHall.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /PROJETOS/MountyHall/MountyHall/obj/x86/Debug/MountyHall.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MountyHall/MountyHall/obj/x86/Debug/MountyHall.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /PROJETOS/MountyHall/MountyHall/obj/x86/Debug/MountyHall.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/MountyHall/MountyHall/obj/x86/Debug/MountyHall.pdb -------------------------------------------------------------------------------- /PROJETOS/Relógio/Relógio.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Relógio/Relógio.sln -------------------------------------------------------------------------------- /PROJETOS/Relógio/Relógio.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Relógio/Relógio.suo -------------------------------------------------------------------------------- /PROJETOS/Relógio/Relógio/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Relógio/Relógio/Form1.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Relógio/Relógio/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Relógio/Relógio/Form1.cs -------------------------------------------------------------------------------- /PROJETOS/Relógio/Relógio/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Relógio/Relógio/Form1.resx -------------------------------------------------------------------------------- /PROJETOS/Relógio/Relógio/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Relógio/Relógio/Program.cs -------------------------------------------------------------------------------- /PROJETOS/Relógio/Relógio/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Relógio/Relógio/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PROJETOS/Relógio/Relógio/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Relógio/Relógio/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Relógio/Relógio/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Relógio/Relógio/Properties/Resources.resx -------------------------------------------------------------------------------- /PROJETOS/Relógio/Relógio/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Relógio/Relógio/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Relógio/Relógio/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Relógio/Relógio/Properties/Settings.settings -------------------------------------------------------------------------------- /PROJETOS/Relógio/Relógio/Relógio.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Relógio/Relógio/Relógio.csproj -------------------------------------------------------------------------------- /PROJETOS/Relógio/Relógio/Settings-Clock.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Relógio/Relógio/Settings-Clock.ico -------------------------------------------------------------------------------- /PROJETOS/Relógio/Relógio/bin/Debug/Relógio.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Relógio/Relógio/bin/Debug/Relógio.pdb -------------------------------------------------------------------------------- /PROJETOS/Relógio/Relógio/bin/Debug/Relógio.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Relógio/Relógio/bin/Debug/Relógio.vshost.exe.manifest -------------------------------------------------------------------------------- /PROJETOS/Relógio/Relógio/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Relógio/Relógio/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /PROJETOS/Relógio/Relógio/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Relógio/Relógio/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PROJETOS/Relógio/Relógio/obj/x86/Debug/GenerateResource.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Relógio/Relógio/obj/x86/Debug/GenerateResource.read.1.tlog -------------------------------------------------------------------------------- /PROJETOS/Relógio/Relógio/obj/x86/Debug/GenerateResource.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Relógio/Relógio/obj/x86/Debug/GenerateResource.write.1.tlog -------------------------------------------------------------------------------- /PROJETOS/Relógio/Relógio/obj/x86/Debug/Relógio.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Relógio/Relógio/obj/x86/Debug/Relógio.Form1.resources -------------------------------------------------------------------------------- /PROJETOS/Relógio/Relógio/obj/x86/Debug/Relógio.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Relógio/Relógio/obj/x86/Debug/Relógio.Properties.Resources.resources -------------------------------------------------------------------------------- /PROJETOS/Relógio/Relógio/obj/x86/Debug/Relógio.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Relógio/Relógio/obj/x86/Debug/Relógio.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /PROJETOS/Relógio/Relógio/obj/x86/Debug/Relógio.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Relógio/Relógio/obj/x86/Debug/Relógio.pdb -------------------------------------------------------------------------------- /PROJETOS/Reverter/Reverter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Reverter/Reverter.sln -------------------------------------------------------------------------------- /PROJETOS/Reverter/Reverter.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Reverter/Reverter.suo -------------------------------------------------------------------------------- /PROJETOS/Reverter/Reverter/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Reverter/Reverter/Form1.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Reverter/Reverter/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Reverter/Reverter/Form1.cs -------------------------------------------------------------------------------- /PROJETOS/Reverter/Reverter/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Reverter/Reverter/Form1.resx -------------------------------------------------------------------------------- /PROJETOS/Reverter/Reverter/Inverte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Reverter/Reverter/Inverte.cs -------------------------------------------------------------------------------- /PROJETOS/Reverter/Reverter/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Reverter/Reverter/Program.cs -------------------------------------------------------------------------------- /PROJETOS/Reverter/Reverter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Reverter/Reverter/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PROJETOS/Reverter/Reverter/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Reverter/Reverter/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Reverter/Reverter/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Reverter/Reverter/Properties/Resources.resx -------------------------------------------------------------------------------- /PROJETOS/Reverter/Reverter/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Reverter/Reverter/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Reverter/Reverter/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Reverter/Reverter/Properties/Settings.settings -------------------------------------------------------------------------------- /PROJETOS/Reverter/Reverter/Reverter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Reverter/Reverter/Reverter.csproj -------------------------------------------------------------------------------- /PROJETOS/Reverter/Reverter/bin/Debug/Reverter.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Reverter/Reverter/bin/Debug/Reverter.pdb -------------------------------------------------------------------------------- /PROJETOS/Reverter/Reverter/bin/Debug/Reverter.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Reverter/Reverter/bin/Debug/Reverter.vshost.exe.manifest -------------------------------------------------------------------------------- /PROJETOS/Reverter/Reverter/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Reverter/Reverter/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /PROJETOS/Reverter/Reverter/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Reverter/Reverter/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PROJETOS/Reverter/Reverter/obj/x86/Debug/GenerateResource.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Reverter/Reverter/obj/x86/Debug/GenerateResource.read.1.tlog -------------------------------------------------------------------------------- /PROJETOS/Reverter/Reverter/obj/x86/Debug/GenerateResource.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Reverter/Reverter/obj/x86/Debug/GenerateResource.write.1.tlog -------------------------------------------------------------------------------- /PROJETOS/Reverter/Reverter/obj/x86/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Reverter/Reverter/obj/x86/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /PROJETOS/Reverter/Reverter/obj/x86/Debug/Reverter.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Reverter/Reverter/obj/x86/Debug/Reverter.Form1.resources -------------------------------------------------------------------------------- /PROJETOS/Reverter/Reverter/obj/x86/Debug/Reverter.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Reverter/Reverter/obj/x86/Debug/Reverter.Properties.Resources.resources -------------------------------------------------------------------------------- /PROJETOS/Reverter/Reverter/obj/x86/Debug/Reverter.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Reverter/Reverter/obj/x86/Debug/Reverter.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /PROJETOS/Reverter/Reverter/obj/x86/Debug/Reverter.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Reverter/Reverter/obj/x86/Debug/Reverter.pdb -------------------------------------------------------------------------------- /PROJETOS/Snake/Snake.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Snake/Snake.sln -------------------------------------------------------------------------------- /PROJETOS/Snake/Snake.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Snake/Snake.suo -------------------------------------------------------------------------------- /PROJETOS/Snake/Snake/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Snake/Snake/Form1.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Snake/Snake/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Snake/Snake/Form1.cs -------------------------------------------------------------------------------- /PROJETOS/Snake/Snake/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Snake/Snake/Form1.resx -------------------------------------------------------------------------------- /PROJETOS/Snake/Snake/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Snake/Snake/Program.cs -------------------------------------------------------------------------------- /PROJETOS/Snake/Snake/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Snake/Snake/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PROJETOS/Snake/Snake/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Snake/Snake/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Snake/Snake/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Snake/Snake/Properties/Resources.resx -------------------------------------------------------------------------------- /PROJETOS/Snake/Snake/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Snake/Snake/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Snake/Snake/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Snake/Snake/Properties/Settings.settings -------------------------------------------------------------------------------- /PROJETOS/Snake/Snake/Snake.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Snake/Snake/Snake.csproj -------------------------------------------------------------------------------- /PROJETOS/Snake/Snake/bin/Debug/Snake.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Snake/Snake/bin/Debug/Snake.pdb -------------------------------------------------------------------------------- /PROJETOS/Snake/Snake/bin/Debug/Snake.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Snake/Snake/bin/Debug/Snake.vshost.exe.manifest -------------------------------------------------------------------------------- /PROJETOS/Snake/Snake/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Snake/Snake/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /PROJETOS/Snake/Snake/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Snake/Snake/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PROJETOS/Snake/Snake/obj/x86/Debug/GenerateResource.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Snake/Snake/obj/x86/Debug/GenerateResource.read.1.tlog -------------------------------------------------------------------------------- /PROJETOS/Snake/Snake/obj/x86/Debug/GenerateResource.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Snake/Snake/obj/x86/Debug/GenerateResource.write.1.tlog -------------------------------------------------------------------------------- /PROJETOS/Snake/Snake/obj/x86/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Snake/Snake/obj/x86/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /PROJETOS/Snake/Snake/obj/x86/Debug/Snake.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Snake/Snake/obj/x86/Debug/Snake.Form1.resources -------------------------------------------------------------------------------- /PROJETOS/Snake/Snake/obj/x86/Debug/Snake.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Snake/Snake/obj/x86/Debug/Snake.Properties.Resources.resources -------------------------------------------------------------------------------- /PROJETOS/Snake/Snake/obj/x86/Debug/Snake.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Snake/Snake/obj/x86/Debug/Snake.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /PROJETOS/Snake/Snake/obj/x86/Debug/Snake.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Snake/Snake/obj/x86/Debug/Snake.pdb -------------------------------------------------------------------------------- /PROJETOS/Snake/Snake/snake.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Snake/Snake/snake.ico -------------------------------------------------------------------------------- /PROJETOS/Txt/Txt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Txt/Txt.sln -------------------------------------------------------------------------------- /PROJETOS/Txt/Txt.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Txt/Txt.suo -------------------------------------------------------------------------------- /PROJETOS/Txt/Txt/Bloc-notes.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Txt/Txt/Bloc-notes.ico -------------------------------------------------------------------------------- /PROJETOS/Txt/Txt/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Txt/Txt/Form1.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Txt/Txt/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Txt/Txt/Form1.cs -------------------------------------------------------------------------------- /PROJETOS/Txt/Txt/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Txt/Txt/Form1.resx -------------------------------------------------------------------------------- /PROJETOS/Txt/Txt/Gravar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Txt/Txt/Gravar.cs -------------------------------------------------------------------------------- /PROJETOS/Txt/Txt/Ler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Txt/Txt/Ler.cs -------------------------------------------------------------------------------- /PROJETOS/Txt/Txt/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Txt/Txt/Program.cs -------------------------------------------------------------------------------- /PROJETOS/Txt/Txt/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Txt/Txt/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PROJETOS/Txt/Txt/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Txt/Txt/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Txt/Txt/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Txt/Txt/Properties/Resources.resx -------------------------------------------------------------------------------- /PROJETOS/Txt/Txt/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Txt/Txt/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PROJETOS/Txt/Txt/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Txt/Txt/Properties/Settings.settings -------------------------------------------------------------------------------- /PROJETOS/Txt/Txt/Txt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Txt/Txt/Txt.csproj -------------------------------------------------------------------------------- /PROJETOS/Txt/Txt/bin/Debug/Txt.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Txt/Txt/bin/Debug/Txt.pdb -------------------------------------------------------------------------------- /PROJETOS/Txt/Txt/bin/Debug/Txt.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Txt/Txt/bin/Debug/Txt.vshost.exe.manifest -------------------------------------------------------------------------------- /PROJETOS/Txt/Txt/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Txt/Txt/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /PROJETOS/Txt/Txt/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Txt/Txt/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PROJETOS/Txt/Txt/obj/x86/Debug/GenerateResource.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Txt/Txt/obj/x86/Debug/GenerateResource.read.1.tlog -------------------------------------------------------------------------------- /PROJETOS/Txt/Txt/obj/x86/Debug/GenerateResource.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Txt/Txt/obj/x86/Debug/GenerateResource.write.1.tlog -------------------------------------------------------------------------------- /PROJETOS/Txt/Txt/obj/x86/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Txt/Txt/obj/x86/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /PROJETOS/Txt/Txt/obj/x86/Debug/Txt.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Txt/Txt/obj/x86/Debug/Txt.Form1.resources -------------------------------------------------------------------------------- /PROJETOS/Txt/Txt/obj/x86/Debug/Txt.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Txt/Txt/obj/x86/Debug/Txt.Properties.Resources.resources -------------------------------------------------------------------------------- /PROJETOS/Txt/Txt/obj/x86/Debug/Txt.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Txt/Txt/obj/x86/Debug/Txt.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /PROJETOS/Txt/Txt/obj/x86/Debug/Txt.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/PROJETOS/Txt/Txt/obj/x86/Debug/Txt.pdb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopauloaramuni/csharp/HEAD/README.md --------------------------------------------------------------------------------