Just a small profile template to get the Visual Studio Developer command prompt environment, but in PowerShell, but in the Windows Terminal. Cake on cake 🍰
Add the following profile to your Windows Terminal profiles.json file.
| # Source: https://gist.github.com/jilleJr/66c3bdddf2c60c0dcb5f9cb21cb6a19f | |
| function Get-AssemblyInfo { | |
| param ( | |
| [Parameter(Mandatory, ValueFromPipeline)] | |
| [ValidateNotNullOrEmpty()] | |
| [System.IO.FileInfo] | |
| $Path | |
| ) | |
Just a small profile template to get the Visual Studio Developer command prompt environment, but in PowerShell, but in the Windows Terminal. Cake on cake 🍰
Add the following profile to your Windows Terminal profiles.json file.
| using System; | |
| using System.Collections.Generic; | |
| using System.Reflection; | |
| using Newtonsoft.Json; | |
| using Newtonsoft.Json.Utilities; | |
| using NUnit.Framework; | |
| using UnityEngine.Scripting; | |
| namespace Tests | |
| { |
| module Koffee.Prompts | |
| open VinylUI | |
| type ModifierKeys = System.Windows.Input.ModifierKeys | |
| type Key = System.Windows.Input.Key | |
| module ClosablePrompt = | |
| let closePrompt handleEvt (model: MainModel) = | |
| handleEvt() |
The language server from Red Hat, that most editors use to have YAML syntax and intellisense, has support for JSON schemas.
This file is an attempt on such a schema. Would be nice to autogenerate these in the future, but having it at all is a nice first step. We might want to move this into the https://gitlab.dgc.local/tools/wharf-project project group, and optionally deploy and version this together with the https://gitlab.dgc.local/tools/wharf-project/cmd project...
Install the "YAML" extension (id: redhat.vscode-yaml, link: https://marketplace.visualstudio.com/items?itemName=redhat.vscode-yaml)
Add the following to your user settings:
| FROM rocker/r-ubuntu:20.04 | |
| LABEL maintainer="inkimar <inkimar>" | |
| RUN apt-get update && apt-get install -y --no-install-recommends \ | |
| sudo \ | |
| libcurl4-gnutls-dev \ | |
| libcairo2-dev \ | |
| libxt-dev \ | |
| libssl-dev \ | |
| libssh2-1-dev \ | |
| libudunits2-dev \ |