Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
emako committed Aug 15, 2024
1 parent 8200eac commit afdc79a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 17 deletions.
22 changes: 10 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Similar to WPF UI.
</Application>
```

### 👋Example
### 👋Examples

[Wpf.Ui.Test](https://github.com/emako/wpfui.violeta/tree/master/src/Wpf.Ui.Test)

Expand All @@ -56,21 +56,19 @@ Similar to WPF UI.
<ui:Button Content="Show Flyout">
<ui:FlyoutService.Flyout>
<ui:Flyout Placement="Bottom">
<ui:Card>
<StackPanel>
<TextBlock
HorizontalAlignment="Left"
Text="Show the flyout message here" />
<Button
Command="{Binding GotItCommand}"
Content="Got it" />
</StackPanel>
</ui:Card>
<StackPanel>
<TextBlock
HorizontalAlignment="Left"
Text="Show the flyout message here" />
<Button
Command="{Binding GotItCommand}"
Content="Got it" />
</StackPanel>
</ui:Flyout>
</ui:FlyoutService.Flyout>
</ui:Button>
```

- **ContentDialog**

> The `ContentDialogHostService` simplifies the creation and management of `ContentDialog` instances in your application.
Expand Down
10 changes: 5 additions & 5 deletions src/Wpf.Ui.Violeta/Wpf.Ui.Violeta.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@
<PropertyGroup>
<PackageId>WPF-UI.Violeta</PackageId>
<Product>WPF-UI.Violeta</Product>
<TargetFrameworks>net472;net48;net6.0-windows;net7.0-windows;net8.0-windows;</TargetFrameworks>
<TargetFrameworks>net472;net481;net6.0-windows;net7.0-windows;net8.0-windows;</TargetFrameworks>
<UseWPF>true</UseWPF>
<UseWinUI>false</UseWinUI>
<UseWindowsForms>false</UseWindowsForms>
<LangVersion>12.0</LangVersion>
<Nullable>enable</Nullable>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AssemblyVersion>3.0.5.1</AssemblyVersion>
<FileVersion>3.0.5.1</FileVersion>
<Version>$(VersionPrefix)3.0.5.1</Version>
<AssemblyVersion>3.0.5.2</AssemblyVersion>
<FileVersion>3.0.5.2</FileVersion>
<Version>$(VersionPrefix)3.0.5.2</Version>
<Authors>ema</Authors>
<Company>ema</Company>
<Description>WPF UI Violeta is based on WPF UI, and provides the Fluent experience in your known and loved WPF framework. Some new immersive controls like `Toast`.</Description>
<Description>WPF UI Violeta is based on WPF UI, and provides the Fluent experience in your known and loved WPF framework. Some new immersive controls like like `Toast`, `Flyout`, `ContentDialog`, `MessageBox` and etc.</Description>
<PackageProjectUrl>https://github.com/emako/wpfui.violeta</PackageProjectUrl>
<RepositoryUrl>https://github.com/emako/wpfui.violeta</RepositoryUrl>
<RepositoryType>git</RepositoryType>
Expand Down

0 comments on commit afdc79a

Please sign in to comment.