Skip to content

Instantly share code, notes, and snippets.

View manojkulkarni30's full-sized avatar
🏠
Working from home

Manoj Sunil Kulkarni manojkulkarni30

🏠
Working from home
View GitHub Profile
@manojkulkarni30
manojkulkarni30 / xamarinandroidbindings.md
Created April 21, 2021 12:49 — forked from JonDouglas/xamarinandroidbindings.md
Xamarin Android Bindings Troubleshooting

Approaching a Xamarin.Android Bindings Case

1. Investigation

One of the best ways to investigate a problematic Xamarin.Android Binding is to first ensure you have the proper tooling available:

@manojkulkarni30
manojkulkarni30 / Notes.md
Created November 21, 2017 16:05 — forked from g0t4/ Notes.md
Getting Started with Docker on Windows
@manojkulkarni30
manojkulkarni30 / UpdateIISExpressCertificate.ps1
Created June 17, 2017 06:50 — forked from camieleggermont/UpdateIISExpressCertificate.ps1
This powershell script generates a new certificate, removes the old certificate assignments from the IISExpress ssl ports and adds the newly generated one. The certificate is also copied over to the Trusted Root Certificate Authorities.
$cert = New-SelfSignedCertificate -DnsName "localhost", "localhost" -CertStoreLocation "cert:\LocalMachine\My" -NotAfter (Get-Date).AddYears(5)
$thumb = $cert.GetCertHashString()
For ($i=44300; $i -le 44399; $i++) {
netsh http delete sslcert ipport=0.0.0.0:$i
}
For ($i=44300; $i -le 44399; $i++) {
netsh http add sslcert ipport=0.0.0.0:$i certhash=$thumb appid=`{214124cd-d05b-4309-9af9-9caa44b2b74a`}
}
@manojkulkarni30
manojkulkarni30 / Example1.cs
Created January 21, 2017 06:21 — forked from davidfowl/Example1.cs
How .NET Standard relates to .NET Platforms
namespace Analogy
{
/// <summary>
/// This example shows that a library that needs access to target .NET Standard 1.3
/// can only access APIs available in that .NET Standard. Even though similar the APIs exist on .NET
/// Framework 4.5, it implements a version of .NET Standard that isn't compatible with the library.
/// </summary>INetCoreApp10
class Example1
{
public void Net45Application(INetFramework45 platform)