up vote 2 down vote favorite
share [g+] share [fb]

I'm writing an MSBuild task to upgrade a database (full source here) and encountered an error/by design feature I don't know how to deal with. Basically, if I declare:

public int? TargetVersion
{
    [DebuggerStepThrough]
    get { return targetVersion; }
    [DebuggerStepThrough]
    set { targetVersion = value; }
}

and then attempt to assign a value in an .msbuild file:

<Target Name="Upgrade">
    <UpgradeDatabase ... TargetVersion="10" />
</Target>

MSBuild freaks out and says that

error MSB4030: "10" is an invalid value for the "TargetVersion" parameter of the "UpgradeDatabase" task. The "TargetVersion" parameter is of type "System.Nullable`1[System.Int32]".

How do I assign a value to a nullable property?

link|improve this question

63% accept rate
feedback

2 Answers

up vote 2 down vote accepted

MSBuild doesn't seem to support nullable values then. A workaround would be to use the nullable property internally, but provide a public non-nullable property. This way, the first assignment to the public property will set the internal value from null to a real value, so you have null in a freshly initialized instance, but MSBuild can happily assign its values.

That is, unless there is some way to trick MSBuild into supporting nullables directly :)

link|improve this answer
feedback

I would suggest you look into the [Required] tag a bit more. That is how MSBuild handles optional vs required parameters.

link|improve this answer
Yes, but it's nice to be able to know whether a value was explicitly assigned or not. For instance, what if you'd assigned a TargetVersion of 0 in the OP's example? The nullable type allow you to differentiate between an unset value and an explicitly set value equal to the default value for the type. – zcrar70 Nov 18 '10 at 0:51
feedback

Your Answer

 
or
required, but never shown

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