The purpose of this repository was originally for all my F# interactive mode code, (and handy FSharp scripts) but it has grown. Now it is broken into
- A script that compiles and installs a large portion of the code into somewhere you can easily call it from F# interactive inside Visual Studio (this directory)
- Individually useful F# source code
- A solution that includes code gen translated from my T4 C# into F# from https://github.com/ImaginaryDevelopment/LinqPad/tree/master/T4
- Including the following previously available NuGet packages
my reusable F# interactive code Includes
- Wpf window display of a sequence of data
- Win Forms macros
- display of a sequence of data
- Tfs macros - querying via the Tfs Dlls
- Get a user's changes
- Get changes checked in with no associated work item
- EnvDte macros
- Change the startup project
- a batch file to install them all into Visual Studio's Public assemblies folder for easy referencing
- with
#r "tfsmacros";open tfsmacros;; let tfs=getTfs();;
- without
- compile the files individually or as desired (referencing the dlls needed to build them)
- then in fsi reference them
#r "(yourdirectory)\tfsmacros";open tfsmacros;; let tfs=getTfs();;