diff --git a/src/runtime/Python.Runtime.15.csproj b/src/runtime/Python.Runtime.15.csproj index cfde0a127..a18640a54 100644 --- a/src/runtime/Python.Runtime.15.csproj +++ b/src/runtime/Python.Runtime.15.csproj @@ -1,5 +1,4 @@ - - + net40;netstandard2.0 AnyCPU @@ -35,7 +34,7 @@ $(PYTHONNET_PY2_VERSION) PYTHON27 $(PYTHONNET_PY3_VERSION) - PYTHON36 + PYTHON37 $(PYTHONNET_WIN_DEFINE_CONSTANTS) UCS2 $(PYTHONNET_MONO_DEFINE_CONSTANTS) @@ -61,6 +60,9 @@ portable + + $(DefineConstants);PYTHON3;$(Python3Version);$(PythonMonoDefineConstants) + $(DefineConstants);PYTHON2;$(Python2Version);$(PythonMonoDefineConstants) @@ -118,12 +120,6 @@ - - - - - - $(TargetPath) $(TargetDir)$(TargetName).pdb diff --git a/src/runtime/Python.Runtime.15.net40.v3.ncrunchproject b/src/runtime/Python.Runtime.15.net40.v3.ncrunchproject new file mode 100644 index 000000000..319cd523c --- /dev/null +++ b/src/runtime/Python.Runtime.15.net40.v3.ncrunchproject @@ -0,0 +1,5 @@ + + + True + + \ No newline at end of file diff --git a/src/runtime/Python.Runtime.15.netstandard2.0.v3.ncrunchproject b/src/runtime/Python.Runtime.15.netstandard2.0.v3.ncrunchproject new file mode 100644 index 000000000..a4de8f987 --- /dev/null +++ b/src/runtime/Python.Runtime.15.netstandard2.0.v3.ncrunchproject @@ -0,0 +1,8 @@ + + + + + + DebugWinPY3 + + \ No newline at end of file diff --git a/src/runtime/interop36.cs b/src/runtime/interop36.cs index c46bcc2f5..dde97bf3a 100644 --- a/src/runtime/interop36.cs +++ b/src/runtime/interop36.cs @@ -2,7 +2,7 @@ // DO NOT MODIFIY BY HAND. -#if PYTHON36 +#if PYTHON36 || PYTHON37 using System; using System.Collections; using System.Collections.Specialized;