15978bf564
Fills in the CHANGELOG.md entry for the test-suite expansion and bug fixes since 0.9.0 (see previous commits), and bumps <Version>/versionCode across the App and Android head csproj files ahead of the tag.
31 lines
1.2 KiB
XML
31 lines
1.2 KiB
XML
<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.1</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>
|