Give a clear and concise description of what the bug is.
When the below line is un-commented,
// IStorage dataStore = new Microsoft.Bot.Builder.Azure.AzureBlobStorage(blobStorageConfig.ConnectionString, storageContainer);
and when the package is installed, and namespace included
Microsoft.Bot.Builder.Azure
we get the error
Severity Code Description Project File Line Suppression State
Error CS0234 The type or namespace name 'Azure' does not exist in the namespace 'Microsoft.Bot.Builder' (are you missing an assembly reference?) qnamaker-activelearning-bot C:\Bots\BotBuilder-Samples-master\experimental\qnamaker-activelearning\csharp_dotnetcore\Startup.cs 11 Active
Steps to reproduce the behavior:
Build clean without errors
If applicable, add screenshots to help explain your problem.
Add any other context about the problem here.
[bug]
It looks like right now when you try to add package Microsoft.Bot.Builder.Azure the most recently published version tries to get installed (4.4.5)
However if you look at the .csproj file, you can see that the sample is targeting packages for version 4.4.3, specifically Microsoft.Bot.Builder, which Microsoft.Bot.Builder.Azure depends on.
Installing Microsoft.Bot.Builder.Azure 4.4.3 with Nuget Package Manager however allowed the bot to run

I'll ask and see what we want to do regarding what packages we should reference in the samples, as v4.5 should be releasing today
Also, this experimental sample still uses the .bot file, which the team has backed off using in favor of language-specific configs that are already built-in (e.g. appsettings.json)
Per Steven Gum, I can go ahead and bump the packages that the experimental samples are targeting, once we make the 4.5 samples update switch
For now to workaround, just specify version numbers manually when including packages
Thank you so much for the quick reply. I will do the same way. I should have checked the
dependancy version before posting, beginners rush.
(Just a small side comment: removing this from my support queue, as Scott has assigned Rohan onto this 馃憤 )
@trojenguri from our team is working with QnA samples at the moment. Please look into it.
hi, please can you let me know if there is a probable date by when you will have this fully migrated to look like the other V4 sample bots?
We have migrated active learning samples, this is the link https://github.com/microsoft/BotBuilder-Samples/tree/master/samples/csharp_dotnetcore/48.qnamaker-active-learning-bot
@Zerryth Can we close this issue now?
Thank you, I had seen that. But I also do observe its still not consistent with other examples.
Same mentioned here
...can check out the new active learning sample because **it hasn't been updated** to match the pattern of the other samples yet.
Main architecture is consistent with the overall sample but the Dialog path, we kept as it is or we did minimal changes.
We would be creating one more dialog very soon, which would include Multi-turn + Active learning in consistent with latest samples.
imo yeah, we can close this issue if the Active Learning sample in master builds successfully :+1:
...I'm assuming yes it does, since someone on the team must've reviewed it recently if it just merged in
Please reopen if sample 48 is not building
Most helpful comment
Main architecture is consistent with the overall sample but the Dialog path, we kept as it is or we did minimal changes.
We would be creating one more dialog very soon, which would include Multi-turn + Active learning in consistent with latest samples.