Skip to content

Commit

Permalink
Update to preview8
Browse files Browse the repository at this point in the history
  • Loading branch information
wieslawsoltes committed May 10, 2023
1 parent 7b78abd commit 63043e3
Show file tree
Hide file tree
Showing 83 changed files with 2,701 additions and 2,586 deletions.
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<VersionPrefix>11.0.0</VersionPrefix>
<VersionSuffix>preview6</VersionSuffix>
<VersionSuffix>preview8</VersionSuffix>
<Authors>Wiesław Šoltés</Authors>
<Company>Wiesław Šoltés</Company>
<Copyright>Copyright © Wiesław Šoltés 2023</Copyright>
Expand All @@ -13,7 +13,7 @@
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<AvaloniaVersion>11.0.0-preview6</AvaloniaVersion>
<AvaloniaVersion>11.0.0-preview8</AvaloniaVersion>
<SystemReactiveVersion>5.0.0</SystemReactiveVersion>
</PropertyGroup>
</Project>
7 changes: 0 additions & 7 deletions NXUI.sln
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DrawLine", "samples\DrawLin
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FlightBooker", "samples\7GUIs\FlightBooker\FlightBooker.csproj", "{20309AAC-49BC-4DB0-ACC2-AC144413380E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NXUI.Sample.Web", "samples\NXUI.Sample.Web\NXUI.Sample.Web.csproj", "{65C54C85-7D52-4DA6-8052-EBC8369F5713}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Generator.Base", "src\Generator.Base\Generator.Base.csproj", "{D7A8917C-BAFE-4085-91CA-676BA222EC02}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{45D812EA-6205-4167-809A-D7561D6C630A}"
Expand Down Expand Up @@ -101,10 +99,6 @@ Global
{20309AAC-49BC-4DB0-ACC2-AC144413380E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{20309AAC-49BC-4DB0-ACC2-AC144413380E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{20309AAC-49BC-4DB0-ACC2-AC144413380E}.Release|Any CPU.Build.0 = Release|Any CPU
{65C54C85-7D52-4DA6-8052-EBC8369F5713}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{65C54C85-7D52-4DA6-8052-EBC8369F5713}.Debug|Any CPU.Build.0 = Debug|Any CPU
{65C54C85-7D52-4DA6-8052-EBC8369F5713}.Release|Any CPU.ActiveCfg = Release|Any CPU
{65C54C85-7D52-4DA6-8052-EBC8369F5713}.Release|Any CPU.Build.0 = Release|Any CPU
{D7A8917C-BAFE-4085-91CA-676BA222EC02}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D7A8917C-BAFE-4085-91CA-676BA222EC02}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D7A8917C-BAFE-4085-91CA-676BA222EC02}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand Down Expand Up @@ -133,7 +127,6 @@ Global
{88DA60A3-1A64-427D-B624-4F42BD852BB8} = {BA0A189D-8FD8-40A7-8860-FEC67470D55B}
{C88174BC-2F27-452F-98E0-1CD8AF71937A} = {BF6B5E5A-6F57-4429-9C4A-C1C2E17E485E}
{20309AAC-49BC-4DB0-ACC2-AC144413380E} = {6E47BA4B-2405-4281-8A1C-892A4D802A18}
{65C54C85-7D52-4DA6-8052-EBC8369F5713} = {BF6B5E5A-6F57-4429-9C4A-C1C2E17E485E}
{D7A8917C-BAFE-4085-91CA-676BA222EC02} = {BA0A189D-8FD8-40A7-8860-FEC67470D55B}
{9FABFD63-BB34-4EF8-A13E-3F0C5BA90A46} = {BA0A189D-8FD8-40A7-8860-FEC67470D55B}
{C89DA5CF-9E4D-4E76-80BE-2D4ADE60D877} = {BF6B5E5A-6F57-4429-9C4A-C1C2E17E485E}
Expand Down
18 changes: 15 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,37 @@ Creating minimal [Avalonia](https://avaloniaui.net/) next generation (NXUI, next
https://user-images.githubusercontent.com/2297442/132313187-32f18c4b-e894-46db-9a9d-9de02f30835e.mp4

# Requisites

### NXUI

```xml
<PackageReference Include="NXUI" Version="11.0.0-preview5" />
<PackageReference Include="NXUI" Version="11.0.0-preview8" />
```

Additionally, depending on the application type:

### Desktop

```xml
<PackageReference Include="NXUI.Desktop" Version="11.0.0-preview8" />
```
or
``` xml
<PackageReference Include="Avalonia.Desktop" Version="11.0.0-preview5" />
<PackageReference Include="Avalonia.Desktop" Version="11.0.0-preview8" />
```

### Browser

``` xml
<PackageReference Include="Avalonia.Browser" Version="11.0.0-preview5" />
<PackageReference Include="Avalonia.Browser" Version="11.0.0-preview8" />
```

```
dotnet workload install wasm-tools
```

# Usage

```C#
Window Build() => Window().Content(Label().Content("NXUI"));

Expand Down
17 changes: 0 additions & 17 deletions samples/NXUI.Sample.Web/App.cs

This file was deleted.

68 changes: 0 additions & 68 deletions samples/NXUI.Sample.Web/AppBuilderExtensions.cs

This file was deleted.

5 changes: 0 additions & 5 deletions samples/NXUI.Sample.Web/AppBundle/Logo.svg

This file was deleted.

64 changes: 0 additions & 64 deletions samples/NXUI.Sample.Web/AppBundle/app.css

This file was deleted.

Binary file removed samples/NXUI.Sample.Web/AppBundle/favicon.ico
Binary file not shown.
31 changes: 0 additions & 31 deletions samples/NXUI.Sample.Web/AppBundle/index.html

This file was deleted.

13 changes: 0 additions & 13 deletions samples/NXUI.Sample.Web/AppBundle/main.js

This file was deleted.

10 changes: 0 additions & 10 deletions samples/NXUI.Sample.Web/AppBundle/staticwebapp.config.json

This file was deleted.

31 changes: 0 additions & 31 deletions samples/NXUI.Sample.Web/NXUI.Sample.Web.csproj

This file was deleted.

11 changes: 0 additions & 11 deletions samples/NXUI.Sample.Web/runtimeconfig.template.json

This file was deleted.

23 changes: 23 additions & 0 deletions src/NXUI/Generated/Builders/BlurEffect.Builders.g.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// <auto-generated />
namespace NXUI;

/// <summary>
/// The avalonia builders.
/// </summary>
public static partial class Builders
{
/// <summary>
/// Creates a new instance of the <see cref="Avalonia.Media.BlurEffect"/> class.
/// </summary>
/// <returns>The new instance of the <see cref="Avalonia.Media.BlurEffect"/> class.</returns>
public static Avalonia.Media.BlurEffect BlurEffect()
=> new();

/// <summary>
/// Creates a new instance of the <see cref="Avalonia.Media.BlurEffect"/> class.
/// </summary>
/// <param name="ref">The reference of the <see cref="Avalonia.Media.BlurEffect"/> instantiated class.</param>
/// <returns>The new instance of the <see cref="Avalonia.Media.BlurEffect"/> class.</returns>
public static Avalonia.Media.BlurEffect BlurEffect(out Avalonia.Media.BlurEffect @ref)
=> @ref = new();
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// <auto-generated />
namespace NXUI;

/// <summary>
/// The avalonia builders.
/// </summary>
public static partial class Builders
{
/// <summary>
/// Creates a new instance of the <see cref="Avalonia.Media.DropShadowDirectionEffect"/> class.
/// </summary>
/// <returns>The new instance of the <see cref="Avalonia.Media.DropShadowDirectionEffect"/> class.</returns>
public static Avalonia.Media.DropShadowDirectionEffect DropShadowDirectionEffect()
=> new();

/// <summary>
/// Creates a new instance of the <see cref="Avalonia.Media.DropShadowDirectionEffect"/> class.
/// </summary>
/// <param name="ref">The reference of the <see cref="Avalonia.Media.DropShadowDirectionEffect"/> instantiated class.</param>
/// <returns>The new instance of the <see cref="Avalonia.Media.DropShadowDirectionEffect"/> class.</returns>
public static Avalonia.Media.DropShadowDirectionEffect DropShadowDirectionEffect(out Avalonia.Media.DropShadowDirectionEffect @ref)
=> @ref = new();
}
Loading

0 comments on commit 63043e3

Please sign in to comment.