-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
80c11a6
commit a1ba7af
Showing
90 changed files
with
2,740 additions
and
1,469 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- patches/* | ||
|
||
env: | ||
productNamespacePrefix: "Sextant" | ||
|
||
jobs: | ||
release: | ||
uses: reactiveui/actions-common/.github/workflows/workflow-common-release.yml@main | ||
with: | ||
configuration: Release | ||
productNamespacePrefix: "Sextant" | ||
useVisualStudioPreview: true | ||
useMauiCheckDotNetTool: false | ||
solutionFile: "Sextant.sln" | ||
secrets: | ||
SIGN_CLIENT_USER_ID: ${{ secrets.SIGN_CLIENT_USER_ID }} | ||
SIGN_CLIENT_SECRET: ${{ secrets.SIGN_CLIENT_SECRET }} | ||
SIGN_CLIENT_CONFIG: ${{ secrets.SIGN_CLIENT_CONFIG }} | ||
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="com.giusepe.SextantSample" android:installLocation="auto"> | ||
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="29" /> | ||
<uses-sdk android:minSdkVersion="28" android:targetSdkVersion="33" /> | ||
<application android:label="SextantSample.Android"></application> | ||
</manifest> | ||
</manifest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | ||
xmlns:windows="clr-namespace:Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific;assembly=Microsoft.Maui.Controls" | ||
xmlns:local="clr-namespace:SextantSample.Maui" | ||
x:Class="SextantSample.Maui.App" | ||
windows:Application.ImageDirectory="Assets"> | ||
<Application.Resources> | ||
<ResourceDictionary> | ||
</ResourceDictionary> | ||
</Application.Resources> | ||
</Application> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[assembly: XamlCompilation(XamlCompilationOptions.Compile)] | ||
|
||
namespace SextantSample.Maui | ||
{ | ||
public partial class App : Application | ||
{ | ||
public App() | ||
{ | ||
InitializeComponent(); | ||
|
||
Locator | ||
.Current | ||
.GetService<IViewStackService>() | ||
.PushPage(new HomeViewModel(), null, true, false) | ||
.Subscribe(); | ||
|
||
MainPage = Locator.Current.GetNavigationView(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
global using Microsoft.Maui; | ||
global using Microsoft.Maui.Controls; | ||
global using Microsoft.Maui.Controls.Hosting; | ||
global using Microsoft.Maui.Hosting; | ||
global using Microsoft.Maui.LifecycleEvents; | ||
global using System; | ||
global using System.Diagnostics; | ||
global using System.Threading.Tasks; | ||
global using Microsoft.Extensions.Logging; | ||
global using ReactiveUI; | ||
global using ReactiveUI.Maui; | ||
global using Sextant; | ||
global using Sextant.Maui; | ||
global using SextantSample.Maui.Views; | ||
global using SextantSample.ViewModels; | ||
global using Splat; | ||
global using Application = Microsoft.Maui.Controls.Application; |
Oops, something went wrong.