Skip to content

Commit 3dcb941

Browse files
committed
Fix build warnings
1 parent 527c69c commit 3dcb941

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CSharp/Microsoft.Bot.Sample.SimpleDispatchDialog/Microsoft.Bot.Sample.SimpleDispatchDialog.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
<DefineConstants>DEBUG;TRACE</DefineConstants>
3333
<ErrorReport>prompt</ErrorReport>
3434
<WarningLevel>4</WarningLevel>
35+
<NoWarn>CS1998</NoWarn>
3536
</PropertyGroup>
3637
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
3738
<DebugType>pdbonly</DebugType>

CSharp/Tests/Microsoft.Bot.Builder.Tests/DataStoreTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public SampleBotData()
6363
[TestClass]
6464
public class InMemoryStoreTests : BaseDataStoreTests
6565
{
66-
public virtual IBotDataStore<BotData> GetTestCaseDataStore()
66+
public override IBotDataStore<BotData> GetTestCaseDataStore()
6767
{
6868
return new InMemoryDataStore();
6969
}

0 commit comments

Comments
 (0)