diff --git a/build/_build.csproj.DotSettings b/build/_build.csproj.DotSettings index eb3f4c2..c815d36 100644 --- a/build/_build.csproj.DotSettings +++ b/build/_build.csproj.DotSettings @@ -17,6 +17,8 @@ False <Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /> <Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /> + <Policy><Descriptor Staticness="Instance" AccessRightKinds="Private" Description="Instance fields (private)"><ElementKinds><Kind Name="FIELD" /><Kind Name="READONLY_FIELD" /></ElementKinds></Descriptor><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></Policy> + <Policy><Descriptor Staticness="Static" AccessRightKinds="Private" Description="Static fields (private)"><ElementKinds><Kind Name="FIELD" /></ElementKinds></Descriptor><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></Policy> True True True @@ -25,4 +27,5 @@ True True True - True + True + True diff --git a/src/EfuseManager/App.xaml b/src/EfuseManager/App.xaml new file mode 100644 index 0000000..e5c4814 --- /dev/null +++ b/src/EfuseManager/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/src/EfuseManager/App.xaml.cs b/src/EfuseManager/App.xaml.cs new file mode 100644 index 0000000..20bed2c --- /dev/null +++ b/src/EfuseManager/App.xaml.cs @@ -0,0 +1,14 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace EfuseManager +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } + +} diff --git a/src/EfuseManager/AssemblyInfo.cs b/src/EfuseManager/AssemblyInfo.cs new file mode 100644 index 0000000..b0ec827 --- /dev/null +++ b/src/EfuseManager/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/src/EfuseManager/EfuseManager.csproj b/src/EfuseManager/EfuseManager.csproj new file mode 100644 index 0000000..e3e33e3 --- /dev/null +++ b/src/EfuseManager/EfuseManager.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net8.0-windows + enable + enable + true + + + diff --git a/src/EfuseManager/MainWindow.xaml b/src/EfuseManager/MainWindow.xaml new file mode 100644 index 0000000..2eb29d2 --- /dev/null +++ b/src/EfuseManager/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/src/EfuseManager/MainWindow.xaml.cs b/src/EfuseManager/MainWindow.xaml.cs new file mode 100644 index 0000000..85b2edc --- /dev/null +++ b/src/EfuseManager/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 EfuseManager +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +} \ No newline at end of file diff --git a/src/WiFiDriver.sln b/src/WiFiDriver.sln index ee1cc9c..43d0089 100644 --- a/src/WiFiDriver.sln +++ b/src/WiFiDriver.sln @@ -18,6 +18,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "_build", "..\build\_build.c EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Rtl8812auNet.AndroidDemo", "Rtl8812auNet.AndroidDemo\Rtl8812auNet.AndroidDemo.csproj", "{A7578F4D-6EB4-4033-A642-CBD1AE74782A}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EfuseManager", "EfuseManager\EfuseManager.csproj", "{4C99317F-FF71-4F2D-A422-D6F9EF3099F7}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -40,6 +42,10 @@ Global {A7578F4D-6EB4-4033-A642-CBD1AE74782A}.Release|Any CPU.ActiveCfg = Release|Any CPU {A7578F4D-6EB4-4033-A642-CBD1AE74782A}.Release|Any CPU.Build.0 = Release|Any CPU {A7578F4D-6EB4-4033-A642-CBD1AE74782A}.Release|Any CPU.Deploy.0 = Release|Any CPU + {4C99317F-FF71-4F2D-A422-D6F9EF3099F7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4C99317F-FF71-4F2D-A422-D6F9EF3099F7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4C99317F-FF71-4F2D-A422-D6F9EF3099F7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4C99317F-FF71-4F2D-A422-D6F9EF3099F7}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -47,6 +53,7 @@ Global GlobalSection(NestedProjects) = preSolution {E42C6D7F-684A-4AE7-85FD-E04CCC20D671} = {7B609A23-9CEE-4D88-89C1-8DB3F3CDD98C} {A7578F4D-6EB4-4033-A642-CBD1AE74782A} = {7B609A23-9CEE-4D88-89C1-8DB3F3CDD98C} + {4C99317F-FF71-4F2D-A422-D6F9EF3099F7} = {7B609A23-9CEE-4D88-89C1-8DB3F3CDD98C} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {ACCC2971-DFBF-4B33-AA8B-2C34422F876B} diff --git a/src/WiFiDriver.sln.DotSettings b/src/WiFiDriver.sln.DotSettings index e0c7006..af1e643 100644 --- a/src/WiFiDriver.sln.DotSettings +++ b/src/WiFiDriver.sln.DotSettings @@ -4,6 +4,8 @@ LSSI RF <Policy Inspect="True" Prefix="" Suffix="" Style="AA_BB" /> + <Policy><Descriptor Staticness="Any" AccessRightKinds="Private" Description="Constant fields (private)"><ElementKinds><Kind Name="CONSTANT_FIELD" /></ElementKinds></Descriptor><Policy Inspect="True" Prefix="" Suffix="" Style="AA_BB" /></Policy> + True True True True