I hereby claim:
- I am hoetz on github.
- I am hoetz (https://keybase.io/hoetz) on keybase.
- I have a public key whose fingerprint is 6F85 B882 C028 94E2 159C 53E1 2F55 93C2 DA94 7499
To claim this, I am signing this object:
.table {width: 100%; height: 100%;} | |
.row {width: 100%; min-height: 1px; height: auto; margin: 0;} | |
.cell {float: left; margin: 0; padding: 0;} | |
.onecol {width: 100%;} | |
.twocolLeft {width: 40%;} | |
.twocolRight {width: 60%;} | |
<div class="table"> | |
<div class="row"> |
in startup.cs | |
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory,IApplicationEnvironment appEnv) | |
{ | |
var testCertPath = Path.Combine(appEnv.ApplicationBasePath,"certificate.pfx"); | |
if (File.Exists(testCertPath)) | |
{ | |
app.UseKestrelHttps(new X509Certificate2(testCertPath, "PASSWORD")); | |
} |
type SplitContainerChildPosition= One | Two | |
type IContainerComponent = | |
abstract ComponentId : string | |
type Empty () = | |
interface IContainerComponent with | |
member this.ComponentId = "Empty" | |
type Table () = |
call :ExecuteCmd dotnet publish "D:\home\site\repository\src\Web" --output "%DEPLOYMENT_TEMP%" |
I hereby claim:
To claim this, I am signing this object:
#include <QCoreApplication> | |
#include <QString> | |
#include <Poco/Foundation.h> | |
#include <Poco/Crypto/Cipher.h> | |
#include <Poco/Crypto/CipherKey.h> | |
#include <Poco/Crypto/CipherFactory.h> | |
#include <openssl/crypto.h> | |
#include <QDebug> | |
//based on https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/blob/90dca9e8a28102d7eb0d96d70e93350f5a0e095a/samples/desktop/SampleApp/CachePersistence.cs | |
module MicrosoftIdentityUtil | |
open Microsoft.Identity.Client | |
open System.IO | |
type CachePersistence() = | |
static let fileLock = new obj() | |
static let usertokenCache = new TokenCache() | |
static let cacheFilePath = |
function PipeableFunction { | |
[cmdletbinding()] | |
Param ( | |
[parameter(ValueFromPipeline)] | |
[string]$upn | |
) |