Ah, I found answer by my self

1
#r "FSharp.PowerPack.dll"
By on 10/14/2008 11:14 AM ()

That is correct. The reason you don't have to provide a fully-qualified filepath is because "FSharp.PowerPack.dll" is in one of F#'s default search directories.

You can augment the list by using #I. For example:

1
2
#r @"C:\foo\bar\Asm1.dll"
#r @"C:\foo\bar\Asm2.dll"

Is the same as:

1
2
3
#I @"C:\foo\bar\"
#r "Asm1.dll"
#r "Asm2.dll"
By on 10/16/2008 1:16 PM ()
IntelliFactory Offices Copyright (c) 2011-2012 IntelliFactory. All rights reserved.
Home | Products | Consulting | Trainings | Blogs | Jobs | Contact Us | Terms of Use | Privacy Policy | Cookie Policy
Built with WebSharper