public class GitLabCICDPredefinedVariables
{
/// <summary>
/// The Source chat channel that triggered the ChatOps command.
/// </summary>
public string? CHAT_CHANNEL { get; set; }
/// <summary>
/// The additional arguments passed with the ChatOps command.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Setup with: git config --global core.excludesfile ~/.gitignore_global | |
## Visual Studio | |
*.suo | |
*.user | |
*.userosscache | |
*.sln.docstates | |
.vs/ | |
# files ending in .cache can be ignored | |
*.[Cc]ache |
I hereby claim:
- I am damianh on github.
- I am damianh (https://keybase.io/damianh) on keybase.
- I have a public key ASDdrEOvi9wDrZA5r70rc1h2dus7ZvaQNzF5-AeV59esAQo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Reflection; | |
using Microsoft.AspNetCore.Mvc.ApplicationParts; | |
using Microsoft.AspNetCore.Mvc.Controllers; | |
using Microsoft.Extensions.DependencyInjection; | |
namespace MyApp | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dotnet tool install --global dotnet-outdated |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Reflection; | |
using Microsoft.AspNetCore.Mvc.ApplicationParts; | |
using Microsoft.Extensions.DependencyInjection; | |
namespace MyApp | |
{ | |
public static class MvcExtensions |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public partial class SignatureRemoverAddIn | |
{ | |
private void SignatureRemoverAddIn_Startup(object sender, EventArgs e) | |
{ | |
var outlookNameSpace = this.Application.GetNamespace("MAPI"); | |
var inbox = outlookNameSpace.GetDefaultFolder(OlDefaultFolders.olFolderInbox); | |
var items = inbox.Items; | |
items.ItemAdd += ItemsOnItemAdd; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Runtime.InteropServices; | |
using Microsoft.VisualStudio.Setup.Configuration; | |
namespace LocateMSBuild | |
{ | |
public class Instance |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
title Command Handling, Optimistic Concurrency | |
actor User | |
boundary Handler | |
boundary Repository | |
entity BarInstance | |
database EventStore | |
autonumber | |
User -> Handler : Set Foo = 2 where\nOriginalFoo = 1 on Bar | |
Handler -> Repository : Get Bar |
NewerOlder