Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to set a version number to be used in the AssemblyVersion attribute by several related projects.

In C# I use the following

public class Constants {
    public const string Version = "1.2.3.4";
}

then it can be used as follows:

[assembly:AssemblyVersion(Constants.Version)]

What would be the equivalent construct in F#. All my attempts to come up with a binding which can be accepted as an attribute argument did not work.

share|improve this question

2 Answers

up vote 11 down vote accepted

Use the attribute Literal:

[<Literal>] 
let version = "1.2.3.4"

[<assembly:AssemblyVersion(version)>]
share|improve this answer

Since I stepped into this trap myself I thought I'd share for anyone following. A 'Literal' requires that the letter starts with a capital letter. This will hit you when you try to use the literal in a pattern matching construct.

Reference: Literal attribute not working

share|improve this answer
This is true only if you want to use the literal in a pattern matching context. – kvb Mar 25 at 14:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.