Skip to content

Commit 7c77026

Browse files
authored
Merge pull request #2 from Applicita/csharp-markup-2-uno
Update mcs-winui3-app template
2 parents 16edee7 + e874f09 commit 7c77026

File tree

17 files changed

+71
-64
lines changed

17 files changed

+71
-64
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Promotes conciseness, readability and leveraging the latest language features.
1919
- **mcs-orleans-multiservice** [doc](https://github.com/Applicita/Orleans.Multiservice#readme)<br />
2020
*Prevent microservices pain with logical service separation for Microsoft Orleans 7*
2121

22-
These templates can be combined with [Orleans.Multitenant](https://github.com/Applicita/Orleans.Multitenant) for secure, flexible tenant separation in Microsoft Orleans 7
22+
The Orleans templates can be combined with [Orleans.Multitenant](https://github.com/Applicita/Orleans.Multitenant) for secure, flexible tenant separation in Microsoft Orleans 7
2323

2424
For how to install, see:<br />
2525
[![Nuget (with prereleases)](https://img.shields.io/nuget/vpre/Modern.CSharp.Templates?color=gold&label=NuGet:%20Modern.CSharp.Templates&style=plastic)](https://www.nuget.org/packages/Modern.CSharp.Templates)

src/Modern.CSharp.Templates.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<PackageId>Modern.CSharp.Templates</PackageId>
5-
<PackageVersion>1.2.0</PackageVersion>
5+
<PackageVersion>1.3.0</PackageVersion>
66
<PackageType>Template</PackageType>
77
<Title>Modern C# 11 Templates</Title>
88
<Description>A toolkit of modern dotnet new templates for C# 11, .NET 7, Microsoft Orleans 7, Windows App SDK and Uno Platform</Description>

src/Orleans.Multiservice/Apis/Apis.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
</PropertyGroup>
2020

2121
<ItemGroup>
22-
<PackageReference Include="Microsoft.Orleans.Persistence.Memory" Version="7.0.0" />
23-
<PackageReference Include="Microsoft.Orleans.Sdk" Version="7.0.0" />
24-
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="7.0.0" />
25-
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
22+
<PackageReference Include="Microsoft.Orleans.Persistence.Memory" Version="7.1.0" />
23+
<PackageReference Include="Microsoft.Orleans.Sdk" Version="7.1.0" />
24+
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="7.0.3" />
25+
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
2626
</ItemGroup>
2727

2828
<ItemGroup>

src/Orleans.Multiservice/Contracts/Contracts.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
</PropertyGroup>
1515

1616
<ItemGroup>
17-
<PackageReference Include="Microsoft.Orleans.Sdk" Version="7.0.0" />
17+
<PackageReference Include="Microsoft.Orleans.Sdk" Version="7.1.0" />
1818
</ItemGroup>
1919

2020
</Project>

src/Orleans.Multiservice/LogicalserviceNameService/LogicalserviceNameService.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
</PropertyGroup>
1515

1616
<ItemGroup>
17-
<PackageReference Include="Microsoft.Orleans.Runtime" Version="7.0.0" />
18-
<PackageReference Include="Microsoft.Orleans.Sdk" Version="7.0.0" />
17+
<PackageReference Include="Microsoft.Orleans.Runtime" Version="7.1.0" />
18+
<PackageReference Include="Microsoft.Orleans.Sdk" Version="7.1.0" />
1919
</ItemGroup>
2020

2121
<ItemGroup>

src/Orleans.Multiservice/Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# MultiserviceName multiservice
22

33
## The multiservice pattern
4-
This solution follows the [Multiservice pattern for Microsoft Orleans](https://github.com/Applicita/Orleans.Multiservice#readme); it was generated with [Modern.CSharp.Templates 1.1.0](https://www.nuget.org/packages/Modern.CSharp.Templates/1.1.0) by this command:
4+
This solution follows the [Multiservice pattern for Microsoft Orleans](https://github.com/Applicita/Orleans.Multiservice#readme); it was generated with [Modern.CSharp.Templates 1.3.0](https://www.nuget.org/packages/Modern.CSharp.Templates/1.3.0) by this command:
55

66
`dotnet new mcs-orleans-multiservice --RootNamespace RootNamespacePrefix --Multiservice MultiserviceName --Logicalservice LogicalserviceName`
77

src/Readme.md

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,28 @@
11
A toolkit of modern [dotnet new templates](https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-new) for C# 11, .NET 7, Microsoft Orleans 7, Windows App SDK and Uno Platform
22

33
Templates:
4-
- **mcs-editorconfig** [doc](https://github.com/Applicita/Modern.CSharp.Templates/blob/main/Editorconfig.md)<br />
4+
- **mcs-editorconfig** [doc](https://github.com/Applicita/Modern.CSharp.Templates/blob/main/Editorconfig.md)
5+
56
*Settings for C# 11 code formatting, style, naming style and analysis.
67
Promotes conciseness, readability and leveraging the latest language features.
78
(can also be used with C# 10)*
89

9-
- **mcs-winui3-app** [doc](https://github.com/VincentH-Net/CSharpForMarkup#readme)<br />
10+
- **mcs-winui3-app** [doc](https://github.com/VincentH-Net/CSharpForMarkup#readme)
11+
1012
*WinUI 3 C# Markup 2 application solution template for building browser / native UI with Windows App SDK and/or Uno Platform*
1113

12-
- **mcs-winui3-view** [doc](https://github.com/VincentH-Net/CSharpForMarkup#readme)<br />
14+
- **mcs-winui3-view** [doc](https://github.com/VincentH-Net/CSharpForMarkup#readme)
15+
1316
*WinUI 3 C# Markup 2 view item template, for use with the `mcs-winui3-app` template via it's `New-View.ps1` command*
1417

15-
- **mcs-orleans-results** [doc](https://github.com/Applicita/Orleans.Results#readme)<br />
18+
- **mcs-orleans-results** [doc](https://github.com/Applicita/Orleans.Results#readme)
19+
1620
*Concise, version-tolerant result pattern implementation for Microsoft Orleans 7*
1721

18-
- **mcs-orleans-multiservice** [doc](https://github.com/Applicita/Orleans.Multiservice#readme)<br />
22+
- **mcs-orleans-multiservice** [doc](https://github.com/Applicita/Orleans.Multiservice#readme)
23+
1924
*Prevent microservices pain with logical service separation for Microsoft Orleans 7*
2025

21-
These templates can be combined with [Orleans.Multitenant](https://github.com/Applicita/Orleans.Multitenant) for secure, flexible tenant separation in Microsoft Orleans 7
26+
The Orleans templates can be combined with [Orleans.Multitenant](https://github.com/Applicita/Orleans.Multitenant) for secure, flexible tenant separation in Microsoft Orleans 7
2227

23-
[Release Notes](https://github.com/Applicita/Modern.CSharp.Templates/releases/tag/1-2-0)
28+
[Release Notes](https://github.com/Applicita/Modern.CSharp.Templates/releases/tag/1-3-0)

src/WinUI3-App/UnoWinUIQuickStart.Mobile/UnoWinUIQuickStart.Mobile.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@
4848
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
4949
</PropertyGroup>
5050
<ItemGroup>
51-
<PackageReference Include="Uno.WinUI" Version="4.7.44" />
52-
<PackageReference Include="Uno.WinUI.RemoteControl" Version="4.7.44" Condition="'$(Configuration)'=='Debug'" />
53-
<PackageReference Include="Uno.UI.Adapter.Microsoft.Extensions.Logging" Version="4.7.44" />
54-
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="5.0.0" />
55-
<PackageReference Include="Uno.WinUI.Lottie" Version="4.7.44" />
51+
<PackageReference Include="Uno.WinUI" Version="4.9.20" />
52+
<PackageReference Include="Uno.WinUI.RemoteControl" Version="4.9.20" Condition="'$(Configuration)'=='Debug'" />
53+
<PackageReference Include="Uno.UI.Adapter.Microsoft.Extensions.Logging" Version="4.9.20" />
54+
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="7.0.0" />
55+
<PackageReference Include="Uno.WinUI.Lottie" Version="4.9.20" />
5656
</ItemGroup>
5757
<Choose>
5858
<When Condition="'$(TargetFramework)'=='net7.0-android'">

src/WinUI3-App/UnoWinUIQuickStart.Server/UnoWinUIQuickStart.Server.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
</ItemGroup>
1717
1818
<ItemGroup>
19-
<PackageReference Include="Uno.Wasm.Bootstrap.Server" Version="7.0.0-dev.195" />
19+
<PackageReference Include="Uno.Wasm.Bootstrap.Server" Version="7.0.24" />
2020
</ItemGroup>
2121
#endif -->
2222

src/WinUI3-App/UnoWinUIQuickStart.Skia.Gtk/UnoWinUIQuickStart.Skia.Gtk.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
<Content Include="..\UnoWinUIQuickStart.Windows\Images\StoreLogo.png" />
1616
</ItemGroup>
1717
<ItemGroup>
18-
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="5.0.0" />
19-
<PackageReference Include="Uno.WinUI.Skia.Gtk" Version="4.7.44" />
20-
<PackageReference Include="Uno.WinUI.RemoteControl" Version="4.7.44" Condition="'$(Configuration)'=='Debug'" />
21-
<PackageReference Include="Uno.UI.Adapter.Microsoft.Extensions.Logging" Version="4.7.44" />
22-
<PackageReference Include="Uno.WinUI.Lottie" Version="4.7.44" />
18+
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="7.0.0" />
19+
<PackageReference Include="Uno.WinUI.Skia.Gtk" Version="4.9.20" />
20+
<PackageReference Include="Uno.WinUI.RemoteControl" Version="4.9.20" Condition="'$(Configuration)'=='Debug'" />
21+
<PackageReference Include="Uno.UI.Adapter.Microsoft.Extensions.Logging" Version="4.9.20" />
22+
<PackageReference Include="Uno.WinUI.Lottie" Version="4.9.20" />
2323
<PackageReference Include="SkiaSharp.Views.Uno.WinUI" Version="2.88.3" />
2424
<PackageReference Include="SkiaSharp.Skottie" Version="2.88.3" />
2525
</ItemGroup>

0 commit comments

Comments
 (0)