Skip to content

Commit 233e385

Browse files
authored
Update Advanced to net 8 (#3985)
1 parent f0ef791 commit 233e385

File tree

18 files changed

+35
-35
lines changed

18 files changed

+35
-35
lines changed

samples/csharp_dotnetcore/01.console-echo/Console-EchoBot.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44

55
<PropertyGroup>
66
<OutputType>Exe</OutputType>
7-
<TargetFramework>net6.0</TargetFramework>
7+
<TargetFramework>net8.0</TargetFramework>
88
</PropertyGroup>
99

1010
<ItemGroup>
1111
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.7" />
12-
<PackageReference Include="Microsoft.Bot.Builder" Version="4.22.3" />
13-
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.22.3" />
12+
<PackageReference Include="Microsoft.Bot.Builder" Version="4.22.4" />
13+
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.22.4" />
1414
</ItemGroup>
1515

1616
</Project>

samples/csharp_dotnetcore/01.console-echo/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This sample shows a simple echo bot and demonstrates the bot working as a consol
88

99
## Prerequisites
1010

11-
- [.NET SDK](https://dotnet.microsoft.com/download) version 6.0
11+
- [.NET SDK](https://dotnet.microsoft.com/download) version 8.0
1212

1313
```bash
1414
# determine dotnet version

samples/csharp_dotnetcore/16.proactive-messages/ProactiveBot.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<LangVersion>latest</LangVersion>
66
</PropertyGroup>
77

88
<ItemGroup>
99
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.7" />
10-
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.22.3" />
10+
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.22.4" />
1111
</ItemGroup>
1212

1313
<ItemGroup>

samples/csharp_dotnetcore/16.proactive-messages/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ all users who have previously messaged the bot.
1515

1616
## Prerequisites
1717

18-
- [.NET SDK](https://dotnet.microsoft.com/download) version 6.0
18+
- [.NET SDK](https://dotnet.microsoft.com/download) version 8.0
1919

2020
```bash
2121
# determine dotnet version

samples/csharp_dotnetcore/17.multilingual-bot/MultiLingualBot.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<LangVersion>latest</LangVersion>
66
</PropertyGroup>
77

88
<ItemGroup>
99
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.21.0" />
1010
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.7" />
11-
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.22.3" />
11+
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.22.4" />
1212
<PackageReference Include="System.Text.Encodings.Web" Version="5.0.1" />
1313
</ItemGroup>
1414

samples/csharp_dotnetcore/17.multilingual-bot/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The API uses the most modern neural machine translation technology, as well as o
1919

2020
## Prerequisites
2121

22-
- [.NET SDK](https://dotnet.microsoft.com/download) version 6.0
22+
- [.NET SDK](https://dotnet.microsoft.com/download) version 8.0
2323

2424
```bash
2525
# determine dotnet version

samples/csharp_dotnetcore/19.custom-dialogs/Custom-Dialogs.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<LangVersion>latest</LangVersion>
66
</PropertyGroup>
77

88
<ItemGroup>
99
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.7" />
10-
<PackageReference Include="Microsoft.Bot.Builder.Dialogs" Version="4.22.3" />
11-
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.22.3" />
10+
<PackageReference Include="Microsoft.Bot.Builder.Dialogs" Version="4.22.4" />
11+
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.22.4" />
1212
</ItemGroup>
1313

1414
<ItemGroup>

samples/csharp_dotnetcore/19.custom-dialogs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ BotFramework provides a built-in base class called `Dialog`. By subclassing `Dia
88

99
## Prerequisites
1010

11-
- [.NET SDK](https://dotnet.microsoft.com/download) version 6.0
11+
- [.NET SDK](https://dotnet.microsoft.com/download) version 8.0
1212

1313
```bash
1414
# determine dotnet version

samples/csharp_dotnetcore/21.corebot-app-insights/CoreBot-App-Insights.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<LangVersion>latest</LangVersion>
66
</PropertyGroup>
77

@@ -15,11 +15,11 @@
1515

1616
<ItemGroup>
1717
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.7" />
18-
<PackageReference Include="Microsoft.Bot.Builder.AI.Luis" Version="4.22.3" />
19-
<PackageReference Include="Microsoft.Bot.Builder.ApplicationInsights" Version="4.22.3" />
20-
<PackageReference Include="Microsoft.Bot.Builder.Dialogs" Version="4.22.3" />
21-
<PackageReference Include="Microsoft.Bot.Builder.Integration.ApplicationInsights.Core" Version="4.22.3" />
22-
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.22.3" />
18+
<PackageReference Include="Microsoft.Bot.Builder.AI.Luis" Version="4.22.4" />
19+
<PackageReference Include="Microsoft.Bot.Builder.ApplicationInsights" Version="4.22.4" />
20+
<PackageReference Include="Microsoft.Bot.Builder.Dialogs" Version="4.22.4" />
21+
<PackageReference Include="Microsoft.Bot.Builder.Integration.ApplicationInsights.Core" Version="4.22.4" />
22+
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.22.4" />
2323
<PackageReference Include="Microsoft.Recognizers.Text.DataTypes.TimexExpression" Version="1.7.0" />
2424
</ItemGroup>
2525

samples/csharp_dotnetcore/21.corebot-app-insights/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ and [Application Insights](https://docs.microsoft.com/azure/azure-monitor/app/cl
2121

2222
### Install .NET Core CLI
2323

24-
- [.NET SDK](https://dotnet.microsoft.com/download) version 6.0
24+
- [.NET SDK](https://dotnet.microsoft.com/download) version 8.0
2525

2626
```bash
2727
# determine dotnet version

0 commit comments

Comments
 (0)