Can I use .resx files in F# 2.0 projects?
If so, how do I go about adding, and then using these resources.
Thanks in advance.
Can I use .resx files in F# 2.0 projects?
If so, how do I go about adding, and then using these resources.
Thanks in advance.
Could this be of interest?
http://stevehorsfield.wordpress.com/2009/08/15/wpf-resources-and-f/
or this
http://cs.hubfs.net/forums/permalink/9588/9579/ShowThread.aspx
I'm using a .resx in an F# 2.0 project. Feel free to take a look at it and I hope it helps you. No great shakes but here it is for what it's worth.
You can Add existing item
a .resx
file to an F# project, it should automatically get a BuildAction
of EmbeddedResource
and work. The VS tooling here isn't as good as the other languages yet, but MSBuild does all the heavy lifting, so it's just a matter of getting the right snippet of XML into the .fsproj file.