diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-05-30 19:12:04 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-05-30 19:12:04 +0300 |
| commit | 9169a318121f8919e9b54cc076f63ef9a65d5b2b (patch) | |
| tree | 1dd46f263b835225a930255687583e3f2fd1e7f6 /Software/Visual_Studio/VSIX/Tango.BuildExtensions/RemoteDebugForm.cs | |
| parent | cf5d8ed0f510792196e0153d9f9008cdce02d523 (diff) | |
| download | Tango-9169a318121f8919e9b54cc076f63ef9a65d5b2b.tar.gz Tango-9169a318121f8919e9b54cc076f63ef9a65d5b2b.zip | |
Implemented SQLite db on PPC.
Working on PPC.
Diffstat (limited to 'Software/Visual_Studio/VSIX/Tango.BuildExtensions/RemoteDebugForm.cs')
| -rw-r--r-- | Software/Visual_Studio/VSIX/Tango.BuildExtensions/RemoteDebugForm.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Software/Visual_Studio/VSIX/Tango.BuildExtensions/RemoteDebugForm.cs b/Software/Visual_Studio/VSIX/Tango.BuildExtensions/RemoteDebugForm.cs index a59a138e0..fe44ee664 100644 --- a/Software/Visual_Studio/VSIX/Tango.BuildExtensions/RemoteDebugForm.cs +++ b/Software/Visual_Studio/VSIX/Tango.BuildExtensions/RemoteDebugForm.cs @@ -15,6 +15,7 @@ namespace Tango.BuildExtensions public String HostName { get; set; } public String UserName { get; set; } public String Password { get; set; } + public String SharedFolder { get; set; } public RemoteDebugForm(String projectName) { @@ -37,6 +38,7 @@ namespace Tango.BuildExtensions HostName = txtHostName.Text; UserName = txtUserName.Text; Password = txtPass.Text; + SharedFolder = txtSharedFolder.Text; DialogResult = DialogResult.OK; Close(); } |
