Skip to content

Commit 5509384

Browse files
authored
Merge pull request microsoft#3826 from microsoft/lamil/directlineASEFix
Update Microsoft.Bot.Solutions to fix DL-ASE issues
2 parents 8fd23eb + a4cfce6 commit 5509384

File tree

1 file changed

+11
-16
lines changed

1 file changed

+11
-16
lines changed

sdk/csharp/libraries/microsoft.bot.solutions/Microsoft.Bot.Solutions.csproj

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
2+
33
<PropertyGroup>
44
<Version Condition=" '$(PackageVersion)' == '' ">4.0.0-local</Version>
55
<Version Condition=" '$(PackageVersion)' != '' ">$(PackageVersion)</Version>
66
<PackageVersion Condition=" '$(PackageVersion)' == '' ">4.0.0-local</PackageVersion>
77
<PackageVersion Condition=" '$(PackageVersion)' != '' ">$(PackageVersion)</PackageVersion>
88
<Configurations>Debug;Release;Documentation;Debug - NuGet Packages;</Configurations>
99
</PropertyGroup>
10-
10+
1111
<PropertyGroup>
12-
<TargetFramework>netstandard2.0</TargetFramework>
12+
<TargetFramework>netstandard2.1</TargetFramework>
1313
<AssemblyName>Microsoft.Bot.Solutions</AssemblyName>
1414
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1515
<Company>Microsoft</Company>
1616
<Authors>Microsoft</Authors>
1717
<Description>Shared library for Conversational AI Virtual Assistants and Skills.</Description>
1818
</PropertyGroup>
19-
19+
2020
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2121
<SignAssembly>true</SignAssembly>
2222
<DelaySign>true</DelaySign>
@@ -27,7 +27,7 @@
2727
<ItemGroup>
2828
<Compile Remove="Skills\SkillDialog.cs" />
2929
</ItemGroup>
30-
30+
3131
<ItemGroup>
3232
<EmbeddedResource Include="Authentication\AuthenticationResponses.de.json" />
3333
<EmbeddedResource Include="Authentication\AuthenticationResponses.es.json" />
@@ -36,11 +36,11 @@
3636
<EmbeddedResource Include="Authentication\AuthenticationResponses.json" />
3737
<EmbeddedResource Include="Authentication\AuthenticationResponses.zh.json" />
3838
</ItemGroup>
39-
39+
4040
<ItemGroup>
41-
<PackageReference Include="AdaptiveCards" Version="1.2.4" />
42-
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.8.1" />
43-
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.2" />
41+
<PackageReference Include="AdaptiveCards" Version="2.7.1" />
42+
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.17.0" />
43+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
4444
<PackageReference Include="Microsoft.Azure.CognitiveServices.ContentModerator" Version="2.0.0" />
4545
<PackageReference Include="Microsoft.Bot.Builder.AI.Luis" Version="4.13.2" />
4646
<PackageReference Include="Microsoft.Bot.Builder.AI.QnA" Version="4.13.2" />
@@ -57,10 +57,9 @@
5757
<PackageReference Include="NCrontab" Version="3.3.1" />
5858
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
5959
<PackageReference Include="AsyncUsageAnalyzers" Version="1.0.0-alpha003" PrivateAssets="all" />
60-
<PackageReference Include="StyleCop.Analyzers" Version="1.1.0-beta008" PrivateAssets="all" />
60+
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="all" />
6161
<PackageReference Include="SourceLink.Create.CommandLine" Version="2.8.3" />
6262
</ItemGroup>
63-
6463
<ItemGroup>
6564
<Compile Update="Authentication\AuthenticationResponses.cs">
6665
<DesignTime>True</DesignTime>
@@ -73,24 +72,20 @@
7372
<DependentUpon>CommonStrings.resx</DependentUpon>
7473
</Compile>
7574
</ItemGroup>
76-
7775
<ItemGroup>
7876
<EmbeddedResource Update="Resources\CommonStrings.resx">
7977
<Generator>PublicResXFileCodeGenerator</Generator>
8078
<LastGenOutput>CommonStrings.Designer.cs</LastGenOutput>
8179
</EmbeddedResource>
8280
</ItemGroup>
83-
8481
<ItemGroup>
8582
<None Update="Authentication\AuthenticationResponses.tt">
8683
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
8784
<Generator>TextTemplatingFileGenerator</Generator>
8885
<LastGenOutput>AuthenticationResponses.cs</LastGenOutput>
8986
</None>
9087
</ItemGroup>
91-
9288
<ItemGroup>
9389
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
9490
</ItemGroup>
95-
96-
</Project>
91+
</Project>

0 commit comments

Comments
 (0)