Skip to content

Instantly share code, notes, and snippets.

@londospark
londospark / cloudSettings
Last active May 20, 2020 00:49
Visual Studio Code Settings Sync Gist
{"lastUpload":"2020-04-11T18:26:31.653Z","extensionVersion":"v3.4.3"}
@londospark
londospark / install.ps1
Last active September 5, 2019 16:06
Install script to use with BoxStarter
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions
Enable-RemoteDesktop
# For our version of Addin Express - we could do with upgrading
cinst visualstudio2017community
cinst visualstudio2017-workload-office
cinst visualstudio2019community
cinst visualstudio2019-workload-office
cinst visualstudio2019-workload-netcoretools
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet build",
"type": "shell",
"group": "build",
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (console)",
"type": "coreclr",
"request": "launch",
// Learn more about F# at http://fsharp.org
open System
let add a b = a + b
let askForFloat prompt =
printfn prompt
let textInput = Console.ReadLine()
float textInput