Merge pull request #22 from kant2002/kant/update-avalonia

Update Avalonia to 0.10.15
This commit is contained in:
Todor Totev 2022-07-06 18:04:19 +03:00 committed by GitHub
commit def5525fce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 8 deletions

View File

@ -43,12 +43,12 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Avalonia" Version="0.10.14" /> <PackageReference Include="Avalonia" Version="0.10.15" />
<PackageReference Include="Avalonia.Desktop" Version="0.10.14" /> <PackageReference Include="Avalonia.Desktop" Version="0.10.15" />
<PackageReference Include="Avalonia.Native" Version="0.10.14" /> <PackageReference Include="Avalonia.Native" Version="0.10.15" />
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.14" /> <PackageReference Include="Avalonia.ReactiveUI" Version="0.10.15" />
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.--> <!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="0.10.14" /> <PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="0.10.15" />
<!--Condition below is needed to generate macOS App only.--> <!--Condition below is needed to generate macOS App only.-->
<PackageReference Include="Dotnet.Bundle" Version="*" Condition="$(RuntimeIdentifier.StartsWith('osx'))" /> <PackageReference Include="Dotnet.Bundle" Version="*" Condition="$(RuntimeIdentifier.StartsWith('osx'))" />
</ItemGroup> </ItemGroup>

View File

@ -1,5 +1,5 @@
<Directives> <Directives>
<Application> <Application>
<!-- main app assembly provides types which needs to be reflected upon --> <!-- main app assembly provides types which needs to be reflected upon -->
<Assembly Name="AvaloniaCoreRTDemo" Dynamic="Required All"></Assembly> <Assembly Name="AvaloniaCoreRTDemo" Dynamic="Required All"></Assembly>
@ -8,6 +8,7 @@
<Type Name="Avalonia.Animation.Easings.QuadraticEaseIn" Dynamic="Required All" /> <Type Name="Avalonia.Animation.Easings.QuadraticEaseIn" Dynamic="Required All" />
<Type Name="Avalonia.Animation.Easings.QuadraticEaseOut" Dynamic="Required All" /> <Type Name="Avalonia.Animation.Easings.QuadraticEaseOut" Dynamic="Required All" />
<Type Name="Avalonia.Animation.Easings.CubicEaseOut" Dynamic="Required All" /> <Type Name="Avalonia.Animation.Easings.CubicEaseOut" Dynamic="Required All" />
<Type Name="Avalonia.Animation.Easings.LinearEasing" Dynamic="Required All" />
</Assembly> </Assembly>
<Assembly Name="Avalonia.Themes.Default" Dynamic="Required All"></Assembly> <Assembly Name="Avalonia.Themes.Default" Dynamic="Required All"></Assembly>
<Assembly Name="Avalonia.Visuals" Dynamic="Required All"> <Assembly Name="Avalonia.Visuals" Dynamic="Required All">
@ -43,5 +44,5 @@
<Assembly Name="System.Reactive" Dynamic="Required All"></Assembly> <Assembly Name="System.Reactive" Dynamic="Required All"></Assembly>
<Assembly Name="Splat" Dynamic="Required All"></Assembly> <Assembly Name="Splat" Dynamic="Required All"></Assembly>
--> -->
</Application> </Application>
</Directives> </Directives>