I'm trying to set the DEFAULT rule for the System.Description field on the User Story Work Item Type. Back in TFS 2010 that field was plain text, but in TFS2015 it got converted to Html, so I thought I could add some Html markup to it.
<FieldDefinition name="Description" refname="System.Description" type="HTML">
<DEFAULT from="value" value="<p><b>En tant que:</b></p><p>[rôle ou personne]</p><p><b>Je désire:</b></p><p>[Nouvelle fonctionnalité]</p><p><b>Puisque:</b></p><p>[raisons et contexte qui motivent le changement]</p><p><b>Tests d'acceptation et détails techniques:</b></p><p>[Ce qui déterminera que la story est complété + les détails techniques]</p>" />
<HELPTEXT>Description or reference to the story that must work for this work to be considered complete</HELPTEXT>
</FieldDefinition>
But now I'm stuck with this error:
The 'value' [...] attribute is invalid according to its datatype 'http://schemas.microsoft.com/VisualStudio/2008/workitemtracking/typelib:NonEmptyConstant' - The actual length is greater than the MaxLength value.
From what I gather, this field is limited to 255 characters. Is there a way to increase this? There is no such limitation for the Bug WIT, but the field Ref Name is also different.