From c68ad73e1054934b63d8977ec472dd6db78cc396 Mon Sep 17 00:00:00 2001 From: Cinorid Date: Fri, 4 Dec 2020 12:09:35 +0330 Subject: [PATCH] Add project files. --- ...wei-Honor-Unlock-Bootloader-NetCore.csproj | 9 ++++ .../Program.cs | 12 +++++ ...onor-Unlock-Bootloader-NetFramework.csproj | 48 +++++++++++++++++++ .../Program.cs | 14 ++++++ .../Properties/AssemblyInfo.cs | 36 ++++++++++++++ Huawei-Honor-Unlock-Bootloader.sln | 31 ++++++++++++ 6 files changed, 150 insertions(+) create mode 100644 Huawei-Honor-Unlock-Bootloader-NetCore/Huawei-Honor-Unlock-Bootloader-NetCore.csproj create mode 100644 Huawei-Honor-Unlock-Bootloader-NetCore/Program.cs create mode 100644 Huawei-Honor-Unlock-Bootloader-NetFramework/Huawei-Honor-Unlock-Bootloader-NetFramework.csproj create mode 100644 Huawei-Honor-Unlock-Bootloader-NetFramework/Program.cs create mode 100644 Huawei-Honor-Unlock-Bootloader-NetFramework/Properties/AssemblyInfo.cs create mode 100644 Huawei-Honor-Unlock-Bootloader.sln diff --git a/Huawei-Honor-Unlock-Bootloader-NetCore/Huawei-Honor-Unlock-Bootloader-NetCore.csproj b/Huawei-Honor-Unlock-Bootloader-NetCore/Huawei-Honor-Unlock-Bootloader-NetCore.csproj new file mode 100644 index 0000000..7a2b353 --- /dev/null +++ b/Huawei-Honor-Unlock-Bootloader-NetCore/Huawei-Honor-Unlock-Bootloader-NetCore.csproj @@ -0,0 +1,9 @@ + + + + Exe + netcoreapp3.1 + Huawei_Honor_Unlock_Bootloader_NetCore + + + diff --git a/Huawei-Honor-Unlock-Bootloader-NetCore/Program.cs b/Huawei-Honor-Unlock-Bootloader-NetCore/Program.cs new file mode 100644 index 0000000..27d199c --- /dev/null +++ b/Huawei-Honor-Unlock-Bootloader-NetCore/Program.cs @@ -0,0 +1,12 @@ +using System; + +namespace Huawei_Honor_Unlock_Bootloader_NetCore +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +} diff --git a/Huawei-Honor-Unlock-Bootloader-NetFramework/Huawei-Honor-Unlock-Bootloader-NetFramework.csproj b/Huawei-Honor-Unlock-Bootloader-NetFramework/Huawei-Honor-Unlock-Bootloader-NetFramework.csproj new file mode 100644 index 0000000..76a475a --- /dev/null +++ b/Huawei-Honor-Unlock-Bootloader-NetFramework/Huawei-Honor-Unlock-Bootloader-NetFramework.csproj @@ -0,0 +1,48 @@ + + + + + Debug + AnyCPU + {9FAAD6B0-CFAF-4FB7-9C06-FC36C283A540} + Exe + Huawei_Honor_Unlock_Bootloader_NetFramework + Huawei-Honor-Unlock-Bootloader-NetFramework + v4.0 + 512 + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Huawei-Honor-Unlock-Bootloader-NetFramework/Program.cs b/Huawei-Honor-Unlock-Bootloader-NetFramework/Program.cs new file mode 100644 index 0000000..9d131cf --- /dev/null +++ b/Huawei-Honor-Unlock-Bootloader-NetFramework/Program.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace Huawei_Honor_Unlock_Bootloader_NetFramework +{ + class Program + { + static void Main(string[] args) + { + } + } +} diff --git a/Huawei-Honor-Unlock-Bootloader-NetFramework/Properties/AssemblyInfo.cs b/Huawei-Honor-Unlock-Bootloader-NetFramework/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..c661d2a --- /dev/null +++ b/Huawei-Honor-Unlock-Bootloader-NetFramework/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Huawei-Honor-Unlock-Bootloader-NetFramework")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Huawei-Honor-Unlock-Bootloader-NetFramework")] +[assembly: AssemblyCopyright("Copyright © 2020")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("9faad6b0-cfaf-4fb7-9c06-fc36c283a540")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Huawei-Honor-Unlock-Bootloader.sln b/Huawei-Honor-Unlock-Bootloader.sln new file mode 100644 index 0000000..ed2c2eb --- /dev/null +++ b/Huawei-Honor-Unlock-Bootloader.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30626.31 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Huawei-Honor-Unlock-Bootloader-NetFramework", "Huawei-Honor-Unlock-Bootloader-NetFramework\Huawei-Honor-Unlock-Bootloader-NetFramework.csproj", "{9FAAD6B0-CFAF-4FB7-9C06-FC36C283A540}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Huawei-Honor-Unlock-Bootloader-NetCore", "Huawei-Honor-Unlock-Bootloader-NetCore\Huawei-Honor-Unlock-Bootloader-NetCore.csproj", "{437BE36F-21D8-460B-BE95-DAAD3D18AB55}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9FAAD6B0-CFAF-4FB7-9C06-FC36C283A540}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9FAAD6B0-CFAF-4FB7-9C06-FC36C283A540}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9FAAD6B0-CFAF-4FB7-9C06-FC36C283A540}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9FAAD6B0-CFAF-4FB7-9C06-FC36C283A540}.Release|Any CPU.Build.0 = Release|Any CPU + {437BE36F-21D8-460B-BE95-DAAD3D18AB55}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {437BE36F-21D8-460B-BE95-DAAD3D18AB55}.Debug|Any CPU.Build.0 = Debug|Any CPU + {437BE36F-21D8-460B-BE95-DAAD3D18AB55}.Release|Any CPU.ActiveCfg = Release|Any CPU + {437BE36F-21D8-460B-BE95-DAAD3D18AB55}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {E49A2504-182D-4746-B229-5996081BBF51} + EndGlobalSection +EndGlobal