Do not warn when a match covers all cases of enum

Here's one thing that's really annoying. Say you have an enum Foo { Bar; Baz; }. Now, if I do a match that covers cases Bar and Baz, Visual Studio complains that option enum<Foo>(2) is not covered ...

Id #7398 | Release: None | Updated: Apr 15 at 7:14 AM by nesteruk | Created: Apr 15 at 7:14 AM by nesteruk

FsLex/FsYacc build tasks broken

The FsLex and FsYacc build tasks are broken in the Dec2012 release. Using either of them results in a build error: C:\Program Files (x86)\MSBuild\FSharp\1.0\FSharp.PowerPack.targets(32,3): error M...

Id #7307 | Release: None | Updated: Apr 23 at 5:33 PM by wezeku | Created: Feb 11 at 5:55 PM by JPW

gacutil: Failure adding assembly FSharp.PowerPack.Parallel.Seq.dll to the cache: Attempt to install an assembly without a strong name

I'm having trouble installing the F# PowerPack in Mac OS X. It appears that gacutil must be run over each DLL individually. When I try to install the parallel DLL, gacutil says: "Failure adding as...

Id #7274 | Release: None | Updated: Feb 21 at 11:24 PM by mcandre | Created: Jan 20 at 5:18 PM by mcandre

Please add .PKG installer for Mac

Please add a Mac installer for PowerPack.

Id #7273 | Release: None | Updated: Feb 21 at 11:24 PM by mcandre | Created: Jan 20 at 5:04 PM by mcandre

Bug in CodeDomCompiler when compiling multiple source strings

When using the CodeDomCompiler to compile multiple source strings (by calling CodeDomCompiler.CompileAssemblyFromSource with more than one source string) the compiler raises an ArgumentException: T...

Id #7214 | Release: None | Updated: Feb 21 at 11:24 PM by govert | Created: Nov 29, 2012 at 10:02 PM by govert

Powerpack with .net 4.5

I had some strange issues working with Visual Studio 2012 and .net 4.5.It seems that in a F# project with .net 4.5, when the current build of powerpack is referenced, some bytecode is incompatible....

Id #7206 | Release: None | Updated: Feb 21 at 11:24 PM by CadErik | Created: Nov 22, 2012 at 3:16 PM by CadErik

FsYacc, function types and .NET generics

There seems to be a problem with FsYacc's lexer regarding %token and %start types. The following should work but do not:   int -> int (int -> int) seq<int> Func<int,int,bool>   But "(int, int, boo...

Id #7025 | Release: None | Updated: Feb 21 at 11:24 PM by gsv | Created: Jul 6, 2012 at 2:20 PM by ramonsnir

FsYacc, function types and .NET generics

FsYacc seems to have issues with some types. See here (http://stackoverflow.com/questions/11342379/how-to-add-and-use-custom-context-parameters-during-parsing-with-f-fsyacc/11359377#comment14969724...

Id #7024 | Release: None | Updated: Feb 21 at 11:24 PM by ramonsnir | Created: Jul 6, 2012 at 2:17 PM by ramonsnir

AsyncStreamReader is many orders of magnitude slower than StreamReader

In testing some recent parsing work (HTTP request messages) I tried using AsyncStreamReader and found that it was many orders of magnitude slower than System.IO.StreamReader. I understand the trade...

Id #6925 | Release: None | Updated: Feb 21 at 11:24 PM by riles01 | Created: May 3, 2012 at 2:10 PM by riles01

string_of_float is missing CultureInfo.InvariantCulture

The current spec is   let string_of_float (x:float) = x.ToString()   I think it should be   let string_of_float (x:float) = x.ToString(System.Globalization.CultureInfo.InvariantCulture)   Ocaml...

Id #6881 | Release: None | Updated: Feb 21 at 11:24 PM by mattiasw | Created: Apr 6, 2012 at 1:20 PM by mattiasw