Skip to content

Commit

Permalink
2.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
karamem0 committed Aug 17, 2024
1 parent 3cbc7d7 commit e5a1a5e
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- develop

env:
BUILD_VERSION: '2.1.0'
BUILD_VERSION: '2.1.1'

jobs:
select-environment:
Expand Down
13 changes: 3 additions & 10 deletions source/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,10 @@
"version": "0.2.0",
"configurations": [
{
"name": "Launch Bot",
"type": "coreclr",
"name": "Debug Bot",
"type": "dotnet",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/Karamem0.BookingsBot/bin/Debug/net8.0/Karamem0.BookingsBot.dll",
"args": [],
"cwd": "${workspaceFolder}/Karamem0.BookingsBot",
"stopAtEntry": false,
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
"projectPath": "${workspaceFolder}/Karamem0.BookingsBot/Karamem0.BookingsBot.csproj"
}
]
}
2 changes: 2 additions & 0 deletions source/.vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"command": "dotnet",
"args": [
"clean",
"${workspaceFolder}/Karamem0.BookingsBot.sln",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
Expand All @@ -22,6 +23,7 @@
"command": "dotnet",
"args": [
"build",
"${workspaceFolder}/Karamem0.BookingsBot.sln",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
Expand Down
4 changes: 2 additions & 2 deletions source/Karamem0.BookingsBot/Karamem0.BookingsBot.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
<PackageReference Include="AdaptiveCards" Version="3.1.0" />
<PackageReference Include="Azure.Identity" Version="1.12.0" />
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.22.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.7" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.8" />
<PackageReference Include="Microsoft.Bot.Builder.Azure.Blobs" Version="4.22.7" />
<PackageReference Include="Microsoft.Bot.Builder.Dialogs" Version="4.22.7" />
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.22.7" />
<PackageReference Include="Microsoft.Extensions.Logging.AzureAppServices" Version="8.0.7" />
<PackageReference Include="Microsoft.Extensions.Logging.AzureAppServices" Version="8.0.8" />
<PackageReference Include="Microsoft.Graph" Version="5.56.0" />
</ItemGroup>

Expand Down
7 changes: 5 additions & 2 deletions source/Karamem0.BookingsBot/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,13 @@
{
_ = app.UseDeveloperExceptionPage();
}
else
{
_ = app.UseWebSockets();
_ = app.UseNamedPipes($"{Environment.GetEnvironmentVariable("APPSETTING_WEBSITE_SITE_NAME")}.directline");
}
_ = app.UseDefaultFiles();
_ = app.UseStaticFiles();
_ = app.UseWebSockets();
_ = app.UseNamedPipes($"{Environment.GetEnvironmentVariable("APPSETTING_WEBSITE_SITE_NAME")}.directline");
_ = app.UseRouting();
_ = app.UseAuthorization();
_ = app.MapControllers();
Expand Down

0 comments on commit e5a1a5e

Please sign in to comment.