Skip to content

Commit

Permalink
More net80 updates
Browse files Browse the repository at this point in the history
  • Loading branch information
aritchie committed Nov 15, 2023
1 parent c9b432c commit 6d6d663
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@
"description": "The target framework for the project.",
"datatype": "choice",
"choices": [{
"choice": "net7.0",
"description": "Target .NET 7.0"
"choice": "net8.0",
"description": "Target .NET 8.0"
}],
"replaces": "{DOTNET_TFM}",
"defaultValue": "net7.0"
"defaultValue": "net8.0"
},
"applicationId": {
"type": "parameter",
Expand Down
6 changes: 3 additions & 3 deletions ProjectTemplates/IosExtension/.template.config/template.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
"description": "The target framework for the project.",
"datatype": "choice",
"choices": [{
"choice": "net7.0",
"description": "Target .NET 7.0"
"choice": "net8.0",
"description": "Target .NET 8.0"
}],
"replaces": "{DOTNET_TFM}",
"defaultValue": "net7.0"
"defaultValue": "net8.0"
},
"applicationId": {
"type": "parameter",
Expand Down
2 changes: 1 addition & 1 deletion ProjectTemplates/IosExtension/IosExtension.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net7.0-ios</TargetFrameworks>
<TargetFrameworks>net8.0-ios</TargetFrameworks>
<OutputType>Library</OutputType>
<ApplicationId>YOUR-APPLICATION-ID-FROM-INFO.PLIST</ApplicationId>
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
Expand Down
3 changes: 0 additions & 3 deletions ProjectTemplates/ShinyAspNet/.template.config/template.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,6 @@
"description": "The target framework for the project.",
"datatype": "choice",
"choices": [{
"choice": "net7.0",
"description": "Target .NET 7.0"
},{
"choice": "net8.0",
"description": "Target .NET 8.0"
}],
Expand Down
8 changes: 4 additions & 4 deletions ProjectTemplates/ShinyAspNet/ShinyAspNet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
<TargetFramework>{DOTNET_TFM}</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<MicrosoftVersion>7.0.11</MicrosoftVersion>
<FastEndpointsVersion>5.18.0</FastEndpointsVersion>
<MicrosoftVersion>8.0.0</MicrosoftVersion>
<FastEndpointsVersion>5.18.2</FastEndpointsVersion>
<!--#if (orleans)-->
<OrleansVersion>7.2.1</OrleansVersion>
<OrleansVersion>7.2.3</OrleansVersion>
<!--#endif-->
<!--#if (email || push)-->
<ShinyExtensionsVersion>2.0.0-preview-0009</ShinyExtensionsVersion>
Expand All @@ -26,7 +26,7 @@
<PackageReference Include="Microsoft.AspNetCore.Authentication.Google" Version="$(MicrosoftVersion)" />
<!--#endif-->
<!--#if (apple)-->
<PackageReference Include="AspNet.Security.OAuth.Apple" Version="7.0.4" />
<PackageReference Include="AspNet.Security.OAuth.Apple" Version="8.0.0" />
<!--#endif-->
<!--#if (orleans)-->
<PackageReference Include="Microsoft.Orleans.Server" Version="$(OrleansVersion)" />
Expand Down

0 comments on commit 6d6d663

Please sign in to comment.