Skip to content

Commit

Permalink
Update Twilio package (#6839)
Browse files Browse the repository at this point in the history
  • Loading branch information
sw-joelmut committed Aug 21, 2024
1 parent 5717a10 commit b11f048
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<PackageReference Include="MSTest.TestAdapter" Version="3.5.1" />
<PackageReference Include="MSTest.TestFramework" Version="3.5.1" />
<PackageReference Include="NAudio" Version="2.2.1" />
<PackageReference Include="Twilio" Version="5.37.2" />
<PackageReference Include="Twilio" Version="7.2.2" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</PropertyGroup>

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>netstandard2.1</TargetFramework>
<Description>Library for connecting bots with Twilio SMS API.</Description>
<Summary>This library implements C# classes for Twilio adapter.</Summary>
<PackageTags>msbot-component;msbot-adapter</PackageTags>
Expand All @@ -22,7 +22,7 @@
</PropertyGroup>

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>netstandard2.1</TargetFramework>
<!-- The Twilio package isn't signed, so supress the warning. There seems to not be a way to supress this for ONLY Twilio. -->
<NoWarn>$(NoWarn),CS8002</NoWarn>
</PropertyGroup>
Expand All @@ -33,7 +33,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Twilio" Version="5.37.2" />
<PackageReference Include="Twilio" Version="7.2.2" />
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Condition=" '$(ReleasePackageVersion)' == '' " Version="$(LocalPackageVersion)" />
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Condition=" '$(ReleasePackageVersion)' != '' " Version="$(ReleasePackageVersion)" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public static Dictionary<string, string> QueryStringToDictionary(string query)
return values;
}

var pairs = query.Replace("+", "%20").Split('&');
var pairs = query.Replace("+", "%20", StringComparison.InvariantCulture).Split('&');

foreach (var p in pairs)
{
Expand Down

0 comments on commit b11f048

Please sign in to comment.