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
| # This function can be places in C:\Users\<YourUser>\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1 | |
| function s { | |
| $solutionFiles = Get-ChildItem -Path .\ -Filter *.sln -Recurse | |
| if ($solutionFiles.Count -lt 1) { | |
| Write-Host "Coudn't find any solution file in the current directory." | |
| return | |
| } |
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
| version: '3.7' | |
| services: | |
| elasticsearch-01-master: | |
| image: docker.elastic.co/elasticsearch/elasticsearch-oss:6.6.1 | |
| container_name: elasticsearch-01-master | |
| environment: | |
| - cluster.name=a-esl | |
| - node.data=true | |
| - node.ingest=false | |
| - node.master=true |
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 Microsoft.CodeAnalysis; | |
| using Microsoft.CodeAnalysis.CSharp; | |
| using Microsoft.CodeAnalysis.CSharp.Syntax; | |
| namespace Roslyn.CodeGeneration | |
| { | |
| public class Program | |
| { | |
| public static void Main(string[] args) |