Skip to content

Commit 3a5059e

Browse files
committed
Fix incorrect conditional compilation.
1 parent 51d8fd0 commit 3a5059e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MySqlConnector/MySql.Data.MySqlClient/MySqlParameter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ private MySqlParameter(MySqlParameter other, string parameterName)
167167
Size = other.Size;
168168
ParameterName = parameterName ?? other.ParameterName;
169169
Value = other.Value;
170-
#if NETSTANDARD1_3
170+
#if !NET45
171171
Precision = other.Precision;
172172
Scale = other.Scale;
173173
#endif

0 commit comments

Comments
 (0)