A collection of libraries for building web and mobile applications. Leverages FunScript for seamless full-stack development in F#. Adheres to Google's standard for crawling ajax websites.
Apache License 2.0
21
stars
7
forks
source link
HashBang Fails to Build on Mono < version 3.2.4 #2
Line 140 of src/TypeInferred.HashBang.Core/Website.fs reads:
if metadata.CanCacheResponse then Some CompressionLevel.Optimal
Although this line is correct. Any Mono version below 3.2.4 has a System.IO.Compression.CompressionLevel enum of CompressionLevel.Optional instead of CompressionLevel.Optimal. This is fixed in Mono 3.2.4. The workaround for lower Mono versions is to change line 140 to:
if metadata.CanCacheResponse then Some CompressionLevel.Optional
Line 140 of src/TypeInferred.HashBang.Core/Website.fs reads:
Although this line is correct. Any Mono version below 3.2.4 has a System.IO.Compression.CompressionLevel enum of CompressionLevel.Optional instead of CompressionLevel.Optimal. This is fixed in Mono 3.2.4. The workaround for lower Mono versions is to change line 140 to: