-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm trying to use F# for an ASP.NET MVC application. One my controller actions sends an F# list to the view, so I write:
<%@ Page Language="C#" Inherits="ViewPage<FSharpList<int>>" %>
Of course, for this to work, I have to add Microsoft.FSharp.Collections to the namespaces element…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Here's my test code to isolate the problem:
open Microsoft.FSharp.Metadata
[<EntryPoint>]
let main args =
let core = FSharpAssembly.FromFile @"C:\Program Files\FSharp-2.0.0.0\\bin\FSharp.Core.dll"
let core2 = FSharpAssembly.FSharpLibrary
let core3 = System.AppDomain.CurrentDomain.GetAssemblies()…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi, I have this monstrous f# 2.0 program
My mono version is
Mono JIT compiler version 2.9 (master/f593354 Sun Dec 26 03:15:55 EET 2010)
Copyright (C) 2002-2010 Novell, Inc and Contributors. www.mono-project.com
TLS: __thread
SIGSEGV: altstack
Notifications: epoll
Architecture:…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm trying to deploy a web application which uses F# 4.0 on Windows Server 2008.
It works on my computer where VS2010 is installed but it doesn't work on the server. Everytime you open the page you'll get this error message:
Could not load file or assembly 'FSharp.Core, Version=4.0.0.0, Culture=neutral…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm using FSharp.Compiler.CodeDom to dynamically create F# classes. The problem is, that I have both VS2008 and VS2010 on my computer side-by-side (they works fine), and using F# in this configuration is buggy at best:
If I don't install InstallFSharp.msi, then under VS2008 the built classes complain…
>>> More
-
as seen on Ask Ubuntu
- Search for 'Ask Ubuntu'
Since I upgraded to Saucy, Uget is not showing in the system tray, although the Always show tray icon option in Uget settings is checked.
P.S. this happens only with Uget, all the other Softwares have working tray icons (vlc,qbittorrent..)
Here is the snapshot which shows the settings of Uget:
sudo…
>>> More
-
as seen on Ask Ubuntu
- Search for 'Ask Ubuntu'
I have an Asus Q500A with win8 and Ubuntu 12.04 64 bit; Linux kernel 3.8.0-32-generic. I have been having residual package issues which have been giving me trouble trying to reconfigure xserver-xorg-lts-raring. I tried removing all residual packages from synaptic but the following were not removed…
>>> More
-
as seen on Ask Ubuntu
- Search for 'Ask Ubuntu'
I have a little problem with installing and running Lazarus. I just upgrade ubuntu from 13.04 to 13.10. When i had 13.04, i could install lazarus without any problems, but in 13.10 lazarus magicaly dissapeared, and when i tried install it from ubuntu software center, it said something like in my software…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
First I am glad to see better TDD support in VS2010. Support for generating code stubs from my tests is ok - not as good as more mature TDD plug-ins but a good start.
I am looking for some best Silverlight 4.0 TDD practices. First Question: Anyone have links, recommendations? I know the new Silverlight…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I am trying to develop a Silverlight 4 application using C# 4.0.
I have a case like this:
public class Foo<T> : IEnumerable<T>
{
....
}
Elsewhere:
public class MyBaseType : MyInterface
{
...
}
And the usage where I am having problems:
Foo<MyBaseType> aBunchOfStuff…
>>> More