aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.MFSProfiler
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS.MFSProfiler')
-rw-r--r--ShiftOS.MFSProfiler/FileCreator.Designer.cs108
-rw-r--r--ShiftOS.MFSProfiler/FileCreator.cs35
-rw-r--r--ShiftOS.MFSProfiler/FileCreator.resx120
-rw-r--r--ShiftOS.MFSProfiler/Main.Designer.cs127
-rw-r--r--ShiftOS.MFSProfiler/Main.cs10
-rw-r--r--ShiftOS.MFSProfiler/Main.resx3
-rw-r--r--ShiftOS.MFSProfiler/ShiftOS.MFSProfiler.csproj9
7 files changed, 368 insertions, 44 deletions
diff --git a/ShiftOS.MFSProfiler/FileCreator.Designer.cs b/ShiftOS.MFSProfiler/FileCreator.Designer.cs
new file mode 100644
index 0000000..09761c6
--- /dev/null
+++ b/ShiftOS.MFSProfiler/FileCreator.Designer.cs
@@ -0,0 +1,108 @@
+namespace ShiftOS.MFSProfiler
+{
+ partial class FileCreator
+ {
+ /// <summary>
+ /// Required designer variable.
+ /// </summary>
+ private System.ComponentModel.IContainer components = null;
+
+ /// <summary>
+ /// Clean up any resources being used.
+ /// </summary>
+ /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ /// <summary>
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ /// </summary>
+ private void InitializeComponent()
+ {
+ this.label1 = new System.Windows.Forms.Label();
+ this.txtfname = new System.Windows.Forms.TextBox();
+ this.txtcontents = new System.Windows.Forms.TextBox();
+ this.label2 = new System.Windows.Forms.Label();
+ this.button1 = new System.Windows.Forms.Button();
+ this.SuspendLayout();
+ //
+ // label1
+ //
+ this.label1.AutoSize = true;
+ this.label1.Location = new System.Drawing.Point(13, 13);
+ this.label1.Name = "label1";
+ this.label1.Size = new System.Drawing.Size(55, 13);
+ this.label1.TabIndex = 0;
+ this.label1.Text = "File name:";
+ //
+ // txtfname
+ //
+ this.txtfname.Location = new System.Drawing.Point(16, 30);
+ this.txtfname.Name = "txtfname";
+ this.txtfname.Size = new System.Drawing.Size(416, 20);
+ this.txtfname.TabIndex = 1;
+ //
+ // txtcontents
+ //
+ this.txtcontents.Location = new System.Drawing.Point(16, 78);
+ this.txtcontents.Multiline = true;
+ this.txtcontents.Name = "txtcontents";
+ this.txtcontents.Size = new System.Drawing.Size(416, 200);
+ this.txtcontents.TabIndex = 3;
+ //
+ // label2
+ //
+ this.label2.AutoSize = true;
+ this.label2.Location = new System.Drawing.Point(13, 61);
+ this.label2.Name = "label2";
+ this.label2.Size = new System.Drawing.Size(52, 13);
+ this.label2.TabIndex = 2;
+ this.label2.Text = "Contents:";
+ //
+ // button1
+ //
+ this.button1.Location = new System.Drawing.Point(357, 284);
+ this.button1.Name = "button1";
+ this.button1.Size = new System.Drawing.Size(75, 23);
+ this.button1.TabIndex = 4;
+ this.button1.Text = "OK";
+ this.button1.UseVisualStyleBackColor = true;
+ this.button1.Click += new System.EventHandler(this.button1_Click);
+ //
+ // FileCreator
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(444, 312);
+ this.Controls.Add(this.button1);
+ this.Controls.Add(this.txtcontents);
+ this.Controls.Add(this.label2);
+ this.Controls.Add(this.txtfname);
+ this.Controls.Add(this.label1);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
+ this.Name = "FileCreator";
+ this.Text = "FileCreator";
+ this.Load += new System.EventHandler(this.FileCreator_Load);
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label label1;
+ private System.Windows.Forms.TextBox txtfname;
+ private System.Windows.Forms.TextBox txtcontents;
+ private System.Windows.Forms.Label label2;
+ private System.Windows.Forms.Button button1;
+ }
+} \ No newline at end of file
diff --git a/ShiftOS.MFSProfiler/FileCreator.cs b/ShiftOS.MFSProfiler/FileCreator.cs
new file mode 100644
index 0000000..4ff01b2
--- /dev/null
+++ b/ShiftOS.MFSProfiler/FileCreator.cs
@@ -0,0 +1,35 @@
+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 ShiftOS.MFSProfiler
+{
+ public partial class FileCreator : Form
+ {
+ public FileCreator(string fileToCreate)
+ {
+ InitializeComponent();
+ FileToCreate = fileToCreate;
+ }
+
+ public string FileToCreate { get; private set; }
+
+ private void FileCreator_Load(object sender, EventArgs e)
+ {
+ this.DialogResult = DialogResult.Cancel;
+ }
+
+ private void button1_Click(object sender, EventArgs e)
+ {
+ ShiftOS.Objects.ShiftFS.Utils.WriteAllText(FileToCreate + "/" + txtfname.Text, txtcontents.Text);
+ this.DialogResult = DialogResult.OK;
+ this.Close();
+ }
+ }
+}
diff --git a/ShiftOS.MFSProfiler/FileCreator.resx b/ShiftOS.MFSProfiler/FileCreator.resx
new file mode 100644
index 0000000..1af7de1
--- /dev/null
+++ b/ShiftOS.MFSProfiler/FileCreator.resx
@@ -0,0 +1,120 @@
+<?xml version="1.0" encoding="utf-8"?>
+<root>
+ <!--
+ Microsoft ResX Schema
+
+ Version 2.0
+
+ The primary goals of this format is to allow a simple XML format
+ that is mostly human readable. The generation and parsing of the
+ various data types are done through the TypeConverter classes
+ associated with the data types.
+
+ Example:
+
+ ... ado.net/XML headers & schema ...
+ <resheader name="resmimetype">text/microsoft-resx</resheader>
+ <resheader name="version">2.0</resheader>
+ <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
+ <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
+ <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
+ <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
+ <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
+ <value>[base64 mime encoded serialized .NET Framework object]</value>
+ </data>
+ <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+ <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
+ <comment>This is a comment</comment>
+ </data>
+
+ There are any number of "resheader" rows that contain simple
+ name/value pairs.
+
+ Each data row contains a name, and value. The row also contains a
+ type or mimetype. Type corresponds to a .NET class that support
+ text/value conversion through the TypeConverter architecture.
+ Classes that don't support this are serialized and stored with the
+ mimetype set.
+
+ The mimetype is used for serialized objects, and tells the
+ ResXResourceReader how to depersist the object. This is currently not
+ extensible. For a given mimetype the value must be set accordingly:
+
+ Note - application/x-microsoft.net.object.binary.base64 is the format
+ that the ResXResourceWriter will generate, however the reader can
+ read any of the formats listed below.
+
+ mimetype: application/x-microsoft.net.object.binary.base64
+ value : The object must be serialized with
+ : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
+ : and then encoded with base64 encoding.
+
+ mimetype: application/x-microsoft.net.object.soap.base64
+ value : The object must be serialized with
+ : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
+ : and then encoded with base64 encoding.
+
+ mimetype: application/x-microsoft.net.object.bytearray.base64
+ value : The object must be serialized into a byte array
+ : using a System.ComponentModel.TypeConverter
+ : and then encoded with base64 encoding.
+ -->
+ <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
+ <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
+ <xsd:element name="root" msdata:IsDataSet="true">
+ <xsd:complexType>
+ <xsd:choice maxOccurs="unbounded">
+ <xsd:element name="metadata">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="value" type="xsd:string" minOccurs="0" />
+ </xsd:sequence>
+ <xsd:attribute name="name" use="required" type="xsd:string" />
+ <xsd:attribute name="type" type="xsd:string" />
+ <xsd:attribute name="mimetype" type="xsd:string" />
+ <xsd:attribute ref="xml:space" />
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="assembly">
+ <xsd:complexType>
+ <xsd:attribute name="alias" type="xsd:string" />
+ <xsd:attribute name="name" type="xsd:string" />
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="data">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+ <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
+ </xsd:sequence>
+ <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
+ <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
+ <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
+ <xsd:attribute ref="xml:space" />
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="resheader">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+ </xsd:sequence>
+ <xsd:attribute name="name" type="xsd:string" use="required" />
+ </xsd:complexType>
+ </xsd:element>
+ </xsd:choice>
+ </xsd:complexType>
+ </xsd:element>
+ </xsd:schema>
+ <resheader name="resmimetype">
+ <value>text/microsoft-resx</value>
+ </resheader>
+ <resheader name="version">
+ <value>2.0</value>
+ </resheader>
+ <resheader name="reader">
+ <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+ </resheader>
+ <resheader name="writer">
+ <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+ </resheader>
+</root> \ No newline at end of file
diff --git a/ShiftOS.MFSProfiler/Main.Designer.cs b/ShiftOS.MFSProfiler/Main.Designer.cs
index 85f1310..83e9b72 100644
--- a/ShiftOS.MFSProfiler/Main.Designer.cs
+++ b/ShiftOS.MFSProfiler/Main.Designer.cs
@@ -52,31 +52,37 @@ namespace ShiftOS.MFSProfiler
/// </summary>
private void InitializeComponent()
{
+ this.components = new System.ComponentModel.Container();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.tvfiles = new System.Windows.Forms.TreeView();
- this.pnlfileinfo = new System.Windows.Forms.Panel();
- this.pnldirectorylisting = new System.Windows.Forms.Panel();
this.panel1 = new System.Windows.Forms.Panel();
this.button1 = new System.Windows.Forms.Button();
- this.groupBox1 = new System.Windows.Forms.GroupBox();
+ this.pnlfileinfo = new System.Windows.Forms.Panel();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage2 = new System.Windows.Forms.TabPage();
+ this.txtascii = new System.Windows.Forms.TextBox();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.txtbinary = new System.Windows.Forms.TextBox();
- this.txtascii = new System.Windows.Forms.TextBox();
+ this.groupBox1 = new System.Windows.Forms.GroupBox();
this.lbfileinfo = new System.Windows.Forms.Label();
+ this.pnldirectorylisting = new System.Windows.Forms.Panel();
+ this.ctxfileoptions = new System.Windows.Forms.ContextMenuStrip(this.components);
+ this.newFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.newDirectoryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
- this.pnlfileinfo.SuspendLayout();
this.panel1.SuspendLayout();
- this.groupBox1.SuspendLayout();
+ this.pnlfileinfo.SuspendLayout();
this.groupBox2.SuspendLayout();
this.tabControl1.SuspendLayout();
this.tabPage2.SuspendLayout();
this.tabPage1.SuspendLayout();
+ this.groupBox1.SuspendLayout();
+ this.ctxfileoptions.SuspendLayout();
this.SuspendLayout();
//
// splitContainer1
@@ -107,24 +113,6 @@ namespace ShiftOS.MFSProfiler
this.tvfiles.TabIndex = 0;
this.tvfiles.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvfiles_AfterSelect);
//
- // pnlfileinfo
- //
- this.pnlfileinfo.Controls.Add(this.groupBox2);
- this.pnlfileinfo.Controls.Add(this.groupBox1);
- this.pnlfileinfo.Dock = System.Windows.Forms.DockStyle.Fill;
- this.pnlfileinfo.Location = new System.Drawing.Point(0, 0);
- this.pnlfileinfo.Name = "pnlfileinfo";
- this.pnlfileinfo.Size = new System.Drawing.Size(489, 466);
- this.pnlfileinfo.TabIndex = 0;
- //
- // pnldirectorylisting
- //
- this.pnldirectorylisting.Dock = System.Windows.Forms.DockStyle.Fill;
- this.pnldirectorylisting.Location = new System.Drawing.Point(0, 0);
- this.pnldirectorylisting.Name = "pnldirectorylisting";
- this.pnldirectorylisting.Size = new System.Drawing.Size(489, 466);
- this.pnldirectorylisting.TabIndex = 1;
- //
// panel1
//
this.panel1.Controls.Add(this.button1);
@@ -144,16 +132,15 @@ namespace ShiftOS.MFSProfiler
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
- // groupBox1
+ // pnlfileinfo
//
- this.groupBox1.Controls.Add(this.lbfileinfo);
- this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
- this.groupBox1.Location = new System.Drawing.Point(0, 0);
- this.groupBox1.Name = "groupBox1";
- this.groupBox1.Size = new System.Drawing.Size(489, 164);
- this.groupBox1.TabIndex = 0;
- this.groupBox1.TabStop = false;
- this.groupBox1.Text = "File record information";
+ this.pnlfileinfo.Controls.Add(this.groupBox2);
+ this.pnlfileinfo.Controls.Add(this.groupBox1);
+ this.pnlfileinfo.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.pnlfileinfo.Location = new System.Drawing.Point(0, 0);
+ this.pnlfileinfo.Name = "pnlfileinfo";
+ this.pnlfileinfo.Size = new System.Drawing.Size(489, 466);
+ this.pnlfileinfo.TabIndex = 0;
//
// groupBox2
//
@@ -188,6 +175,15 @@ namespace ShiftOS.MFSProfiler
this.tabPage2.Text = "ASCII";
this.tabPage2.UseVisualStyleBackColor = true;
//
+ // txtascii
+ //
+ this.txtascii.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.txtascii.Location = new System.Drawing.Point(3, 3);
+ this.txtascii.Multiline = true;
+ this.txtascii.Name = "txtascii";
+ this.txtascii.Size = new System.Drawing.Size(469, 251);
+ this.txtascii.TabIndex = 0;
+ //
// tabPage1
//
this.tabPage1.Controls.Add(this.txtbinary);
@@ -208,14 +204,16 @@ namespace ShiftOS.MFSProfiler
this.txtbinary.Size = new System.Drawing.Size(469, 251);
this.txtbinary.TabIndex = 0;
//
- // txtascii
+ // groupBox1
//
- this.txtascii.Dock = System.Windows.Forms.DockStyle.Fill;
- this.txtascii.Location = new System.Drawing.Point(3, 3);
- this.txtascii.Multiline = true;
- this.txtascii.Name = "txtascii";
- this.txtascii.Size = new System.Drawing.Size(469, 251);
- this.txtascii.TabIndex = 0;
+ this.groupBox1.Controls.Add(this.lbfileinfo);
+ this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
+ this.groupBox1.Location = new System.Drawing.Point(0, 0);
+ this.groupBox1.Name = "groupBox1";
+ this.groupBox1.Size = new System.Drawing.Size(489, 164);
+ this.groupBox1.TabIndex = 0;
+ this.groupBox1.TabStop = false;
+ this.groupBox1.Text = "File record information";
//
// lbfileinfo
//
@@ -226,27 +224,64 @@ namespace ShiftOS.MFSProfiler
this.lbfileinfo.TabIndex = 0;
this.lbfileinfo.Text = "label1";
//
- // Form1
+ // pnldirectorylisting
+ //
+ this.pnldirectorylisting.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.pnldirectorylisting.Location = new System.Drawing.Point(0, 0);
+ this.pnldirectorylisting.Name = "pnldirectorylisting";
+ this.pnldirectorylisting.Size = new System.Drawing.Size(489, 466);
+ this.pnldirectorylisting.TabIndex = 1;
+ //
+ // ctxfileoptions
+ //
+ this.ctxfileoptions.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.newFileToolStripMenuItem,
+ this.newDirectoryToolStripMenuItem,
+ this.deleteToolStripMenuItem});
+ this.ctxfileoptions.Name = "ctxfileoptions";
+ this.ctxfileoptions.Size = new System.Drawing.Size(153, 92);
+ //
+ // newFileToolStripMenuItem
+ //
+ this.newFileToolStripMenuItem.Name = "newFileToolStripMenuItem";
+ this.newFileToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
+ this.newFileToolStripMenuItem.Text = "New file";
+ this.newFileToolStripMenuItem.Click += new System.EventHandler(this.newFileToolStripMenuItem_Click);
+ //
+ // newDirectoryToolStripMenuItem
+ //
+ this.newDirectoryToolStripMenuItem.Name = "newDirectoryToolStripMenuItem";
+ this.newDirectoryToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
+ this.newDirectoryToolStripMenuItem.Text = "New directory";
+ //
+ // deleteToolStripMenuItem
+ //
+ this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
+ this.deleteToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
+ this.deleteToolStripMenuItem.Text = "Delete";
+ //
+ // Main
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(739, 466);
this.Controls.Add(this.splitContainer1);
- this.Name = "Form1";
+ this.Name = "Main";
this.Text = "Form1";
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
this.splitContainer1.ResumeLayout(false);
- this.pnlfileinfo.ResumeLayout(false);
this.panel1.ResumeLayout(false);
- this.groupBox1.ResumeLayout(false);
+ this.pnlfileinfo.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
this.tabControl1.ResumeLayout(false);
this.tabPage2.ResumeLayout(false);
this.tabPage2.PerformLayout();
this.tabPage1.ResumeLayout(false);
this.tabPage1.PerformLayout();
+ this.groupBox1.ResumeLayout(false);
+ this.ctxfileoptions.ResumeLayout(false);
this.ResumeLayout(false);
}
@@ -267,6 +302,10 @@ namespace ShiftOS.MFSProfiler
private System.Windows.Forms.TextBox txtbinary;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Label lbfileinfo;
+ private System.Windows.Forms.ContextMenuStrip ctxfileoptions;
+ private System.Windows.Forms.ToolStripMenuItem newFileToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem newDirectoryToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem deleteToolStripMenuItem;
}
}
diff --git a/ShiftOS.MFSProfiler/Main.cs b/ShiftOS.MFSProfiler/Main.cs
index dbfe276..39f087c 100644
--- a/ShiftOS.MFSProfiler/Main.cs
+++ b/ShiftOS.MFSProfiler/Main.cs
@@ -65,6 +65,7 @@ namespace ShiftOS.MFSProfiler
public void RecursiveDirectoryAdd(TreeNode node)
{
+ node.ContextMenuStrip = ctxfileoptions;
foreach (var dir in GetDirectories(node.Tag.ToString()))
{
var dirInf = GetDirectoryInfo(dir);
@@ -131,5 +132,14 @@ System path: {tvfiles.SelectedNode.Tag.ToString()}";
}
} catch { }
}
+
+ private void newFileToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ var fCreator = new FileCreator(tvfiles.SelectedNode.Tag.ToString());
+ if(fCreator.ShowDialog() == DialogResult.OK)
+ {
+ SetupTree();
+ }
+ }
}
}
diff --git a/ShiftOS.MFSProfiler/Main.resx b/ShiftOS.MFSProfiler/Main.resx
index 1af7de1..107e277 100644
--- a/ShiftOS.MFSProfiler/Main.resx
+++ b/ShiftOS.MFSProfiler/Main.resx
@@ -117,4 +117,7 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
+ <metadata name="ctxfileoptions.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
+ <value>17, 17</value>
+ </metadata>
</root> \ No newline at end of file
diff --git a/ShiftOS.MFSProfiler/ShiftOS.MFSProfiler.csproj b/ShiftOS.MFSProfiler/ShiftOS.MFSProfiler.csproj
index f20926b..f1f944b 100644
--- a/ShiftOS.MFSProfiler/ShiftOS.MFSProfiler.csproj
+++ b/ShiftOS.MFSProfiler/ShiftOS.MFSProfiler.csproj
@@ -46,6 +46,12 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
+ <Compile Include="FileCreator.cs">
+ <SubType>Form</SubType>
+ </Compile>
+ <Compile Include="FileCreator.Designer.cs">
+ <DependentUpon>FileCreator.cs</DependentUpon>
+ </Compile>
<Compile Include="Main.cs">
<SubType>Form</SubType>
</Compile>
@@ -54,6 +60,9 @@
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
+ <EmbeddedResource Include="FileCreator.resx">
+ <DependentUpon>FileCreator.cs</DependentUpon>
+ </EmbeddedResource>
<EmbeddedResource Include="Main.resx">
<DependentUpon>Main.cs</DependentUpon>
</EmbeddedResource>