63 lines
2.7 KiB
XML
63 lines
2.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<Title>Material.Avalonia</Title>
|
|
<Authors>Larymar,SKProCH,Appleneko2001</Authors>
|
|
<Description>This repository is a set of styles that will help you customize your application in an appropriate material design.</Description>
|
|
<PackageProjectUrl>https://github.com/AvaloniaCommunity/Material.Avalonia</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/AvaloniaCommunity/Material.Avalonia</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<LangVersion>8</LangVersion>
|
|
<PackageTags>avalonia xaml material design theme colour color ui ux material-design google-material</PackageTags>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<PackageIcon>FavIcon.png</PackageIcon>
|
|
<VersionPrefix>3.0.0-avalonia10-preview2</VersionPrefix>
|
|
<PackageReleaseNotes>
|
|
Most likely latest version with Avalonia 0.10.x support
|
|
Version 3.0.0-rc0 was replaced with 3.0.0-avalonia10-preview1 (in order to keep version names clear)
|
|
- Bump Avalonia version dependency to 0.10.13
|
|
- Implement adapting to system base theme mode on Windows
|
|
- Improve/redesign Expander, TextBlock, Separator and other styles
|
|
- Create ContentExpandControl, used for animate resizing
|
|
- Add TransitioningContentControl style support
|
|
- Allow use Avalonia.Diagnostics to dialogs when using DEBUG profile
|
|
- Attach TextBlock properties to NumericUpDown
|
|
- Add padding to alert dialog and text field dialog
|
|
- Fix AutoCorrectPositionConverter #172
|
|
- Add default value for Slider, correct dots positioning
|
|
- Change resources apply logic to avoid colors apply delay while application starting
|
|
- Correct HsbConverter.ToColor method
|
|
- Add static part names pool
|
|
- Add auto-expand feature on NavigationDrawer
|
|
- Update contrast color algorithm
|
|
- Add InputMethod.IsInputMethodEnabled for TextBox
|
|
</PackageReleaseNotes>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="../README.md" Pack="true" PackagePath="/" />
|
|
<None Include="../wiki/FavIcon.png" Pack="true" PackagePath="/" />
|
|
</ItemGroup>
|
|
|
|
<!-- For nightly versions-->
|
|
<PropertyGroup>
|
|
<Version Condition="'$(PatchNumber)' != ''">$(VersionPrefix).$(PatchNumber)</Version>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<AvaloniaResource Include="**\*.xaml">
|
|
<SubType>Designer</SubType>
|
|
</AvaloniaResource>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Avalonia" Version="0.10.13" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Material.Styles\Material.Styles.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|