File tree Expand file tree Collapse file tree 3 files changed +5
-9
lines changed Expand file tree Collapse file tree 3 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,8 @@ when .NET expects an integer [#1342][i1342]
57
57
### Removed
58
58
59
59
- implicit assembly loading (you have to explicitly ` clr.AddReference ` before doing import)
60
+ - support for .NET Framework 4.0-4.6; Mono before 5.4. Python.NET now requires .NET Standard 2.0
61
+ (see [ the matrix] ( https://docs.microsoft.com/en-us/dotnet/standard/net-standard#net-implementation-support ) )
60
62
61
63
## [ 2.5.0] [ ] - 2020-06-14
62
64
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ private PythonConsole()
26
26
[ STAThread ]
27
27
public static int Main ( string [ ] args )
28
28
{
29
- // Only net40 is capable to safely inject python.runtime.dll into resources.
29
+ // Only .NET Framework is capable to safely inject python.runtime.dll into resources.
30
30
#if NET40
31
31
// reference the static assemblyLoader to stop it being optimized away
32
32
AssemblyLoader a = assemblyLoader ;
Original file line number Diff line number Diff line change 14
14
<InterpreterId />
15
15
<InterpreterVersion />
16
16
</PropertyGroup >
17
- <PropertyGroup Condition =" '$(Configuration)' == 'DebugMono'" />
18
- <PropertyGroup Condition =" '$(Configuration)' == 'DebugWin'" />
19
- <PropertyGroup Condition =" '$(Configuration)' == 'ReleaseMono'" />
20
- <PropertyGroup Condition =" '$(Configuration)' == 'ReleaseWin'" />
21
- <PropertyGroup Condition =" '$(Configuration)' == 'DebugMonoPY3'" />
22
- <PropertyGroup Condition =" '$(Configuration)' == 'DebugWinPY3'" />
23
- <PropertyGroup Condition =" '$(Configuration)' == 'ReleaseMonoPY3'" />
24
- <PropertyGroup Condition =" '$(Configuration)' == 'ReleaseWinPY3'" />
17
+ <PropertyGroup Condition =" '$(Configuration)' == 'Debug'" />
18
+ <PropertyGroup Condition =" '$(Configuration)' == 'Release'" />
25
19
<PropertyGroup >
26
20
<VisualStudioVersion Condition =" '$(VisualStudioVersion)' == '' " >10.0</VisualStudioVersion >
27
21
<PtvsTargetsFile >$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Python Tools\Microsoft.PythonTools.targets</PtvsTargetsFile >
You can’t perform that action at this time.
0 commit comments