Skip to content

Commit

Permalink
Update templates to 11.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Takoooooo committed Dec 6, 2023
1 parent b00d03a commit 587b564
Show file tree
Hide file tree
Showing 9 changed files with 36 additions and 36 deletions.
2 changes: 1 addition & 1 deletion Avalonia.Templates.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>11.0.5</PackageVersion>
<PackageVersion>11.0.6</PackageVersion>
<PackageId>Avalonia.Templates</PackageId>
<Title>Avalonia Templates</Title>
<Description>Templates for creating Avalonia applications and libraries.</Description>
Expand Down
18 changes: 9 additions & 9 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ For more information about `dotnet new` templates see [here](https://blogs.msdn.

## Installing the templates

Run from a command line (`.NET 7`):
Run from a command line (`.NET 7+`):

```powershell
dotnet new install Avalonia.Templates
Expand Down Expand Up @@ -50,17 +50,17 @@ Available parameters:

*Description*: The target framework for the project.

*Options*: **net6.0**, **net7.0**
*Options*: **net6.0**, **net7.0**, **net8.0**

*By default*: net6.0
*By default*: net8.0

``-av, --avalonia-version``

*Description*: The target version of Avalonia NuGet packages.

*Options*: **0.10.21**, **11.0.5**
*Options*: **0.10.21**, **11.0.6**

*By default*: 11.0.5
*By default*: 11.0.6

``-cb, --compiled-bindings``

Expand Down Expand Up @@ -91,17 +91,17 @@ Available parameters:

*Description*: The target framework for the project.

*Options*: **net6.0**, **net7.0**
*Options*: **net6.0**, **net7.0**, **net8.0**

*By default*: net6.0
*By default*: net8.0

``-av, --avalonia-version``

*Description*: The target version of Avalonia NuGet packages.

*Options*: **0.10.21**, **11.0.5**
*Options*: **0.10.21**, **11.0.6**

*By default*: 11.0.5
*By default*: 11.0.6

``-cb, --compiled-bindings``

Expand Down
10 changes: 5 additions & 5 deletions templates/csharp/app-mvvm/.template.config/template.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,24 +76,24 @@
"description": "Target 0.10.21"
},
{
"choice": "11.0.5",
"description": "Target 11.0.5 (Latest stable)"
"choice": "11.0.6",
"description": "Target 11.0.6 (Latest stable)"
}
],
"replaces": "AvaloniaVersionTemplateParameter",
"defaultValue": "11.0.5"
"defaultValue": "11.0.6"
},
"AvaloniaStableChosen": {
"type": "computed",
"value": "(AvaloniaVersion == \"11.0.5\")"
"value": "(AvaloniaVersion == \"11.0.6\")"
},
"UseCompiledBindings": {
"type": "parameter",
"description": "Defines if CompiledBindings should be enabled by default in the project (only supported in 11.0 version and newer).",
"datatype": "bool",
"displayName": "Use compiled Bindings",
"defaultValue": "true",
"isEnabled": "(AvaloniaVersion == \"11.0.5\")"
"isEnabled": "(AvaloniaVersion == \"11.0.6\")"
},
"RemoveViewLocator": {
"type": "parameter",
Expand Down
10 changes: 5 additions & 5 deletions templates/csharp/app/.template.config/template.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,24 +52,24 @@
"description": "Target 0.10.21"
},
{
"choice": "11.0.5",
"description": "Target 11.0.5 (Latest stable)"
"choice": "11.0.6",
"description": "Target 11.0.6 (Latest stable)"
}
],
"replaces": "AvaloniaVersionTemplateParameter",
"defaultValue": "11.0.5"
"defaultValue": "11.0.6"
},
"AvaloniaStableChosen": {
"type": "computed",
"value": "(AvaloniaVersion == \"11.0.5\")"
"value": "(AvaloniaVersion == \"11.0.6\")"
},
"UseCompiledBindings": {
"type": "parameter",
"description": "Defines if CompiledBindings should be enabled by default in the project (only supported in 11.0 version and newer).",
"datatype": "bool",
"displayName": "Use compiled Bindings",
"defaultValue": "true",
"isEnabled": "(AvaloniaVersion == \"11.0.5\")"
"isEnabled": "(AvaloniaVersion == \"11.0.6\")"
},
"HostIdentifier": {
"type": "bind",
Expand Down
2 changes: 1 addition & 1 deletion templates/csharp/xplat/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<Nullable>enable</Nullable>
<AvaloniaVersion>11.0.5</AvaloniaVersion>
<AvaloniaVersion>11.0.6</AvaloniaVersion>
</PropertyGroup>
</Project>
10 changes: 5 additions & 5 deletions templates/fsharp/app-mvvm/.template.config/template.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,24 +76,24 @@
"description": "Target 0.10.21"
},
{
"choice": "11.0.5",
"description": "Target 11.0.5 (Latest stable)"
"choice": "11.0.6",
"description": "Target 11.0.6 (Latest stable)"
}
],
"replaces": "AvaloniaVersionTemplateParameter",
"defaultValue": "11.0.5"
"defaultValue": "11.0.6"
},
"AvaloniaStableChosen": {
"type": "computed",
"value": "(AvaloniaVersion == \"11.0.5\")"
"value": "(AvaloniaVersion == \"11.0.6\")"
},
"UseCompiledBindings": {
"type": "parameter",
"description": "Defines if CompiledBindings should be enabled by default in the project (only supported in 11.0 version and newer).",
"datatype": "bool",
"displayName": "Use compiled Bindings",
"defaultValue": "true",
"isEnabled": "(AvaloniaVersion == \"11.0.5\")"
"isEnabled": "(AvaloniaVersion == \"11.0.6\")"
},
"RemoveViewLocator": {
"type": "parameter",
Expand Down
10 changes: 5 additions & 5 deletions templates/fsharp/app/.template.config/template.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,24 +52,24 @@
"description": "Target 0.10.21"
},
{
"choice": "11.0.5",
"description": "Target 11.0.5 (Latest stable)"
"choice": "11.0.6",
"description": "Target 11.0.6 (Latest stable)"
}
],
"replaces": "AvaloniaVersionTemplateParameter",
"defaultValue": "11.0.5"
"defaultValue": "11.0.6"
},
"AvaloniaStableChosen": {
"type": "computed",
"value": "(AvaloniaVersion == \"11.0.5\")"
"value": "(AvaloniaVersion == \"11.0.6\")"
},
"UseCompiledBindings": {
"type": "parameter",
"description": "Defines if CompiledBindings should be enabled by default in the project (only supported in 11.0 version and newer).",
"datatype": "bool",
"displayName": "Use compiled Bindings",
"defaultValue": "true",
"isEnabled": "(AvaloniaVersion == \"11.0.5\")"
"isEnabled": "(AvaloniaVersion == \"11.0.6\")"
},
"HostIdentifier": {
"type": "bind",
Expand Down
2 changes: 1 addition & 1 deletion templates/fsharp/xplat/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<AvaloniaVersion>11.0.5</AvaloniaVersion>
<AvaloniaVersion>11.0.6</AvaloniaVersion>
</PropertyGroup>
</Project>
8 changes: 4 additions & 4 deletions tests/build-test.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ Create-And-Build "avalonia.app" "AvaloniaApp" "C#" "f" "net6.0" $binlog
Create-And-Build "avalonia.app" "AvaloniaApp" "C#" "f" "net7.0" $binlog
Create-And-Build "avalonia.app" "AvaloniaApp" "C#" "f" "net8.0" $binlog
Create-And-Build "avalonia.app" "AvaloniaApp" "C#" "av" "0.10.21" $binlog
Create-And-Build "avalonia.app" "AvaloniaApp" "C#" "av" "11.0.5" $binlog
Create-And-Build "avalonia.app" "AvaloniaApp" "C#" "av" "11.0.6" $binlog
Create-And-Build "avalonia.app" "AvaloniaApp" "C#" "cb" "true" $binlog
Create-And-Build "avalonia.app" "AvaloniaApp" "C#" "cb" "false" $binlog

Expand All @@ -107,7 +107,7 @@ Test-Template "avalonia.mvvm" "AvaloniaMvvm" "C#" "f" "net6.0" $binlog
Test-Template "avalonia.mvvm" "AvaloniaMvvm" "C#" "f" "net7.0" $binlog
Test-Template "avalonia.mvvm" "AvaloniaMvvm" "C#" "f" "net8.0" $binlog
Create-And-Build "avalonia.mvvm" "AvaloniaMvvm" "C#" "av" "0.10.21" $binlog
Create-And-Build "avalonia.mvvm" "AvaloniaMvvm" "C#" "av" "11.0.5" $binlog
Create-And-Build "avalonia.mvvm" "AvaloniaMvvm" "C#" "av" "11.0.6" $binlog
Create-And-Build "avalonia.mvvm" "AvaloniaMvvm" "C#" "m" "ReactiveUI" $binlog
Create-And-Build "avalonia.mvvm" "AvaloniaMvvm" "C#" "m" "CommunityToolkit" $binlog
Create-And-Build "avalonia.mvvm" "AvaloniaMvvm" "C#" "cb" "true" $binlog
Expand All @@ -125,15 +125,15 @@ Create-And-Build "avalonia.app" "AvaloniaApp" "F#" "f" "net6.0" $binlog
Create-And-Build "avalonia.app" "AvaloniaApp" "F#" "f" "net7.0" $binlog
Create-And-Build "avalonia.app" "AvaloniaApp" "F#" "f" "net8.0" $binlog
Create-And-Build "avalonia.app" "AvaloniaApp" "F#" "av" "0.10.21" $binlog
Create-And-Build "avalonia.app" "AvaloniaApp" "F#" "av" "11.0.5" $binlog
Create-And-Build "avalonia.app" "AvaloniaApp" "F#" "av" "11.0.6" $binlog
Create-And-Build "avalonia.app" "AvaloniaApp" "F#" "cb" "true" $binlog
Create-And-Build "avalonia.app" "AvaloniaApp" "F#" "cb" "false" $binlog

Test-Template "avalonia.mvvm" "AvaloniaMvvm" "F#" "f" "net6.0" $binlog
Test-Template "avalonia.mvvm" "AvaloniaMvvm" "F#" "f" "net7.0" $binlog
Test-Template "avalonia.mvvm" "AvaloniaMvvm" "F#" "f" "net8.0" $binlog
Create-And-Build "avalonia.mvvm" "AvaloniaMvvm" "F#" "av" "0.10.21" $binlog
Create-And-Build "avalonia.mvvm" "AvaloniaMvvm" "F#" "av" "11.0.5" $binlog
Create-And-Build "avalonia.mvvm" "AvaloniaMvvm" "F#" "av" "11.0.6" $binlog
Create-And-Build "avalonia.mvvm" "AvaloniaMvvm" "F#" "m" "ReactiveUI" $binlog
Create-And-Build "avalonia.mvvm" "AvaloniaMvvm" "F#" "m" "CommunityToolkit" $binlog
Create-And-Build "avalonia.mvvm" "AvaloniaMvvm" "F#" "cb" "true" $binlog
Expand Down

0 comments on commit 587b564

Please sign in to comment.