Skip to content

Commit 000c143

Browse files
authored
Merge pull request #1 from RedRiverSoftware/ncrunch-plus-py37
Switch project import for ncrunch
2 parents b6417ca + 8f6299f commit 000c143

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/runtime/Python.Runtime.15.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
33
<PropertyGroup>
44
<TargetFrameworks>net40;netstandard2.0</TargetFrameworks>
@@ -35,7 +35,7 @@
3535
<Python2Version>$(PYTHONNET_PY2_VERSION)</Python2Version>
3636
<Python2Version Condition="'$(Python2Version)'==''">PYTHON27</Python2Version>
3737
<Python3Version>$(PYTHONNET_PY3_VERSION)</Python3Version>
38-
<Python3Version Condition="'$(Python3Version)'==''">PYTHON36</Python3Version>
38+
<Python3Version Condition="'$(Python3Version)'==''">PYTHON37</Python3Version>
3939
<PythonWinDefineConstants>$(PYTHONNET_WIN_DEFINE_CONSTANTS)</PythonWinDefineConstants>
4040
<PythonWinDefineConstants Condition="'$(PythonWinDefineConstants)'==''">UCS2</PythonWinDefineConstants>
4141
<PythonMonoDefineConstants>$(PYTHONNET_MONO_DEFINE_CONSTANTS)</PythonMonoDefineConstants>

src/runtime/interop36.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// DO NOT MODIFIY BY HAND.
33

44

5-
#if PYTHON36
5+
#if PYTHON36 || PYTHON37
66
using System;
77
using System.Collections;
88
using System.Collections.Specialized;

0 commit comments

Comments
 (0)