fix code formatting in ScratchPad Overview.

master
Craig Oates 5 years ago
parent
commit
5177de6b8d
  1. 10
      ScratchPad-Overview.md

10
ScratchPad-Overview.md

@ -8,9 +8,15 @@ IMAGE OF SCRATCH PAD RELATIONSHIP.
If you decide to use "ScratchPad.fsx", you must build the project ("F5" in Visual Studio) beforehand. On top of that, you must change the path when referencing the "SkiaSharp" DLL. This is because I have hard-coded the path (yes, I'm lazy). So, within "ScratchPad.fsx", you should see something like the following at the top of the file,
```f#// These paths need adjusting to match your computer. #r @"C:/Users/craig/.nuget/packages/skiasharp/1.60.3/lib/netstandard1.3/SkiaSharp.dll" // Currently not working... 
```f#
(* NOTE: These paths need adjusting to match your computer.
=========================================================== *)
// Currently not working...
#r @"C:/Users/craig/.nuget/packages/skiasharp/1.60.3/lib/netstandard1.3/SkiaSharp.dll"
//#r @"C:/Users/craig/.nuget/packages/skiasharp/1.60.3/runtimes/win-x64/native/libSkiaSharp.dll"
// This one should be fine.
#r @"C:/Users/craig/.nuget/packages/skiasharp/1.60.3/runtimes/win-x64/native/libSkiaSharp.dll"
```
Hopefully, the only thing you need to replace is `craig` with your username.

Loading…
Cancel
Save