From e5f51414bc626d3ad233021067613bf679ae9dab Mon Sep 17 00:00:00 2001 From: Juster Zhu Date: Mon, 27 Nov 2023 20:56:20 +0800 Subject: [PATCH] =?UTF-8?q?feature=EF=BC=9A=20add=20minibowl=20process?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/dotnet-ci.yaml | 4 ++-- .../GeneralUpdate.MiniBowl.csproj | 10 ++++++++++ .../GeneralUpdate.MiniBowl/MiniBowlBootstrap.cs | 15 +++++++++++++++ src/c#/GeneralUpdate.sln | 7 +++++++ 4 files changed, 34 insertions(+), 2 deletions(-) create mode 100644 src/c#/GeneralUpdate.MiniBowl/GeneralUpdate.MiniBowl.csproj create mode 100644 src/c#/GeneralUpdate.MiniBowl/MiniBowlBootstrap.cs diff --git a/.github/workflows/dotnet-ci.yaml b/.github/workflows/dotnet-ci.yaml index 2780fad..a239ad2 100644 --- a/.github/workflows/dotnet-ci.yaml +++ b/.github/workflows/dotnet-ci.yaml @@ -7,9 +7,9 @@ jobs: runs-on: windows-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - name: Setup .NET SDK - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v2 with: dotnet-version: '8.0.x' - name: Install .NET MAUI diff --git a/src/c#/GeneralUpdate.MiniBowl/GeneralUpdate.MiniBowl.csproj b/src/c#/GeneralUpdate.MiniBowl/GeneralUpdate.MiniBowl.csproj new file mode 100644 index 0000000..412d83d --- /dev/null +++ b/src/c#/GeneralUpdate.MiniBowl/GeneralUpdate.MiniBowl.csproj @@ -0,0 +1,10 @@ + + + + Library + net8.0 + enable + enable + + + diff --git a/src/c#/GeneralUpdate.MiniBowl/MiniBowlBootstrap.cs b/src/c#/GeneralUpdate.MiniBowl/MiniBowlBootstrap.cs new file mode 100644 index 0000000..0f1103c --- /dev/null +++ b/src/c#/GeneralUpdate.MiniBowl/MiniBowlBootstrap.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace GeneralUpdate.MiniBowl +{ + internal class MiniBowlBootstrap + { + void Config() { } + + void Launch() { } + } +} diff --git a/src/c#/GeneralUpdate.sln b/src/c#/GeneralUpdate.sln index 600dfae..825847f 100644 --- a/src/c#/GeneralUpdate.sln +++ b/src/c#/GeneralUpdate.sln @@ -43,6 +43,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GeneralUpdate.Maui.OSS", "G EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GeneralUpdate.OSSClient", "GeneralUpdate.OSSClient\GeneralUpdate.OSSClient.csproj", "{2877DCA1-7EA6-42E9-A1C2-399B51E24893}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GeneralUpdate.MiniBowl", "GeneralUpdate.MiniBowl\GeneralUpdate.MiniBowl.csproj", "{3CF53050-6A42-4ACE-8CF6-80FA3ACD92E6}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -123,6 +125,10 @@ Global {2877DCA1-7EA6-42E9-A1C2-399B51E24893}.Release|Any CPU.ActiveCfg = Release|Any CPU {2877DCA1-7EA6-42E9-A1C2-399B51E24893}.Release|Any CPU.Build.0 = Release|Any CPU {2877DCA1-7EA6-42E9-A1C2-399B51E24893}.Release|Any CPU.Deploy.0 = Release|Any CPU + {3CF53050-6A42-4ACE-8CF6-80FA3ACD92E6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3CF53050-6A42-4ACE-8CF6-80FA3ACD92E6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3CF53050-6A42-4ACE-8CF6-80FA3ACD92E6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3CF53050-6A42-4ACE-8CF6-80FA3ACD92E6}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -145,6 +151,7 @@ Global {9A28F525-124A-4019-8F09-BC48030E0E70} = {50B6BB53-63A9-414B-9BB0-79A69EEF6785} {C4BDA544-2A6E-442C-B7D0-32CD7A996933} = {91F059E6-7AD3-4FB7-9604-30A7849C6EFF} {2877DCA1-7EA6-42E9-A1C2-399B51E24893} = {74BE0282-A10D-4A81-A0F0-FAA79A6152B7} + {3CF53050-6A42-4ACE-8CF6-80FA3ACD92E6} = {91F059E6-7AD3-4FB7-9604-30A7849C6EFF} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {A7B2D0AD-E000-4749-BAC0-FF21B9872805} -- Gitee