correction persistance
continuous-integration/drone/push Build is passing Details

master
Céleste BARBOSA 10 months ago
parent 241adc617f
commit 482ad79769

@ -1,8 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0-android;net8.0-ios;net8.0-maccatalyst</TargetFrameworks>
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net8.0-windows10.0.19041.0</TargetFrameworks>
<TargetFrameworks>net8.0-windows10.0.19041.0</TargetFrameworks>
<!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET -->
<!-- <TargetFrameworks>$(TargetFrameworks);net8.0-tizen</TargetFrameworks> -->
@ -38,7 +37,7 @@
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion>
<GenerateAppInstallerFile>True</GenerateAppInstallerFile>
<AppxPackageSigningEnabled>True</AppxPackageSigningEnabled>
<PackageCertificateKeyFile>C:\Users\nibarbosa\source\repos\mastermind\Sources\MauiSpark\MauiSpark_TemporaryKey.pfx</PackageCertificateKeyFile>
<PackageCertificateKeyFile>MauiSpark_TemporaryKey.pfx</PackageCertificateKeyFile>
<AppxPackageSigningTimestampDigestAlgorithm>SHA256</AppxPackageSigningTimestampDigestAlgorithm>
<AppxAutoIncrementPackageRevision>True</AppxAutoIncrementPackageRevision>
<AppxSymbolPackageEnabled>False</AppxSymbolPackageEnabled>
@ -48,6 +47,8 @@
</PropertyGroup>
<ItemGroup>
<RuntimeHostConfigurationOption Include="System.Runtime.Loader.UseRidGraph" Value="true" />
<!-- App Icon -->
<MauiIcon Include="Resources\AppIcon\appicon.png" />

@ -18,11 +18,6 @@ namespace Persistance.Persistance
/// </summary>
private readonly string nomDossier = "Fichiers";
/// <summary>
/// Chaîne de caractères représentant le nom du doissier à la racine.
/// </summary>
private readonly string nomRacine = "Sources";
/// <summary>
/// Chaîne de caractères représentant le nom du dossier.
/// </summary>

Loading…
Cancel
Save