Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/aspnet/MessagePack-CSharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2018-12-24 23:29:50 +0300
committerAndrew Arnott <andrewarnott@gmail.com>2018-12-24 23:29:50 +0300
commit2c15bce027681b03ca46c5bc62d10382dc3a8b08 (patch)
treeca726ebda4ede1134f5b2e18a0c2099eb6bb736e
parent1c107f12b34c9dc522b83f7cec1ddcaeacd39d96 (diff)
Fix .tt file's #if directive to match .cs file
-rw-r--r--src/MessagePack/Formatters/ValueTupleFormatter.tt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/MessagePack/Formatters/ValueTupleFormatter.tt b/src/MessagePack/Formatters/ValueTupleFormatter.tt
index bc94a47f..8920d067 100644
--- a/src/MessagePack/Formatters/ValueTupleFormatter.tt
+++ b/src/MessagePack/Formatters/ValueTupleFormatter.tt
@@ -4,7 +4,7 @@
<#@ import namespace="System.Text" #>
<#@ import namespace="System.Collections.Generic" #>
<#@ output extension=".cs" #>
-#if NETSTANDARD
+#if NETSTANDARD || NETFRAMEWORK
using System;
namespace MessagePack.Formatters