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
[core] | |
editor = code --wait # set VS Code as default editor | |
quotepath = false # display cyrillic names properly | |
autocrlf = false # Windows only projects. Don't convert LF to CRLF and vice versa during commit & checkout. Read carefully https://git-scm.com/book/en/v2/Customizing-Git-Git-Configuration | |
[pull] | |
rebase = true # pull = 'fetch + rebase' instead of 'fetch + merge' | |
[alias] | |
co = checkout # 'git co' instead of 'git checkout' | |
st = status # 'git st' instead of 'git status' | |
[fetch] |
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
namespace RabbitMqClient | |
{ | |
using System; | |
using System.IO; | |
using System.Net.Mime; | |
using System.Runtime.Serialization; | |
using System.Text; | |
using GreenPipes; |