2026-06-12 16:06:37 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<!-- Libreria UI condivisa: il codice Avalonia (App, Views, ViewModels, Loc,
|
|
|
|
|
Assets) usato sia dall'head Desktop sia dall'head Android. Gli head
|
|
|
|
|
portano l'entry-point e i pacchetti specifici di piattaforma. -->
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
|
|
|
<!-- Versione dell'applicazione: unico punto da modificare. Compare nel
|
|
|
|
|
titolo della finestra ed è incisa nei binari pubblicati. -->
|
|
|
|
|
<Version>0.9.0</Version>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Folder Include="Models\" />
|
|
|
|
|
<AvaloniaResource Include="Assets\**" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Avalonia" Version="12.0.4" />
|
|
|
|
|
<PackageReference Include="Avalonia.Themes.Fluent" Version="12.0.4" />
|
|
|
|
|
<PackageReference Include="Avalonia.Fonts.Inter" Version="12.0.4" />
|
|
|
|
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.1" />
|
|
|
|
|
<PackageReference Include="QRCoder" Version="1.8.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Core\PalladiumWallet.Core.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|