-
Build 2019 Keynote: Shall We Begin
The words from the top: Microsoft Build 2019 Developer Conference May 6-8 Seattle, WA Microsoft Build 2019 Developer Conference May 6-8 Seattle, WA Join developers and industry experts at Microsoft Build to explore the latest developer tools and technologies. #MSBuild Source: Vision Keynote – Satya Nadella
-
Build 2019 Session: The look back on C#
Interesting step back as we move forward with C#. It’s good to know where and how it came from: Microsoft Build 2019 Developer Conference May 6-8 Seattle, WA Microsoft Build 2019 Developer Conference May 6-8 Seattle, WA Join developers and industry experts at Microsoft Build to explore the latest developer tools and technologies. #MSBuild Source: ‘Look Back’ on C#
-
Build 2019 Session: Iot News and Futures
What’s not to like about IoT… it depends on what you need. Microsoft Build 2019 Developer Conference May 6-8 Seattle, WA Microsoft Build 2019 Developer Conference May 6-8 Seattle, WA Join developers and industry experts at Microsoft Build to explore the latest developer tools and technologies. #MSBuild Source: All you need to know about Microsoft’s IoT news and futures
-
Build 2019 Session: .Net Goodness
Yes, I know I’m a little behind on picking out my favorite Build 2019 Session… So here the first one… Microsoft Build 2019 Developer Conference May 6-8 Seattle, WA Microsoft Build 2019 Developer Conference May 6-8 Seattle, WA Join developers and industry experts at Microsoft Build to explore the latest developer tools and technologies. #MSBuild Source: .NET Platform Overview and Roadmap
-
Azure Logic App Development in Portal vs Visual Studio
A funny thing happens when you move away from doing Prototype Azure Logic App all in the Portal to doing them in Visual Studio (where you are supposed to do Production develop). What’s funny… or is it annoying? Well, development life turns out is not the same. In the next few days I will be adding a small trip thought some things I notice between the two modes of development.
-
Powershell 6.x Profiles
Because I can never remember this: All Users, All Hosts $PsHome\Profile.ps1 All Users, Current Host $PsHome\Microsoft.PowerShell_profile.ps1 Current User, All Hosts $Home\Documents\PowerShell\Profile.ps1 Current user, Current Host $Home\Documents\PowerShell\Microsoft.PowerShell_profile.ps $Profile Current User, Current Host $Profile.CurrentUserCurrentHost Current User, Current Host (Yeah the same as above) $Profile.CurrentUserAllHosts Current User, All Hosts $Profile.AllUsersCurrentHost All Users, Current Host $Profile.AllUsersAllHosts All Users, All Hosts
-
Powershell 6 Core Like Install
As I re-tool (or is it update) my Powershell, I came across the simple one liner to do the install… nice: iex "& { $(irm https://aka.ms/install-powershell.ps1) } -UseMSI" Btw some neat changes in 6.2 PS… Some interesting settings: Enable-ExperimentalFeature -Name PSCommandNotFoundSuggestion Enable-ExperimentalFeature -Name PSTempDrive Enable-ExperimentalFeature -Name PSUseAbbreviationExpansion Read More: What’s New in PowerShell Core 6.2 What’s New in PowerShell Core 6.2 New features and changes released in PowerShell Core 6.2 Source: docs.microsoft.com/en-us/powershell/scripting/whats-new/what-s-new-in-powershell-core-62?view=powershell-6
-
build 2019 is soon.
It’s that time of year… where May the 4th is around the corning… and yeah… Build 2019. Microsoft Build 2019 Developer Conference May 6-8 Seattle, WA Join developers and industry experts at Microsoft Build to explore the latest developer tools and technologies. #MSBuild microsoft.com
-
The Azure Vault, PGP, and other matters Part 3
Well if you are still hanging on… thanks and good job. We only have a bit more to go…. (you can go back to Part 1 or Part 2) Time to regroup as to where we are in the Big Picture: This is the flow of the Logic App. In Part 2 we just finished up the GetKeys block… so onto the Decryptor…. Some more code of course as this is another Azure Function…. public static class MHKPGPDecryptor { [FunctionName("MHKPGPDecryptor")] public static async Task<IActionResult> Run( [HttpTrigger(AuthorizationLevel.Function, "get", "post", Route = null)] HttpRequest req, ILogger log) { log.LogInformation($"C# HTTP trigger function {nameof(MHKPGPDecryptor)} processed a request."); string vaultKey = req.Query["privatekeysecretid"]; string useVault =…
-
The Azure Vault, PGP, and other matters Part 2
Ok, where were we (Back to Part 1) … Ah, we are down to the PGP content in the Azure Vault getting ready to use it…. At this point I gather you have created your vault and placed the middle contents of the PGP Key file into the secrets value…. Drilling into my Secret: We are going to use parts of this detail to pass along to the Get Keys Azure function – as a reminder we are here: My Azure function takes three values: SecretName, SecretVersion, and VaultPath. These values come from the URL that you find on the Secret Detail shown above. https://<VaultPath>.vault..net/secrets/<SecretName>/<SecretVersion> From the Overview of your…



