Forum

PureSourceCode.com Forum
Enrico
@enrico
Admin
Member
Joined: Mar 26, 2020
Last seen: May 19, 2024
Topics: 106 / Replies: 45
Reply
Answer to: Create element from interface

I found a solution to my question. I created a function that returns a dynamic value. public static dynamic CreateElement(this IElement element) { ...

2 years ago
Forum
C#
Reply
2 years ago
Forum
Reply
Answer to: How to remove bin and obj folders with PowerShell

Get-ChildItem .\ -include bin,obj -Recurse | foreach ($_) { remove-item $_.fullname -Force -Recurse }

2 years ago
Forum
Reply
Answer to: Configure GitHub as external provider in IdentityServer (Duende)

I had the same issue! The solution is quite straightforward. The callback you have to use is /signin-github-token Also, if you are looking for the ...

2 years ago
Forum
Reply
Answer to: Powershell function: Unzip all files in a folder

Extract zip files to the same location with same folder name (removed .zip) gci -Recurse -Filter *.zip |ForEach-Object {$n=($_.Fullname.trimend('.zi...

2 years ago
Forum
Page 2 / 3