├── .vs └── SerialPortTerminal │ └── v15 │ ├── .suo │ ├── Server │ └── sqlite3 │ │ ├── db.lock │ │ └── storage.ide │ └── sqlite3 │ ├── db.lock │ └── storage.ide ├── LICENSE ├── README.md ├── SerialPortTerminal.sln ├── SerialPortTerminal ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── app.manifest ├── SerialPortInfo.cs ├── SerialPortTerminal.csproj ├── SerialPortTerminal.csproj.user ├── SerialPortTerminal_TemporaryKey.pfx ├── SerialPortTerminal_icon.ico ├── bin │ ├── Debug │ │ ├── Awesomium.Core.dll │ │ ├── Awesomium.Core.xml │ │ ├── Awesomium.Windows.Forms.dll │ │ ├── Awesomium.Windows.Forms.xml │ │ ├── Awesomium.dll │ │ ├── AwesomiumProcess │ │ ├── SerialPortTerminal.exe │ │ ├── SerialPortTerminal.exe.config │ │ ├── SerialPortTerminal.pdb │ │ ├── en-US.dll │ │ └── icudt42.dll │ └── Release │ │ ├── Awesomium.Core.dll │ │ ├── Awesomium.Core.xml │ │ ├── Awesomium.Windows.Forms.dll │ │ ├── Awesomium.Windows.Forms.xml │ │ ├── Awesomium.dll │ │ ├── AwesomiumProcess │ │ ├── SerialPortTerminal.application │ │ ├── SerialPortTerminal.exe │ │ ├── SerialPortTerminal.exe.config │ │ ├── SerialPortTerminal.exe.manifest │ │ ├── SerialPortTerminal.pdb │ │ ├── app.publish │ │ └── SerialPortTerminal.exe │ │ ├── en-US.dll │ │ └── icudt42.dll └── obj │ ├── Debug │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── SerialPortTerminal.Form1.resources │ ├── SerialPortTerminal.Properties.Resources.resources │ ├── SerialPortTerminal.csproj.CopyComplete │ ├── SerialPortTerminal.csproj.CoreCompileInputs.cache │ ├── SerialPortTerminal.csproj.FileListAbsolute.txt │ ├── SerialPortTerminal.csproj.GenerateResource.Cache │ ├── SerialPortTerminal.csprojResolveAssemblyReference.cache │ ├── SerialPortTerminal.exe │ ├── SerialPortTerminal.pdb │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── Release │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── SerialPortTerminal.Form1.resources │ ├── SerialPortTerminal.Properties.Resources.resources │ ├── SerialPortTerminal.TrustInfo.xml │ ├── SerialPortTerminal.application │ ├── SerialPortTerminal.csproj.CopyComplete │ ├── SerialPortTerminal.csproj.CoreCompileInputs.cache │ ├── SerialPortTerminal.csproj.FileListAbsolute.txt │ ├── SerialPortTerminal.csproj.GenerateResource.Cache │ ├── SerialPortTerminal.csprojResolveAssemblyReference.cache │ ├── SerialPortTerminal.exe │ ├── SerialPortTerminal.exe.manifest │ ├── SerialPortTerminal.pdb │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── SerialPortTerminal_icon.ai ├── SerialPortTerminal_icon.ico ├── SerialPortTerminal_icon.png └── image └── ui.png /.vs/SerialPortTerminal/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/.vs/SerialPortTerminal/v15/.suo -------------------------------------------------------------------------------- /.vs/SerialPortTerminal/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/SerialPortTerminal/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/.vs/SerialPortTerminal/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/SerialPortTerminal/v15/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/SerialPortTerminal/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/.vs/SerialPortTerminal/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/README.md -------------------------------------------------------------------------------- /SerialPortTerminal.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal.sln -------------------------------------------------------------------------------- /SerialPortTerminal/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/App.config -------------------------------------------------------------------------------- /SerialPortTerminal/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/Form1.Designer.cs -------------------------------------------------------------------------------- /SerialPortTerminal/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/Form1.cs -------------------------------------------------------------------------------- /SerialPortTerminal/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/Form1.resx -------------------------------------------------------------------------------- /SerialPortTerminal/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/Program.cs -------------------------------------------------------------------------------- /SerialPortTerminal/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SerialPortTerminal/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SerialPortTerminal/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/Properties/Resources.resx -------------------------------------------------------------------------------- /SerialPortTerminal/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SerialPortTerminal/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/Properties/Settings.settings -------------------------------------------------------------------------------- /SerialPortTerminal/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/Properties/app.manifest -------------------------------------------------------------------------------- /SerialPortTerminal/SerialPortInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/SerialPortInfo.cs -------------------------------------------------------------------------------- /SerialPortTerminal/SerialPortTerminal.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/SerialPortTerminal.csproj -------------------------------------------------------------------------------- /SerialPortTerminal/SerialPortTerminal.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/SerialPortTerminal.csproj.user -------------------------------------------------------------------------------- /SerialPortTerminal/SerialPortTerminal_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/SerialPortTerminal_TemporaryKey.pfx -------------------------------------------------------------------------------- /SerialPortTerminal/SerialPortTerminal_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/SerialPortTerminal_icon.ico -------------------------------------------------------------------------------- /SerialPortTerminal/bin/Debug/Awesomium.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/bin/Debug/Awesomium.Core.dll -------------------------------------------------------------------------------- /SerialPortTerminal/bin/Debug/Awesomium.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/bin/Debug/Awesomium.Core.xml -------------------------------------------------------------------------------- /SerialPortTerminal/bin/Debug/Awesomium.Windows.Forms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/bin/Debug/Awesomium.Windows.Forms.dll -------------------------------------------------------------------------------- /SerialPortTerminal/bin/Debug/Awesomium.Windows.Forms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/bin/Debug/Awesomium.Windows.Forms.xml -------------------------------------------------------------------------------- /SerialPortTerminal/bin/Debug/Awesomium.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/bin/Debug/Awesomium.dll -------------------------------------------------------------------------------- /SerialPortTerminal/bin/Debug/AwesomiumProcess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/bin/Debug/AwesomiumProcess -------------------------------------------------------------------------------- /SerialPortTerminal/bin/Debug/SerialPortTerminal.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/bin/Debug/SerialPortTerminal.exe -------------------------------------------------------------------------------- /SerialPortTerminal/bin/Debug/SerialPortTerminal.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/bin/Debug/SerialPortTerminal.exe.config -------------------------------------------------------------------------------- /SerialPortTerminal/bin/Debug/SerialPortTerminal.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/bin/Debug/SerialPortTerminal.pdb -------------------------------------------------------------------------------- /SerialPortTerminal/bin/Debug/en-US.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/bin/Debug/en-US.dll -------------------------------------------------------------------------------- /SerialPortTerminal/bin/Debug/icudt42.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/bin/Debug/icudt42.dll -------------------------------------------------------------------------------- /SerialPortTerminal/bin/Release/Awesomium.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/bin/Release/Awesomium.Core.dll -------------------------------------------------------------------------------- /SerialPortTerminal/bin/Release/Awesomium.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/bin/Release/Awesomium.Core.xml -------------------------------------------------------------------------------- /SerialPortTerminal/bin/Release/Awesomium.Windows.Forms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/bin/Release/Awesomium.Windows.Forms.dll -------------------------------------------------------------------------------- /SerialPortTerminal/bin/Release/Awesomium.Windows.Forms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/bin/Release/Awesomium.Windows.Forms.xml -------------------------------------------------------------------------------- /SerialPortTerminal/bin/Release/Awesomium.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/bin/Release/Awesomium.dll -------------------------------------------------------------------------------- /SerialPortTerminal/bin/Release/AwesomiumProcess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/bin/Release/AwesomiumProcess -------------------------------------------------------------------------------- /SerialPortTerminal/bin/Release/SerialPortTerminal.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/bin/Release/SerialPortTerminal.application -------------------------------------------------------------------------------- /SerialPortTerminal/bin/Release/SerialPortTerminal.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/bin/Release/SerialPortTerminal.exe -------------------------------------------------------------------------------- /SerialPortTerminal/bin/Release/SerialPortTerminal.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/bin/Release/SerialPortTerminal.exe.config -------------------------------------------------------------------------------- /SerialPortTerminal/bin/Release/SerialPortTerminal.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/bin/Release/SerialPortTerminal.exe.manifest -------------------------------------------------------------------------------- /SerialPortTerminal/bin/Release/SerialPortTerminal.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/bin/Release/SerialPortTerminal.pdb -------------------------------------------------------------------------------- /SerialPortTerminal/bin/Release/app.publish/SerialPortTerminal.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/bin/Release/app.publish/SerialPortTerminal.exe -------------------------------------------------------------------------------- /SerialPortTerminal/bin/Release/en-US.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/bin/Release/en-US.dll -------------------------------------------------------------------------------- /SerialPortTerminal/bin/Release/icudt42.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/bin/Release/icudt42.dll -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Debug/SerialPortTerminal.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/obj/Debug/SerialPortTerminal.Form1.resources -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Debug/SerialPortTerminal.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/obj/Debug/SerialPortTerminal.Properties.Resources.resources -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Debug/SerialPortTerminal.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Debug/SerialPortTerminal.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 013adf3a75bea81d3a273a25599b7e4f2dd44aa8 2 | -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Debug/SerialPortTerminal.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/obj/Debug/SerialPortTerminal.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Debug/SerialPortTerminal.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/obj/Debug/SerialPortTerminal.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Debug/SerialPortTerminal.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/obj/Debug/SerialPortTerminal.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Debug/SerialPortTerminal.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/obj/Debug/SerialPortTerminal.exe -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Debug/SerialPortTerminal.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/obj/Debug/SerialPortTerminal.pdb -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/obj/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Release/SerialPortTerminal.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/obj/Release/SerialPortTerminal.Form1.resources -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Release/SerialPortTerminal.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/obj/Release/SerialPortTerminal.Properties.Resources.resources -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Release/SerialPortTerminal.TrustInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/obj/Release/SerialPortTerminal.TrustInfo.xml -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Release/SerialPortTerminal.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/obj/Release/SerialPortTerminal.application -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Release/SerialPortTerminal.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Release/SerialPortTerminal.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 013adf3a75bea81d3a273a25599b7e4f2dd44aa8 2 | -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Release/SerialPortTerminal.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/obj/Release/SerialPortTerminal.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Release/SerialPortTerminal.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/obj/Release/SerialPortTerminal.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Release/SerialPortTerminal.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/obj/Release/SerialPortTerminal.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Release/SerialPortTerminal.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/obj/Release/SerialPortTerminal.exe -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Release/SerialPortTerminal.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/obj/Release/SerialPortTerminal.exe.manifest -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Release/SerialPortTerminal.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal/obj/Release/SerialPortTerminal.pdb -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SerialPortTerminal/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SerialPortTerminal_icon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal_icon.ai -------------------------------------------------------------------------------- /SerialPortTerminal_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal_icon.ico -------------------------------------------------------------------------------- /SerialPortTerminal_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/SerialPortTerminal_icon.png -------------------------------------------------------------------------------- /image/ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vimcaw/SerialPortTerminal/HEAD/image/ui.png --------------------------------------------------------------------------------