Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev #14

Merged
merged 2 commits into from
Nov 22, 2023
Merged

Dev #14

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/dotnet-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ jobs:
- name: Setup .NET SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
dotnet-quality: 'preview'
dotnet-version: '7.0.x'
- name: Install .NET MAUI
run: dotnet workload install maui
- name: Restore dependencies
Expand Down
5 changes: 1 addition & 4 deletions src/c#/GeneralUpdate.Core/Bootstrap/AbstractBootstrap.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,7 @@ protected IStrategy InitStrategy()
return _strategy;
}

protected string GetPlatform()
{
return _strategy.GetPlatform();
}
protected string GetPlatform()=> _strategy.GetPlatform();

protected IStrategy ExecuteStrategy()
{
Expand Down
Loading