Results 12 comments of WizX20
trafficstars

Does not work for me. I'm starting to think it has something to do with the latest windows updates? It started for me when I installed KB4074595 and KB4023057. -...

For now I use this to be sure it does not take 20 seconds to time out. Should be as simple as [https://msdn.microsoft.com/en-us/library/system.net.webrequest.timeout(v=vs.110).aspx](url) `// run geo-coding with timeout IEnumerable addresses...

I stumbled on this one when I had to generate a new version of a client side-by-side. I had a look at https://github.com/RicoSuter/NSwag/blob/85ae862fd6d68173a201a79e0ad06e0be2ec5de1/src/NSwag.CodeGeneration.CSharp/CSharpClientGeneratorSettings.cs to check the options we have. Finally,...

Just came across this. Is there any way currently to Mock or Stub the entire exchange-service? I was unable to find anything apart from faking the entire library...

> > > Example, a user asks the skill to notify her as soon as a email from John Joe arrives. The skill should be able to send a proactive...

I think this is related: [CA1062 editorconfig issue with null_check_validation_methods in other project in solution](https://github.com/dotnet/roslyn-analyzers/issues/3451)

Profile switching has also been available on Edge Chromium since 2020 if I'm correct, see [Using multiple profiles at work and at home is now easier with Microsoft Edge](https://blogs.windows.com/msedgedev/2020/04/30/automatic-profile-switching/). I'm...

Looks like anything else but a string value is troublesome in the repeat method currently. Numbers and boolean values I found not to be working correctly. When using the dollar...

Related: [Unsure how to feed data to an Adaptive card #2129](https://github.com/microsoft/BotFramework-Composer/issues/2129)

I am now using [CLI](https://github.com/Tyrrrz/CliWrap) to check if the service is already running, for example: ``` var assemblyPath = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location); var rootPath = $"{assemblyPath}\\Deployment\\Resources\\Ngrok"; var programName = "ngrok.exe"; // Check...