Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to manage resources in an F# project?

Tags:

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.

like image 505
Jim Burger Avatar asked Apr 22 '10 09:04

Jim Burger


People also ask

What are the 5 resources of management?

Since man became victorious in the industrial revolution, every business has been using these five M's: man, materials, machines, minutes and money; to operate with, or without, success.

How can resources be managed in the project?

Resource management involves creating plans and processes to more effectively manage resources, and you can use spreadsheets, documents, project management software, or a combination of the three. In order to manage resources, you must monitor and track their performance throughout your project.


1 Answers

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.

like image 101
Brian Avatar answered Sep 20 '22 15:09

Brian