aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/VSIX/Tango.BuildExtensions/ProgressForm.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/VSIX/Tango.BuildExtensions/ProgressForm.cs')
-rw-r--r--Software/Visual_Studio/VSIX/Tango.BuildExtensions/ProgressForm.cs33
1 files changed, 0 insertions, 33 deletions
diff --git a/Software/Visual_Studio/VSIX/Tango.BuildExtensions/ProgressForm.cs b/Software/Visual_Studio/VSIX/Tango.BuildExtensions/ProgressForm.cs
deleted file mode 100644
index 349721155..000000000
--- a/Software/Visual_Studio/VSIX/Tango.BuildExtensions/ProgressForm.cs
+++ /dev/null
@@ -1,33 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Drawing;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows.Forms;
-
-namespace Tango.BuildExtensions
-{
- public partial class SelectForm : Form
- {
- public SelectForm()
- {
- InitializeComponent();
- }
-
- public void SetStatus(String text)
- {
- lbSTatus.Text = text;
- }
-
- protected override bool ShowWithoutActivation
- {
- get
- {
- return true;
- }
- }
- }
-}