Progress bar now use LinearEasing
This commit is contained in:
parent
a032918a83
commit
87b3489c6c
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<!-- if you want to check exceptions, change this to "Exe" and start your app from the console -->
|
<!-- if you want to check exceptions, change this to "Exe" and start your app from the console -->
|
||||||
<OutputType>WinExe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>net6.0</TargetFramework>
|
<TargetFramework>net6.0</TargetFramework>
|
||||||
<Platforms>x64</Platforms>
|
<Platforms>x64</Platforms>
|
||||||
<ApplicationIcon>Assets/app.ico</ApplicationIcon>
|
<ApplicationIcon>Assets/app.ico</ApplicationIcon>
|
||||||
@ -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>
|
||||||
|
@ -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>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user