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 static class KeyValuePairExtension | |
| { | |
| public static void Deconstruct<TKey, TValue>(this KeyValuePair<TKey, TValue> source, out TKey key, out TValue value) | |
| { | |
| key = source.Key; | |
| value = source.Value; | |
| } | |
| } |
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
| -include env | |
| IMAGENAME := $(shell basename `git rev-parse --show-toplevel`) | |
| NAMESPACE := user | |
| SHA := $(shell git rev-parse --short HEAD) | |
| timestamp := $(shell date +"%Y%m%d%H%M") | |
| .PHONY: download echo build run stop start rmf rmi | |
| download: |
NewerOlder