I have a .Net standard 2.0 library. In this library I have a T4 file. The file contains these rows.
<#
foreach (MessageType enumValue in Enum.GetValues(typeof(MessageType)))
{
var name = Enum.GetName(typeof(MessageType), enumValue);
#>
I get the following error in Visual Studio.
Compiling transformation: The type 'Enum' is defined in an assembly that is not referenced. You must add a reference to assembly 'netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'.
How can I add a reference to 'netstandard'?