diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-06-04 19:46:22 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-06-04 19:46:22 +0300 |
| commit | 77b37339decd9c023d4ced37e677797f5b72c3ae (patch) | |
| tree | 8a536eda6721abfb310b07cd4b645d1273ef5160 /Software/Visual_Studio/Tango.Core/IO | |
| parent | 24e5224eb41da3a736c46235567c8ba5484414e3 (diff) | |
| download | Tango-77b37339decd9c023d4ced37e677797f5b72c3ae.tar.gz Tango-77b37339decd9c023d4ced37e677797f5b72c3ae.zip | |
Implemented VSIX remote debugger!!!!
Diffstat (limited to 'Software/Visual_Studio/Tango.Core/IO')
| -rw-r--r-- | Software/Visual_Studio/Tango.Core/IO/TemporaryFile.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Core/IO/TemporaryFile.cs b/Software/Visual_Studio/Tango.Core/IO/TemporaryFile.cs index 3e5bd579e..7cb720260 100644 --- a/Software/Visual_Studio/Tango.Core/IO/TemporaryFile.cs +++ b/Software/Visual_Studio/Tango.Core/IO/TemporaryFile.cs @@ -15,6 +15,14 @@ namespace Tango.Core.IO public class TemporaryFile : TemporaryItem { /// <summary> + /// Gets the name of the file. + /// </summary> + public String FileName + { + get { return System.IO.Path.GetFileName(Path); } + } + + /// <summary> /// Initializes a new instance of the <see cref="TemporaryFile"/> class. /// </summary> /// <param name="path">The temporary item path.</param> |
