Skip to content

Commit

Permalink
!31 feature: add minibowl process
Browse files Browse the repository at this point in the history
Merge pull request !31 from Juster Zhu/dev
  • Loading branch information
JusterZhu authored and gitee-org committed Nov 27, 2023
2 parents fd8e9e8 + e5f5141 commit 64f8659
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dotnet-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 10 additions & 0 deletions src/c#/GeneralUpdate.MiniBowl/GeneralUpdate.MiniBowl.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

</Project>
15 changes: 15 additions & 0 deletions src/c#/GeneralUpdate.MiniBowl/MiniBowlBootstrap.cs
Original file line number Diff line number Diff line change
@@ -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() { }
}
}
7 changes: 7 additions & 0 deletions src/c#/GeneralUpdate.sln
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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}
Expand Down

0 comments on commit 64f8659

Please sign in to comment.