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

+3-3
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

+1-1
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

+2-2
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

+1-1
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

+2-2
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

+1-1
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

+3-3
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

+1-1
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

+6-6
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

+1-1
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

samples/csharp_dotnetcore/23.facebook-events/Facebook-Events-Bot.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
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

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

1515
<ItemGroup>

samples/csharp_dotnetcore/23.facebook-events/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ More information about configuring a bot for Facebook Messenger can be found her
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/42.scaleout/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The custom storage solution is implemented against memory for testing purposes a
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/42.scaleout/ScaleoutBot.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
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.Azure.KeyVault.Core" Version="3.0.5" />
1010
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.7" />
1111
<PackageReference Include="Microsoft.Azure.Storage.Blob" Version="9.4.2" />
12-
<PackageReference Include="Microsoft.Bot.Builder.Dialogs" Version="4.22.3" />
13-
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.22.3" />
12+
<PackageReference Include="Microsoft.Bot.Builder.Dialogs" Version="4.22.4" />
13+
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.22.4" />
1414
</ItemGroup>
1515

1616
<PropertyGroup>

samples/csharp_dotnetcore/44.prompt-users-for-input/PromptUsersForInput.csproj

+2-2
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

99
<ItemGroup>
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="Microsoft.Recognizers.Text" Version="1.3.2" />
1313
<PackageReference Include="Microsoft.Recognizers.Text.DateTime" Version="1.3.2" />
1414
</ItemGroup>

samples/csharp_dotnetcore/44.prompt-users-for-input/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The bot maintains user state to track the user's answers.
66

77
## Prerequisites
88

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

1111
```bash
1212
# determine dotnet version

samples/csharp_dotnetcore/47.inspection/Inspection.csproj

+2-2
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/47.inspection/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ More details are available [here](https://github.com/microsoft/BotFramework-Emul
1212

1313
## Prerequisites
1414

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

1717
```bash
1818
# determine dotnet version

0 commit comments

Comments
 (0)