Skip to content

Commit

Permalink
fix: security checks (#6548)
Browse files Browse the repository at this point in the history
* fix: Update azure-pipelines.yml to use SDK instead of runtime

* Update Microsoft.BotFramework.Composer.Core.csproj

* Update Microsoft.BotFramework.Composer.Functions.csproj

* update system.Encodings.web

* Update Microsoft.BotFramework.Composer.Functions.csproj

Co-authored-by: leileizhang <[email protected]>
Co-authored-by: Soroush <[email protected]>
  • Loading branch information
3 people authored Mar 25, 2021
1 parent 231a8b9 commit ef525a6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
- task: UseDotNet@2
inputs:
version: "3.1.x"
packageType: runtime
packageType: sdk
- task: DotNetCoreCLI@2
displayName: "dotnet build"
inputs:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
<AzureFunctionsVersion>v3</AzureFunctionsVersion>
<UserSecretsId>2eb1c70c-5cd2-4c08-8aab-df989c347067</UserSecretsId>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand All @@ -13,6 +13,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.Text.Encodings.Web" Version="5.0.1" />
<PackageReference Include="Microsoft.Bot.Builder" Version="4.12.2"/>
<PackageReference Include="Microsoft.Bot.Builder.AI.Luis" Version="4.12.2"/>
<PackageReference Include="Microsoft.Bot.Builder.AI.QnA" Version="4.12.2"/>
Expand Down

0 comments on commit ef525a6

Please sign in to comment.