Value tuples are not supported in templates
Closed this issue · 1 comments
ltrzesniewski commented
If you try to use a value tuple in template code, the generator will fail to build the template:
TestTemplate.tt(3, 9): [CS8356] Predefined type 'System.ValueTuple`3' is declared in multiple referenced assemblies: 'mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' and 'System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'
Example template:
<#@ template language="C#" #>
<#
_ = (1, 2, 3);
#>
This template executes fine with VS, but fails in Rider 2019.3.1.
kirillgla commented