more reliable
This commit is contained in:
parent
22e1705e44
commit
426bc68d61
26 changed files with 172 additions and 191 deletions
21
.vscode/launch.json
vendored
21
.vscode/launch.json
vendored
|
|
@ -4,6 +4,21 @@
|
||||||
// Pour plus d'informations, visitez : https://go.microsoft.com/fwlink/?linkid=830387
|
// Pour plus d'informations, visitez : https://go.microsoft.com/fwlink/?linkid=830387
|
||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "Debug - Android",
|
||||||
|
"type": "mono",
|
||||||
|
"preLaunchTask": "run-debug-android",
|
||||||
|
"request": "attach",
|
||||||
|
"address": "localhost",
|
||||||
|
"port": 10000
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Attach - Android",
|
||||||
|
"type": "mono",
|
||||||
|
"request": "attach",
|
||||||
|
"address": "localhost",
|
||||||
|
"port": 10000
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "API",
|
"name": "API",
|
||||||
"type": "dotnet",
|
"type": "dotnet",
|
||||||
|
|
@ -33,12 +48,10 @@
|
||||||
"name": "Test PostIt.Android launch (Xamarin.UITest)",
|
"name": "Test PostIt.Android launch (Xamarin.UITest)",
|
||||||
"type": "coreclr",
|
"type": "coreclr",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"program": "${workspaceFolder}/src/PostIt.Tests/bin/Debug/net10.0/PostIt.Tests.dll",
|
"program": "${workspaceFolder}/src/PostIt/PostIt.Tests/bin/Debug/net11.0/PostIt.Tests.dll",
|
||||||
"args": [
|
"args": [
|
||||||
"--filter-method",
|
|
||||||
"PostIt.Tests.AndroidAppLaunchTests.PostIt_starts_and_draws_a_first_frame_on_the_emulator"
|
|
||||||
],
|
],
|
||||||
"cwd": "${workspaceFolder}/src/PostIt.Tests",
|
"cwd": "${workspaceFolder}/src/PostIt/PostIt.Tests",
|
||||||
"console": "integratedTerminal",
|
"console": "integratedTerminal",
|
||||||
"stopAtEntry": false
|
"stopAtEntry": false
|
||||||
}
|
}
|
||||||
|
|
|
||||||
23
.vscode/tasks.json
vendored
23
.vscode/tasks.json
vendored
|
|
@ -1,6 +1,29 @@
|
||||||
{
|
{
|
||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
"tasks": [
|
"tasks": [
|
||||||
|
{
|
||||||
|
"label": "run-debug-android",
|
||||||
|
"command": "dotnet",
|
||||||
|
"type": "shell",
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}/src/PostIt/PostIt.Android",
|
||||||
|
"env": {
|
||||||
|
"DOTNET_HOST_PATH": "/usr/share/dotnet",
|
||||||
|
"ANDROID_HOME": "/opt/android-sdk",
|
||||||
|
"JAVA_HOME": "/usr/lib/jvm/java-1.21.0-openjdk-amd64"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"args": [
|
||||||
|
"build"
|
||||||
|
"-t:run",
|
||||||
|
"-p:TargetFramework=net10.0-android",
|
||||||
|
"-p:Configuration=Debug",
|
||||||
|
"-p:AndroidAttachDebugger=true",
|
||||||
|
"-p:AndroidSdbHostPort=10000",
|
||||||
|
"-p:AndroidSdbTargetPort=10000"
|
||||||
|
],
|
||||||
|
"problemMatcher": "$msCompile"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "build",
|
"label": "build",
|
||||||
"command": "dotnet",
|
"command": "dotnet",
|
||||||
|
|
|
||||||
9
Makefile
9
Makefile
|
|
@ -163,7 +163,7 @@ POSTIT_RID ?= android-x64
|
||||||
EMU_HEADLESS ?= 0
|
EMU_HEADLESS ?= 0
|
||||||
LOGCAT_LINES ?= 200
|
LOGCAT_LINES ?= 200
|
||||||
LOGCAT_FOLLOW ?= 0
|
LOGCAT_FOLLOW ?= 0
|
||||||
LOGCAT_BOOT_WAIT ?= 30
|
LOGCAT_BOOT_WAIT ?= 15
|
||||||
|
|
||||||
POSTIT_ANDROID_CSPROJ := src/PostIt/PostIt.Android/PostIt.Android.csproj
|
POSTIT_ANDROID_CSPROJ := src/PostIt/PostIt.Android/PostIt.Android.csproj
|
||||||
POSTIT_APK_DIR := src/PostIt/PostIt.Android/bin/$(CONFIG)/net10.0-android/$(POSTIT_RID)
|
POSTIT_APK_DIR := src/PostIt/PostIt.Android/bin/$(CONFIG)/net10.0-android/$(POSTIT_RID)
|
||||||
|
|
@ -214,16 +214,17 @@ qemu-build:
|
||||||
-p:RuntimeIdentifier=$(POSTIT_RID) \
|
-p:RuntimeIdentifier=$(POSTIT_RID) \
|
||||||
-p:EmbedAssembliesIntoApk=true \
|
-p:EmbedAssembliesIntoApk=true \
|
||||||
--nologo
|
--nologo
|
||||||
|
|
||||||
qemu-install: qemu-build
|
|
||||||
@if [ ! -f "$(POSTIT_APK)" ]; then \
|
@if [ ! -f "$(POSTIT_APK)" ]; then \
|
||||||
echo " APK not found at $(POSTIT_APK)." >&2; \
|
echo " APK not found at $(POSTIT_APK)." >&2; \
|
||||||
echo " Files in $(POSTIT_APK_DIR):" >&2; \
|
echo " Files in $(POSTIT_APK_DIR):" >&2; \
|
||||||
ls -la "$(POSTIT_APK_DIR)" 2>/dev/null || echo " (directory does not exist)" >&2; \
|
ls -la "$(POSTIT_APK_DIR)" 2>/dev/null || echo " (directory does not exist)" >&2; \
|
||||||
exit 1; \
|
exit 1; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
qemu-install: qemu-build
|
||||||
@echo " Installing $(POSTIT_APK) on $(ADB_SERIAL)..."
|
@echo " Installing $(POSTIT_APK) on $(ADB_SERIAL)..."
|
||||||
adb -s $(ADB_SERIAL) install -r "$(POSTIT_APK)"
|
adb -s $(ADB_SERIAL) install -r "$(POSTIT_APK)" -r
|
||||||
|
|
||||||
qemu-uninstall:
|
qemu-uninstall:
|
||||||
adb -s $(ADB_SERIAL) uninstall fr.pschneider.PostIt
|
adb -s $(ADB_SERIAL) uninstall fr.pschneider.PostIt
|
||||||
|
|
|
||||||
1
external/dotnet-android-build-image
vendored
1
external/dotnet-android-build-image
vendored
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 0695a6c1fea6508f1a88f7ad0ad9cb93733aa52d
|
|
||||||
|
|
@ -1,20 +1,36 @@
|
||||||
<Project>
|
<Project>
|
||||||
<!-- Pull in shared package versions from the repository root. -->
|
<!-- Pull in shared package versions from the repository root. -->
|
||||||
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Packages.props', '$(MSBuildThisFileDirectory)../'))" />
|
<Import
|
||||||
|
Project="$([MSBuild]::GetPathOfFileAbove('Directory.Packages.props', '$(MSBuildThisFileDirectory)../'))" />
|
||||||
<!-- PostIt-product-specific versions -->
|
<!-- PostIt-product-specific versions -->
|
||||||
<ItemGroup>
|
<ItemGroup> <!-- Avalonia packages -->
|
||||||
<PackageVersion Include="Xamarin.UITest" Version="4.4.2" />
|
<!-- Important: keep version in sync! -->
|
||||||
<PackageVersion Include="Avalonia" Version="12.1.1" />
|
<PackageVersion Include="Avalonia" Version="12.1.1" />
|
||||||
|
<PackageVersion Include="Avalonia.Themes.Fluent" Version="12.1.1" />
|
||||||
|
<PackageVersion Include="Avalonia.Fonts.Inter" Version="12.1.1" />
|
||||||
|
<PackageVersion Include="Avalonia.Desktop" Version="12.1.1" />
|
||||||
|
<PackageVersion Include="Avalonia.Browser" Version="12.1.1" />
|
||||||
|
<PackageVersion Include="Avalonia.Android" Version="12.1.1" />
|
||||||
|
<PackageVersion Include="AvaloniaUI.DiagnosticsSupport" Version="2.2.3" />
|
||||||
|
|
||||||
|
<PackageVersion Include="CommunityToolkit.Mvvm" Version="8.4.2" />
|
||||||
|
|
||||||
|
<PackageVersion Include="Xamarin.AndroidX.Core.SplashScreen" Version="1.0.1.15" />
|
||||||
|
|
||||||
|
<PackageVersion Include="Xamarin.AndroidX.Core.Core.KtX" Version="1.19.0.1" />
|
||||||
|
<PackageVersion Include="Xamarin.AndroidX.Compose.Runtime.Annotation.Jvm" Version="1.11.4" />
|
||||||
|
<PackageVersion Include="Xamarin.AndroidX.Core" Version="1.19.0.1" />
|
||||||
|
<PackageVersion Include="Xamarin.AndroidX.AppCompat" Version="1.7.1.4" />
|
||||||
|
<PackageVersion Include="Xamarin.AndroidX.Browser" Version="1.10.0.1" />
|
||||||
|
|
||||||
|
<PackageVersion Include="Xamarin.UITest.Core" Version="4.4.2" />
|
||||||
|
<PackageVersion Include="Xamarin.UITest.AndroidX" Version="4.4.2" />
|
||||||
|
<PackageVersion Include="Xamarin.UITest.Queries" Version="4.4.2" />
|
||||||
|
<PackageVersion Include="Xamarin.UITest" Version="4.4.2" />
|
||||||
|
|
||||||
<PackageVersion Include="Avalonia.Headless" Version="12.1.1" />
|
<PackageVersion Include="Avalonia.Headless" Version="12.1.1" />
|
||||||
<PackageVersion Include="Avalonia.Headless.Xunit" Version="12.1.1" />
|
<PackageVersion Include="Avalonia.Headless.Xunit" Version="12.1.1" />
|
||||||
<PackageVersion Include="Avalonia.Android" Version="12.1.1" />
|
|
||||||
<PackageVersion Include="Avalonia.AvaloniaEdit" Version="12.0.0" />
|
<PackageVersion Include="Avalonia.AvaloniaEdit" Version="12.0.0" />
|
||||||
<PackageVersion Include="Avalonia.Browser" Version="12.1.1" />
|
|
||||||
<PackageVersion Include="Avalonia.Desktop" Version="12.1.1" />
|
|
||||||
<PackageVersion Include="Avalonia.Fonts.Inter" Version="12.1.1" />
|
|
||||||
<PackageVersion Include="Avalonia.Themes.Fluent" Version="12.1.1" />
|
|
||||||
<PackageVersion Include="AvaloniaUI.DiagnosticsSupport" Version="2.2.3" />
|
|
||||||
<PackageVersion Include="CommunityToolkit.Mvvm" Version="8.4.2" />
|
|
||||||
<PackageVersion Include="Material.Avalonia" Version="3.19.0" />
|
<PackageVersion Include="Material.Avalonia" Version="3.19.0" />
|
||||||
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="10.0.11" />
|
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="10.0.11" />
|
||||||
<PackageVersion Include="Microsoft.Maui.Essentials" Version="10.0.100" />
|
<PackageVersion Include="Microsoft.Maui.Essentials" Version="10.0.100" />
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,9 @@ using Android.Content.PM;
|
||||||
using Android.Content;
|
using Android.Content;
|
||||||
using Avalonia.Android;
|
using Avalonia.Android;
|
||||||
using AndroidX.Emoji2.Text;
|
using AndroidX.Emoji2.Text;
|
||||||
|
using AndroidX.Core.Provider;
|
||||||
|
using Android;
|
||||||
|
using Android.Graphics;
|
||||||
|
|
||||||
namespace PostIt.Android;
|
namespace PostIt.Android;
|
||||||
|
|
||||||
|
|
@ -26,7 +29,6 @@ public class MainActivity : AvaloniaMainActivity
|
||||||
|
|
||||||
protected override void OnCreate(global::Android.OS.Bundle? savedInstanceState)
|
protected override void OnCreate(global::Android.OS.Bundle? savedInstanceState)
|
||||||
{
|
{
|
||||||
EmojiCompat.Init(this);
|
|
||||||
base.OnCreate(savedInstanceState);
|
base.OnCreate(savedInstanceState);
|
||||||
PlatformBootstrap.EnsureInitialized();
|
PlatformBootstrap.EnsureInitialized();
|
||||||
Current = this;
|
Current = this;
|
||||||
|
|
|
||||||
|
|
@ -1,34 +1,28 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>net11.0-android</TargetFramework>
|
<TargetFramework>net10.0-android</TargetFramework>
|
||||||
<!-- FORCE LES ARCHITECTURES ANDROID VALIDES -->
|
<SupportedOSPlatformVersion>23</SupportedOSPlatformVersion>
|
||||||
<RuntimeIdentifiers>android-arm64;android-x64</RuntimeIdentifiers>
|
|
||||||
<SupportedOSPlatformVersion>24.0.0</SupportedOSPlatformVersion>
|
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<ApplicationId>fr.pschneider.PostIt</ApplicationId>
|
<ApplicationId>fr.pschneider.PostIt</ApplicationId>
|
||||||
<ApplicationVersion>1</ApplicationVersion>
|
<ApplicationVersion>1</ApplicationVersion>
|
||||||
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
|
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
|
||||||
<AndroidPackageFormat>apk</AndroidPackageFormat>
|
<AndroidPackageFormat>apk</AndroidPackageFormat>
|
||||||
<AndroidEnableProfiledAot>false</AndroidEnableProfiledAot>
|
<AndroidEnableProfiledAot>false</AndroidEnableProfiledAot>
|
||||||
<RuntimeIdentifiers Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">android-arm;android-arm64;android-x64</RuntimeIdentifiers>
|
|
||||||
<AssemblyVersion>1.1.0.0</AssemblyVersion>
|
|
||||||
<FileVersion>1.1.0.0</FileVersion>
|
|
||||||
<InformationalVersion>1.1.0-beta.1+1.Branch.release-1.0.8-rc1.Sha.1167169aa89e1bf25290e9a152d27b357a500ab3</InformationalVersion>
|
|
||||||
<Version>1.1.0-beta.1</Version>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<AndroidResource Include="Icon.png">
|
<AndroidResource Include="Icon.png">
|
||||||
<Link>Resources\drawable\Icon.png</Link>
|
<Link>Resources\drawable\Icon.png</Link>
|
||||||
</AndroidResource>
|
</AndroidResource>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
|
||||||
<PackageReference Include="Avalonia.Android" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\PostIt\PostIt.csproj" />
|
<ProjectReference Include="..\PostIt\PostIt.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.Maui.Essentials" />
|
<PackageReference Include="Avalonia.Android" />
|
||||||
|
<PackageReference Include="Xamarin.AndroidX.Core.SplashScreen" />
|
||||||
|
<PackageReference Include="Avalonia.Browser" />
|
||||||
|
<PackageReference Include="Xamarin.AndroidX.Browser" />
|
||||||
|
<PackageReference Include="IdentityModel.OidcClient" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="MyTheme.NoActionBar" parent="@style/Theme.AppCompat.DayNight.NoActionBar">
|
<style name="MyTheme.NoActionBar" parent="@style/Theme.AppCompat.DayNight.NoActionBar">
|
||||||
|
<item name="android:windowBackground">@drawable/splash_screen</item>
|
||||||
<item name="android:windowActionBar">false</item>
|
<item name="android:windowActionBar">false</item>
|
||||||
<item name="android:windowNoTitle">true</item>
|
<item name="android:windowNoTitle">true</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -1,84 +0,0 @@
|
||||||
#if ANDROID || IOS
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Threading;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using Microsoft.Maui.ApplicationModel.Communication;
|
|
||||||
using Microsoft.Maui.ApplicationModel;
|
|
||||||
using Microsoft.Maui.Devices;
|
|
||||||
using PostIt.Services;
|
|
||||||
using System.Linq;
|
|
||||||
|
|
||||||
namespace PostIt.Android.Services;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Mobile implementation backed by MAUI Essentials
|
|
||||||
/// <c>Contacts.Default</c>.
|
|
||||||
///
|
|
||||||
/// <para>Compiled only for ANDROID and IOS. On desktop targets,
|
|
||||||
/// see <c>ContactService.Desktop.cs</c> (the stub that wins at
|
|
||||||
/// compile time).</para>
|
|
||||||
///
|
|
||||||
/// <para>Note: at runtime, this class throws
|
|
||||||
/// <c>NotImplementedInReferenceAssemblyException</c> unless
|
|
||||||
/// the host application project also references the
|
|
||||||
/// platform-specific Microsoft.Maui.Essentials implementation
|
|
||||||
/// (typically <c>PostIt.Android</c>). On iOS the same is
|
|
||||||
/// required via <c>PostIt.iOS</c>. On desktop the stub is used
|
|
||||||
/// and this file is excluded.</para>
|
|
||||||
/// </summary>
|
|
||||||
public sealed class ContactService : IContactService
|
|
||||||
{
|
|
||||||
public async Task<IReadOnlyList<ContactDto>> GetDeviceContactsAsync(CancellationToken ct = default)
|
|
||||||
{
|
|
||||||
if (DeviceInfo.Current.Platform == DevicePlatform.Unknown)
|
|
||||||
return Array.Empty<ContactDto>();
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
var status = await Permissions.RequestAsync<Permissions.ContactsRead>();
|
|
||||||
if (status != PermissionStatus.Granted)
|
|
||||||
return Array.Empty<ContactDto>();
|
|
||||||
|
|
||||||
var contacts = await Contacts.Default.GetAllAsync();
|
|
||||||
if (contacts is null) return Array.Empty<ContactDto>();
|
|
||||||
|
|
||||||
// Carry the per-contact email list as-is. A real
|
|
||||||
// device contact can carry several addresses (home /
|
|
||||||
// work / other); the UI use case ("invite / add to a
|
|
||||||
// circle") can then decide which address to use, or
|
|
||||||
// let the user pick. The platform-neutral ContactDto
|
|
||||||
// shape is intentionally richer than the Yavsc
|
|
||||||
// directory's single-Email shape — the two flows
|
|
||||||
// answer different questions.
|
|
||||||
var result = new List<ContactDto>(contacts.Count());
|
|
||||||
foreach (var c in contacts)
|
|
||||||
{
|
|
||||||
var emails = ExtractEmails(c.Emails);
|
|
||||||
result.Add(new ContactDto(
|
|
||||||
c.Id,
|
|
||||||
c.DisplayName ?? string.Empty,
|
|
||||||
emails));
|
|
||||||
}
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
System.Diagnostics.Debug.WriteLine($"ContactService: {ex.Message}");
|
|
||||||
return Array.Empty<ContactDto>();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private static IReadOnlyList<string> ExtractEmails(IEnumerable<ContactEmail>? emails)
|
|
||||||
{
|
|
||||||
if (emails is null) return Array.Empty<string>();
|
|
||||||
var list = new List<string>();
|
|
||||||
foreach (var e in emails)
|
|
||||||
{
|
|
||||||
if (!string.IsNullOrEmpty(e.EmailAddress))
|
|
||||||
list.Add(e.EmailAddress);
|
|
||||||
}
|
|
||||||
return list;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk.WebAssembly">
|
<Project Sdk="Microsoft.NET.Sdk.WebAssembly">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net11.0-browser</TargetFramework>
|
<TargetFramework>net10.0-browser</TargetFramework>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
<OutputType>WinExe</OutputType>
|
<OutputType>WinExe</OutputType>
|
||||||
<!--If you are willing to use platform-specific APIs, use conditional compilation.
|
<!--If you are willing to use platform-specific APIs, use conditional compilation.
|
||||||
See https://docs.avaloniaui.net/docs/guides/platforms/platform-specific-code/dotnet for more details.-->
|
See https://docs.avaloniaui.net/docs/guides/platforms/platform-specific-code/dotnet for more details.-->
|
||||||
<TargetFramework>net11.0</TargetFramework>
|
<TargetFramework>net10.0</TargetFramework>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<AssemblyVersion>1.1.0.0</AssemblyVersion>
|
<AssemblyVersion>1.1.0.0</AssemblyVersion>
|
||||||
<FileVersion>1.1.0.0</FileVersion>
|
<FileVersion>1.1.0.0</FileVersion>
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@ public partial class App : Application
|
||||||
/// <c>DataValidationErrors.SetErrors</c>.
|
/// <c>DataValidationErrors.SetErrors</c>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public IServiceProvider? ServiceProvider { get; private set; }
|
public IServiceProvider? ServiceProvider { get; private set; }
|
||||||
private MainWindow window;
|
|
||||||
public App()
|
public App()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
@ -35,6 +35,9 @@ public partial class App : Application
|
||||||
public override void Initialize()
|
public override void Initialize()
|
||||||
{
|
{
|
||||||
AvaloniaXamlLoader.Load(this);
|
AvaloniaXamlLoader.Load(this);
|
||||||
|
#if DEBUG
|
||||||
|
this.AttachDeveloperTools();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
public override void OnFrameworkInitializationCompleted()
|
public override void OnFrameworkInitializationCompleted()
|
||||||
|
|
@ -52,8 +55,6 @@ public partial class App : Application
|
||||||
this.ServiceProvider = BuildServices(new ServiceCollection());
|
this.ServiceProvider = BuildServices(new ServiceCollection());
|
||||||
AttachServiceProvider(ServiceProvider);
|
AttachServiceProvider(ServiceProvider);
|
||||||
var settings = ServiceProvider.GetRequiredService<Settings>();
|
var settings = ServiceProvider.GetRequiredService<Settings>();
|
||||||
var sessionStatus = ServiceProvider.GetRequiredService<SessionStatusViewModel>();
|
|
||||||
var api = ServiceProvider.GetRequiredService<YavscApiClient>();
|
|
||||||
|
|
||||||
DataTemplates.Clear();
|
DataTemplates.Clear();
|
||||||
DataTemplates.Add(new ViewLocator(ServiceProvider));
|
DataTemplates.Add(new ViewLocator(ServiceProvider));
|
||||||
|
|
@ -85,47 +86,44 @@ public partial class App : Application
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)
|
if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)
|
||||||
{
|
{
|
||||||
var homeVm = ServiceProvider.GetRequiredService<HomePageViewModel>();
|
desktop.MainWindow = CreateMainWindow();
|
||||||
|
}
|
||||||
|
else if (ApplicationLifetime is IActivityApplicationLifetime singleViewFactoryApplicationLifetime)
|
||||||
|
{
|
||||||
|
singleViewFactoryApplicationLifetime.MainViewFactory = () => CreateMainWindow();
|
||||||
|
}
|
||||||
|
else if (ApplicationLifetime is ISingleViewApplicationLifetime singleViewPlatform)
|
||||||
|
{
|
||||||
|
singleViewPlatform.MainView = CreateMainWindow();
|
||||||
|
}
|
||||||
|
base.OnFrameworkInitializationCompleted();
|
||||||
|
}
|
||||||
|
|
||||||
|
MainWindow window;
|
||||||
|
private MainWindow CreateMainWindow()
|
||||||
|
{
|
||||||
window = new MainWindow();
|
window = new MainWindow();
|
||||||
window.SessionBanner.DataContext = sessionStatus;
|
var api = ServiceProvider!.GetRequiredService<YavscApiClient>();
|
||||||
|
window.Opened += async (_, _) => await BootAsync(this.ServiceProvider!, api);
|
||||||
// Build the navigation stack from scratch: HomePage is the
|
var sessionStatus = ServiceProvider!.GetRequiredService<SessionStatusViewModel>();
|
||||||
// root in both cases. App.BootAsync will push MainPage on
|
|
||||||
// top if the silent refresh succeeds.
|
|
||||||
desktop.MainWindow = window;
|
|
||||||
_ = PushPageAsync(homeVm);
|
|
||||||
|
|
||||||
// When the user logs out, route back to HomePage. We
|
|
||||||
// ReplaceAsync the current top so we don't grow the stack
|
|
||||||
// on every logout — otherwise repeated login/logout would
|
|
||||||
// eventually balloon the back history.
|
|
||||||
sessionStatus.LogoutCompleted += () =>
|
sessionStatus.LogoutCompleted += () =>
|
||||||
{
|
{
|
||||||
var w = (MainWindow)((IClassicDesktopStyleApplicationLifetime)ApplicationLifetime!).MainWindow!;
|
window.NavRoot.PopToRootAsync();
|
||||||
var nav = w.NavRoot;
|
|
||||||
_ = nav.PopToRootAsync();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// When the user signs in interactively (Login button on
|
|
||||||
// the session banner), push MainPage on top of HomePage.
|
|
||||||
sessionStatus.LoginSucceeded += () =>
|
sessionStatus.LoginSucceeded += () =>
|
||||||
{
|
{
|
||||||
var w = (MainWindow)((IClassicDesktopStyleApplicationLifetime)ApplicationLifetime!).MainWindow!;
|
PushMainPageAsync();
|
||||||
_ = PushMainPageAsync();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
window.Opened += async (_, _) => await BootAsync(this.ServiceProvider, api);
|
var homeVm = ServiceProvider!.GetRequiredService<HomePageViewModel>();
|
||||||
}
|
|
||||||
else if (ApplicationLifetime is ISingleViewApplicationLifetime singleView)
|
this.PushPageAsync(homeVm).Wait();
|
||||||
{
|
window.SessionBanner.DataContext = sessionStatus;
|
||||||
singleView.MainView = new MainWindow
|
return window;
|
||||||
{
|
|
||||||
DataContext = ServiceProvider.GetRequiredService<HomePageViewModel>()
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
@ -156,7 +154,6 @@ public partial class App : Application
|
||||||
var contactService = new ContactService();
|
var contactService = new ContactService();
|
||||||
var userDirectory = new UserDirectory(userSearchClient);
|
var userDirectory = new UserDirectory(userSearchClient);
|
||||||
|
|
||||||
|
|
||||||
// Vues
|
// Vues
|
||||||
services.AddTransient<MainPage>();
|
services.AddTransient<MainPage>();
|
||||||
// SettingsPage is a singleton: there must be one and only one
|
// SettingsPage is a singleton: there must be one and only one
|
||||||
|
|
@ -268,8 +265,8 @@ public partial class App : Application
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static Task PushMainPageAsync()
|
public static Task PushMainPageAsync()
|
||||||
{
|
{
|
||||||
var app = (App)Current;
|
var app = (App)Current!;
|
||||||
var mainVm = app.ServiceProvider.GetRequiredService<MainPageViewModel>();
|
var mainVm = app.ServiceProvider!.GetRequiredService<MainPageViewModel>();
|
||||||
return app.PushPageAsync(mainVm);
|
return app.PushPageAsync(mainVm);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -310,7 +307,7 @@ public partial class App : Application
|
||||||
_ = PushPageAsync(vm);
|
_ = PushPageAsync(vm);
|
||||||
}
|
}
|
||||||
|
|
||||||
internal Task PushPageAsync(ViewModelBase vm)
|
internal async Task PushPageAsync(ViewModelBase vm)
|
||||||
{
|
{
|
||||||
if (window is null)
|
if (window is null)
|
||||||
{
|
{
|
||||||
|
|
@ -344,10 +341,10 @@ public partial class App : Application
|
||||||
var stack = window.NavRoot.NavigationStack;
|
var stack = window.NavRoot.NavigationStack;
|
||||||
if (stack.Count > 0 && ReferenceEquals(stack[stack.Count - 1], page))
|
if (stack.Count > 0 && ReferenceEquals(stack[stack.Count - 1], page))
|
||||||
{
|
{
|
||||||
return Task.CompletedTask;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
return window.NavRoot.PushAsync(page);
|
await window.NavRoot.PushAsync(page);
|
||||||
}
|
}
|
||||||
|
|
||||||
internal async Task GoBackAsync()
|
internal async Task GoBackAsync()
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net11.0</TargetFramework>
|
<TargetFramework>net10.0</TargetFramework>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
|
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,9 @@ public partial class AuthenticationSettings : ObservableObject
|
||||||
public static string DefaultAuthority { get; internal set; } = "https://yavsc.pschneider.fr";
|
public static string DefaultAuthority { get; internal set; } = "https://yavsc.pschneider.fr";
|
||||||
|
|
||||||
public static string DefaultClientId { get; internal set; } = "postit";
|
public static string DefaultClientId { get; internal set; } = "postit";
|
||||||
|
|
||||||
|
public static string[] DefaultScopes { get; set; } = { "blogs"} ;
|
||||||
|
|
||||||
[ObservableProperty]
|
[ObservableProperty]
|
||||||
public partial string Authority { get; set; }
|
public partial string Authority { get; set; }
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -122,8 +122,8 @@ public partial class MainPageViewModel : ViewModelBase
|
||||||
|
|
||||||
public MainPageViewModel()
|
public MainPageViewModel()
|
||||||
{
|
{
|
||||||
Init(null);
|
|
||||||
SettingsModel = new Settings();
|
SettingsModel = new Settings();
|
||||||
|
Init(SettingsModel);
|
||||||
BlogClient = null;
|
BlogClient = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -135,6 +135,11 @@ public partial class MainPageViewModel : ViewModelBase
|
||||||
SelectedPost = null;
|
SelectedPost = null;
|
||||||
IsBusy = false;
|
IsBusy = false;
|
||||||
StatusMessage = "Ready";
|
StatusMessage = "Ready";
|
||||||
|
Settings = settings ?? new Settings();
|
||||||
|
WindowTitle = "PostIt";
|
||||||
|
DraftTitle = string.Empty;
|
||||||
|
DraftArticle = string.Empty;
|
||||||
|
DraftIsPublished = false;
|
||||||
// Production path: DI injects the canonical Settings singleton
|
// Production path: DI injects the canonical Settings singleton
|
||||||
// and we use it as-is. Test path: tests call this constructor
|
// and we use it as-is. Test path: tests call this constructor
|
||||||
// without a Settings argument; we fall back to a fresh
|
// without a Settings argument; we fall back to a fresh
|
||||||
|
|
@ -145,11 +150,7 @@ public partial class MainPageViewModel : ViewModelBase
|
||||||
// sink; that crash is fixed in Settings.OnPropertyChanged
|
// sink; that crash is fixed in Settings.OnPropertyChanged
|
||||||
// (thread-safe dispatcher marshalling) so the duplicate
|
// (thread-safe dispatcher marshalling) so the duplicate
|
||||||
// instance is now merely wasteful, not dangerous.
|
// instance is now merely wasteful, not dangerous.
|
||||||
Settings = settings ?? new Settings();
|
|
||||||
WindowTitle = "PostIt";
|
|
||||||
DraftTitle = string.Empty;
|
|
||||||
DraftArticle = string.Empty;
|
|
||||||
DraftIsPublished = false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>Save is enabled as soon as the user has typed
|
/// <summary>Save is enabled as soon as the user has typed
|
||||||
|
|
@ -174,7 +175,6 @@ public partial class MainPageViewModel : ViewModelBase
|
||||||
SettingsModel = new Settings();
|
SettingsModel = new Settings();
|
||||||
BlogClient = blogClient ?? throw new ArgumentNullException(nameof(blogClient)); ;
|
BlogClient = blogClient ?? throw new ArgumentNullException(nameof(blogClient)); ;
|
||||||
Services = services;
|
Services = services;
|
||||||
|
|
||||||
Init(settings);
|
Init(settings);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -210,7 +210,7 @@ public partial class MainPageViewModel : ViewModelBase
|
||||||
{
|
{
|
||||||
await ExecuteAsync(async () =>
|
await ExecuteAsync(async () =>
|
||||||
{
|
{
|
||||||
var posts = await BlogClient.GetPostsAsync();
|
var posts = await BlogClient!.GetPostsAsync();
|
||||||
Posts.Clear();
|
Posts.Clear();
|
||||||
foreach (var post in posts.OrderByDescending(p => p.DateModified))
|
foreach (var post in posts.OrderByDescending(p => p.DateModified))
|
||||||
{
|
{
|
||||||
|
|
@ -259,7 +259,7 @@ public partial class MainPageViewModel : ViewModelBase
|
||||||
DateCreated = DateTime.UtcNow,
|
DateCreated = DateTime.UtcNow,
|
||||||
DateModified = DateTime.UtcNow,
|
DateModified = DateTime.UtcNow,
|
||||||
};
|
};
|
||||||
var created = await BlogClient.CreatePostAsync(draft);
|
var created = await BlogClient!.CreatePostAsync(draft);
|
||||||
if (created is not null)
|
if (created is not null)
|
||||||
{
|
{
|
||||||
SelectedPost = created;
|
SelectedPost = created;
|
||||||
|
|
@ -278,7 +278,7 @@ public partial class MainPageViewModel : ViewModelBase
|
||||||
DateCreated = SelectedPost.DateCreated,
|
DateCreated = SelectedPost.DateCreated,
|
||||||
DateModified = DateTime.UtcNow,
|
DateModified = DateTime.UtcNow,
|
||||||
};
|
};
|
||||||
await BlogClient.UpdatePostAsync(SelectedPost.Id, update);
|
await BlogClient!.UpdatePostAsync(SelectedPost.Id, update);
|
||||||
StatusMessage = $"Saved post {SelectedPost.Id}.";
|
StatusMessage = $"Saved post {SelectedPost.Id}.";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -297,7 +297,7 @@ public partial class MainPageViewModel : ViewModelBase
|
||||||
|
|
||||||
await ExecuteAsync(async () =>
|
await ExecuteAsync(async () =>
|
||||||
{
|
{
|
||||||
await BlogClient.DeletePostAsync(SelectedPost.Id);
|
await BlogClient!.DeletePostAsync(SelectedPost.Id);
|
||||||
StatusMessage = $"Deleted post {SelectedPost.Id}.";
|
StatusMessage = $"Deleted post {SelectedPost.Id}.";
|
||||||
SelectedPost = null;
|
SelectedPost = null;
|
||||||
await RefreshPostsAsync();
|
await RefreshPostsAsync();
|
||||||
|
|
@ -331,7 +331,7 @@ public partial class MainPageViewModel : ViewModelBase
|
||||||
await ExecuteAsync(async () =>
|
await ExecuteAsync(async () =>
|
||||||
{
|
{
|
||||||
var desired = !DraftIsPublished;
|
var desired = !DraftIsPublished;
|
||||||
await BlogClient.SetPublishAsync(SelectedPost.Id, desired);
|
await BlogClient!.SetPublishAsync(SelectedPost.Id, desired);
|
||||||
DraftIsPublished = desired;
|
DraftIsPublished = desired;
|
||||||
// Mirror into the selected post so a subsequent
|
// Mirror into the selected post so a subsequent
|
||||||
// RefreshPostsAsync() doesn't blow away the
|
// RefreshPostsAsync() doesn't blow away the
|
||||||
|
|
@ -372,7 +372,7 @@ public partial class MainPageViewModel : ViewModelBase
|
||||||
|
|
||||||
private async Task RefreshPostsAsync()
|
private async Task RefreshPostsAsync()
|
||||||
{
|
{
|
||||||
var posts = await BlogClient.GetPostsAsync();
|
var posts = await BlogClient!.GetPostsAsync();
|
||||||
Posts.Clear();
|
Posts.Clear();
|
||||||
foreach (var post in posts.OrderByDescending(p => p.DateModified))
|
foreach (var post in posts.OrderByDescending(p => p.DateModified))
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -350,15 +350,14 @@ public partial class Settings : ViewModelBase
|
||||||
var settings = JsonSerializer.Deserialize<Settings>(json);
|
var settings = JsonSerializer.Deserialize<Settings>(json);
|
||||||
if (settings is null)
|
if (settings is null)
|
||||||
{
|
{
|
||||||
Console.Error.WriteLine($"🩎 Settings payload is invalid (source: {source}).");
|
UseDefaultSettings();
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
// Apply under the gate so concurrent Load() callers cannot
|
// Apply under the gate so concurrent Load() callers cannot
|
||||||
// see half the new values / half the old ones. The actual
|
// see half the new values / half the old ones. The actual
|
||||||
// PropertyChanged fan-out is handled by [ObservableProperty]'s
|
// PropertyChanged fan-out is handled by [ObservableProperty]'s
|
||||||
// setters which we route through SetProperty → OnPropertyChanged
|
// setters which we route through SetProperty → OnPropertyChanged
|
||||||
// → our overridden dispatcher-safe marshaller below.
|
// → our overridden dispatcher-safe marshaller below.
|
||||||
lock (_mutationGate)
|
else lock (_mutationGate)
|
||||||
{
|
{
|
||||||
this.Authentication = settings.Authentication;
|
this.Authentication = settings.Authentication;
|
||||||
this.DarkMode = settings.DarkMode;
|
this.DarkMode = settings.DarkMode;
|
||||||
|
|
@ -371,6 +370,11 @@ public partial class Settings : ViewModelBase
|
||||||
AuthenticationSettings.DefaultClientId : settings.Authentication.ClientId;
|
AuthenticationSettings.DefaultClientId : settings.Authentication.ClientId;
|
||||||
this.Authentication.RedirectUri = string.IsNullOrWhiteSpace(settings.Authentication.RedirectUri) ?
|
this.Authentication.RedirectUri = string.IsNullOrWhiteSpace(settings.Authentication.RedirectUri) ?
|
||||||
AuthenticationSettings.DefaultDesktopRedirectUri : settings.Authentication.RedirectUri;
|
AuthenticationSettings.DefaultDesktopRedirectUri : settings.Authentication.RedirectUri;
|
||||||
|
if (settings.Authentication.Scopes is null || settings.Authentication.Scopes.Length == 0)
|
||||||
|
{
|
||||||
|
settings.Authentication.Scopes = AuthenticationSettings.DefaultScopes;
|
||||||
|
}
|
||||||
|
else
|
||||||
this.Authentication.Scopes = settings.Authentication.Scopes;
|
this.Authentication.Scopes = settings.Authentication.Scopes;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -400,6 +404,18 @@ public partial class Settings : ViewModelBase
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void UseDefaultSettings()
|
||||||
|
{
|
||||||
|
this.Authentication = new AuthenticationSettings
|
||||||
|
{
|
||||||
|
Authority = AuthenticationSettings.DefaultAuthority,
|
||||||
|
ClientId = AuthenticationSettings.DefaultClientId,
|
||||||
|
RedirectUri = AuthenticationSettings.DefaultDesktopRedirectUri,
|
||||||
|
Scopes = AuthenticationSettings.DefaultScopes
|
||||||
|
};
|
||||||
|
this.DarkMode = false;
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Persist the current in-memory state to
|
/// Persist the current in-memory state to
|
||||||
/// <c>~/.config/PostIt/postit-settings.json</c> (Linux) /
|
/// <c>~/.config/PostIt/postit-settings.json</c> (Linux) /
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFrameworks>net11.0</TargetFrameworks>
|
<TargetFrameworks>net10.0</TargetFrameworks>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
<Description> A shared model for a little client/server app, dealing about establishing some contract, between some human client and provider.
|
<Description> A shared model for a little client/server app, dealing about establishing some contract, between some human client and provider.
|
||||||
</Description>
|
</Description>
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net11.0</TargetFramework>
|
<TargetFramework>net10.0</TargetFramework>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
<RootNamespace>Yavsc.Api.Client</RootNamespace>
|
<RootNamespace>Yavsc.Api.Client</RootNamespace>
|
||||||
<AssemblyName>Yavsc.Api.Client</AssemblyName>
|
<AssemblyName>Yavsc.Api.Client</AssemblyName>
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net11.0</TargetFramework>
|
<TargetFramework>net10.0</TargetFramework>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
<UserSecretsId>1c73094f-959f-4211-b1a1-6a69b236c283</UserSecretsId>
|
<UserSecretsId>1c73094f-959f-4211-b1a1-6a69b236c283</UserSecretsId>
|
||||||
<RootNamespace>Yavsc.Api</RootNamespace>
|
<RootNamespace>Yavsc.Api</RootNamespace>
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net11.0</TargetFramework>
|
<TargetFramework>net10.0</TargetFramework>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<IsPackable>false</IsPackable>
|
<IsPackable>false</IsPackable>
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net11.0</TargetFramework>
|
<TargetFramework>net10.0</TargetFramework>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
<UserSecretsId>1c73094f-959f-4211-b1a1-6a69b236c283</UserSecretsId>
|
<UserSecretsId>1c73094f-959f-4211-b1a1-6a69b236c283</UserSecretsId>
|
||||||
<RootNamespace>Yavsc.Blogs</RootNamespace>
|
<RootNamespace>Yavsc.Blogs</RootNamespace>
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net11.0</TargetFramework>
|
<TargetFramework>net10.0</TargetFramework>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<IsPackable>false</IsPackable>
|
<IsPackable>false</IsPackable>
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net11.0</TargetFramework>
|
<TargetFramework>net10.0</TargetFramework>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
<PackageLicenseExpression>WTFPL</PackageLicenseExpression>
|
<PackageLicenseExpression>WTFPL</PackageLicenseExpression>
|
||||||
<UserSecretsId>76e56fc2-1619-40d8-8393-365258b7a21d</UserSecretsId>
|
<UserSecretsId>76e56fc2-1619-40d8-8393-365258b7a21d</UserSecretsId>
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net11.0</TargetFramework>
|
<TargetFramework>net10.0</TargetFramework>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
<UserSecretsId>53bd70e8-ff81-497a-847f-a15fd8ea7a09</UserSecretsId>
|
<UserSecretsId>53bd70e8-ff81-497a-847f-a15fd8ea7a09</UserSecretsId>
|
||||||
<RootNamespace>Yavsc.Server</RootNamespace>
|
<RootNamespace>Yavsc.Server</RootNamespace>
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net11.0</TargetFramework>
|
<TargetFramework>net10.0</TargetFramework>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<IsPackable>false</IsPackable>
|
<IsPackable>false</IsPackable>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>net11.0</TargetFramework>
|
<TargetFramework>net10.0</TargetFramework>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
<RootNamespace>Yavsc.cli</RootNamespace>
|
<RootNamespace>Yavsc.cli</RootNamespace>
|
||||||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
|
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue