diff --git a/FATrace.Com/Class1.cs b/FATrace.Com/Class1.cs new file mode 100644 index 0000000..dc6b742 --- /dev/null +++ b/FATrace.Com/Class1.cs @@ -0,0 +1,7 @@ +namespace FATrace.Com +{ + public class Class1 + { + + } +} diff --git a/FATrace.Com/FATrace.Com.csproj b/FATrace.Com/FATrace.Com.csproj new file mode 100644 index 0000000..fa71b7a --- /dev/null +++ b/FATrace.Com/FATrace.Com.csproj @@ -0,0 +1,9 @@ + + + + net8.0 + enable + enable + + + diff --git a/FATrace.Model/Class1.cs b/FATrace.Model/Class1.cs new file mode 100644 index 0000000..579a030 --- /dev/null +++ b/FATrace.Model/Class1.cs @@ -0,0 +1,7 @@ +namespace FATrace.Model +{ + public class Class1 + { + + } +} diff --git a/FATrace.Model/FATrace.Model.csproj b/FATrace.Model/FATrace.Model.csproj new file mode 100644 index 0000000..fa71b7a --- /dev/null +++ b/FATrace.Model/FATrace.Model.csproj @@ -0,0 +1,9 @@ + + + + net8.0 + enable + enable + + + diff --git a/FATrace.OEMApp/FATrace.OEMApp.csproj b/FATrace.OEMApp/FATrace.OEMApp.csproj new file mode 100644 index 0000000..663fdb8 --- /dev/null +++ b/FATrace.OEMApp/FATrace.OEMApp.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net8.0-windows + enable + true + enable + + + \ No newline at end of file diff --git a/FATrace.OEMApp/Form1.Designer.cs b/FATrace.OEMApp/Form1.Designer.cs new file mode 100644 index 0000000..5bd48ee --- /dev/null +++ b/FATrace.OEMApp/Form1.Designer.cs @@ -0,0 +1,39 @@ +namespace FATrace.OEMApp +{ + partial class Form1 + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(800, 450); + this.Text = "Form1"; + } + + #endregion + } +} diff --git a/FATrace.OEMApp/Form1.cs b/FATrace.OEMApp/Form1.cs new file mode 100644 index 0000000..2237818 --- /dev/null +++ b/FATrace.OEMApp/Form1.cs @@ -0,0 +1,10 @@ +namespace FATrace.OEMApp +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + } +} diff --git a/FATrace.OEMApp/Form1.resx b/FATrace.OEMApp/Form1.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/FATrace.OEMApp/Form1.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/FATrace.OEMApp/Program.cs b/FATrace.OEMApp/Program.cs new file mode 100644 index 0000000..e00ecb3 --- /dev/null +++ b/FATrace.OEMApp/Program.cs @@ -0,0 +1,17 @@ +namespace FATrace.OEMApp +{ + internal static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + // To customize application configuration such as set high DPI settings or default font, + // see https://aka.ms/applicationconfiguration. + ApplicationConfiguration.Initialize(); + Application.Run(new Form1()); + } + } +} \ No newline at end of file diff --git a/FATrace.WPLApp/App.xaml b/FATrace.WPLApp/App.xaml new file mode 100644 index 0000000..4b93d0e --- /dev/null +++ b/FATrace.WPLApp/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/FATrace.WPLApp/App.xaml.cs b/FATrace.WPLApp/App.xaml.cs new file mode 100644 index 0000000..5ed2c02 --- /dev/null +++ b/FATrace.WPLApp/App.xaml.cs @@ -0,0 +1,14 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace FATrace.WPLApp +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } + +} diff --git a/FATrace.WPLApp/AssemblyInfo.cs b/FATrace.WPLApp/AssemblyInfo.cs new file mode 100644 index 0000000..b0ec827 --- /dev/null +++ b/FATrace.WPLApp/AssemblyInfo.cs @@ -0,0 +1,10 @@ +using System.Windows; + +[assembly: ThemeInfo( + ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located + //(used if a resource is not found in the page, + // or application resource dictionaries) + ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located + //(used if a resource is not found in the page, + // app, or any theme specific resource dictionaries) +)] diff --git a/FATrace.WPLApp/FATrace.WPLApp.csproj b/FATrace.WPLApp/FATrace.WPLApp.csproj new file mode 100644 index 0000000..e3e33e3 --- /dev/null +++ b/FATrace.WPLApp/FATrace.WPLApp.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net8.0-windows + enable + enable + true + + + diff --git a/FATrace.WPLApp/MainWindow.xaml b/FATrace.WPLApp/MainWindow.xaml new file mode 100644 index 0000000..b0feabb --- /dev/null +++ b/FATrace.WPLApp/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/FATrace.WPLApp/MainWindow.xaml.cs b/FATrace.WPLApp/MainWindow.xaml.cs new file mode 100644 index 0000000..4b6d537 --- /dev/null +++ b/FATrace.WPLApp/MainWindow.xaml.cs @@ -0,0 +1,24 @@ +using System.Text; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace FATrace.WPLApp +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +} \ No newline at end of file diff --git a/FATrace.sln b/FATrace.sln new file mode 100644 index 0000000..3ecffe7 --- /dev/null +++ b/FATrace.sln @@ -0,0 +1,43 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.14.36301.6 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FATrace.OEMApp", "FATrace.OEMApp\FATrace.OEMApp.csproj", "{82426D68-5F36-4DEC-9418-DEEFC46F43A4}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FATrace.Model", "FATrace.Model\FATrace.Model.csproj", "{117745BA-551B-48DB-8076-62844ED6970F}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FATrace.Com", "FATrace.Com\FATrace.Com.csproj", "{DBCCB349-E583-4574-A615-8B852C002D2B}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FATrace.WPLApp", "FATrace.WPLApp\FATrace.WPLApp.csproj", "{C2D24A9D-E8B7-4460-B047-B3ADFA2FF8A1}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {82426D68-5F36-4DEC-9418-DEEFC46F43A4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {82426D68-5F36-4DEC-9418-DEEFC46F43A4}.Debug|Any CPU.Build.0 = Debug|Any CPU + {82426D68-5F36-4DEC-9418-DEEFC46F43A4}.Release|Any CPU.ActiveCfg = Release|Any CPU + {82426D68-5F36-4DEC-9418-DEEFC46F43A4}.Release|Any CPU.Build.0 = Release|Any CPU + {117745BA-551B-48DB-8076-62844ED6970F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {117745BA-551B-48DB-8076-62844ED6970F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {117745BA-551B-48DB-8076-62844ED6970F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {117745BA-551B-48DB-8076-62844ED6970F}.Release|Any CPU.Build.0 = Release|Any CPU + {DBCCB349-E583-4574-A615-8B852C002D2B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DBCCB349-E583-4574-A615-8B852C002D2B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DBCCB349-E583-4574-A615-8B852C002D2B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DBCCB349-E583-4574-A615-8B852C002D2B}.Release|Any CPU.Build.0 = Release|Any CPU + {C2D24A9D-E8B7-4460-B047-B3ADFA2FF8A1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C2D24A9D-E8B7-4460-B047-B3ADFA2FF8A1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C2D24A9D-E8B7-4460-B047-B3ADFA2FF8A1}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C2D24A9D-E8B7-4460-B047-B3ADFA2FF8A1}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {86A539A0-F0DD-4620-9E1A-7071C62328A0} + EndGlobalSection +EndGlobal