Re: [OT] Old .NET Runtimes

2021-11-09 Thread Greg Keogh
>
> .NET Uninstall Tool
>
> https://docs.microsoft.com/en-us/dotnet/core/additional-tools/uninstall-tool?tabs=windows
>

It doesn't list any of the old versions for uninstall.

I spent half an hour trawling through the dotnet.exe source code but
couldn't not find the part that generates the runtime list. Reading foreign
source code is a mind-bend at the best of times, but that repo is from
another planet.

*Greg*


RE: Sign-in with social accounts

2021-11-09 Thread Dr Greg Low
And Greg, in the Azure portal, AD doesn't normally appear front and centre, but 
it's on the hamburger menu on the left hand side.

[cid:image001.png@01D7D610.B09B2F60]

But for B2C, you need to first create a resource:

[cid:image002.png@01D7D610.FB9D74A0]

Regards,

Greg

Dr Greg Low

1300SQLSQL (1300 775 775) office | +61 419201410 mobile
SQL Down Under | Web: https://sqldownunder.com 
|About me: https://greglow.me

From: ozdotnet-boun...@ozdotnet.com  On Behalf 
Of .net noobie
Sent: Wednesday, 10 November 2021 12:02 AM
To: ozDotNet 
Subject: Re: Sign-in with social accounts

AD-B2C allows 50K active monthly users before it costs anything...
so you could have more users than 50K... but the first 50K users per month who 
login to your system are no charge

425show (videos about AD-B2C & MSAL and alot other related security stuff)
https://www.youtube.com/c/425show/videos

Microsoft Authentication Library (MSAL)
https://docs.microsoft.com/en-us/azure/active-directory/develop/msal-overview

Azure Active Directory B2C code samples
https://docs.microsoft.com/en-au/azure/active-directory-b2c/integrate-with-app-code-samples

On Mon, 26 Apr 2021 at 14:35, Greg Keogh 
mailto:gfke...@gmail.com>> wrote:
And before you start paying for alternatives, please check out Azure B2C as I 
mentioned and see if it will do what you need. I’m constantly fascinated by 
projects where I see people buying tools that they already have a usable tool.

Oh yeah! I always like to use pre-supplied stuff before going shopping. I've 
been browsing around the customer's Pay-as-You-Go subscription portal and I 
can't even find any AD related items?! I thought every subscription had an AD 
associated with it. Oh well, I'll just keep reading... GK


Re: Sign-in with social accounts

2021-11-09 Thread .net noobie
AD-B2C allows 50K active monthly users before it costs anything...
so you could have more users than 50K... but the first 50K users per
month who login to your system are no charge

425show (videos about AD-B2C & MSAL and alot other related security stuff)
https://www.youtube.com/c/425show/videos

Microsoft Authentication Library (MSAL)
https://docs.microsoft.com/en-us/azure/active-directory/develop/msal-overview

Azure Active Directory B2C code samples
https://docs.microsoft.com/en-au/azure/active-directory-b2c/integrate-with-app-code-samples

On Mon, 26 Apr 2021 at 14:35, Greg Keogh  wrote:

> And before you start paying for alternatives, please check out Azure B2C
>> as I mentioned and see if it will do what you need. I’m constantly
>> fascinated by projects where I see people buying tools that they already
>> have a usable tool.
>>
>
> Oh yeah! I always like to use pre-supplied stuff before going shopping.
> I've been browsing around the customer's Pay-as-You-Go subscription portal
> and I can't even find any AD related items?! I thought every subscription
> had an AD associated with it. Oh well, I'll just keep reading... *GK*
>


Re: [OT] Old .NET Runtimes

2021-11-09 Thread .net noobie
.NET Uninstall Tool
https://docs.microsoft.com/en-us/dotnet/core/additional-tools/uninstall-tool?tabs=windows

The .NET Uninstall Tool (dotnet-core-uninstall) lets you remove .NET SDKs
and Runtimes from a system. A collection of options is available to specify
which versions you want to uninstall.

The tool supports Windows and macOS. Linux is currently not supported.

On Windows, the tool can only uninstall SDKs and Runtimes that were
installed using one of the following installers:

The .NET SDK and runtime installer.
The Visual Studio installer in versions earlier than Visual Studio 2019
version 16.3.
On macOS, the tool can only uninstall SDKs and runtimes located in the
/usr/local/share/dotnet folder.

Because of these limitations, the tool may not be able to uninstall all of
the .NET SDKs and runtimes on your machine. You can use the dotnet --info
command to find all of the .NET SDKs and runtimes installed, including
those SDKs and runtimes that this tool can't remove. The
dotnet-core-uninstall list command displays which SDKs can be uninstalled
with the tool. Versions 1.2 and later can uninstall SDKs and runtimes with
version 5.0 or earlier, and previous versions of the tool can uninstall 3.1
and earlier.

On Fri, 5 Nov 2021 at 10:33, Greg Keogh  wrote:

> I think looking through the code for *dotnet --info *might give you all
>> the locations, and perhaps together will give you enough to rustle up a
>> script that removes them effectively.
>>
>
> Lateral thinking! Good idea. I completely forgot that the source for a lot
> of this stuff is available (although reading foreign source can be
> exhausting) -- *Greg*
>