This repository was archived by the owner on Jul 22, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +19
-19
lines changed
Expand file tree Collapse file tree 7 files changed +19
-19
lines changed Original file line number Diff line number Diff line change @@ -255,7 +255,7 @@ def install_for_development(self):
255255setup (
256256 cmdclass = cmdclass ,
257257 name = "pythonnet" ,
258- version = "3.0.0.dev1 " ,
258+ version = "3.0.0.dev2 " ,
259259 description = ".Net and Mono integration for Python" ,
260260 url = "https://pythonnet.github.io/" ,
261261 license = "MIT" ,
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22 <PropertyGroup >
3- <TargetFrameworks >net472;netcoreapp3.1 </TargetFrameworks >
3+ <TargetFrameworks >net472;netcoreapp5.0 </TargetFrameworks >
44 <Platforms >x64;x86</Platforms >
55 <OutputType >Exe</OutputType >
66 <AssemblyName >nPython</AssemblyName >
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <TargetFrameworks >net472;netcoreapp3.1 </TargetFrameworks >
4+ <TargetFrameworks >net472;netcoreapp5.0 </TargetFrameworks >
55 </PropertyGroup >
66
77 <ItemGroup >
Original file line number Diff line number Diff line change 1212 <PrivateAssets >all</PrivateAssets >
1313 <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
1414 </PackageReference >
15- <PackageReference Include =" nunit" Version =" 3.12.0" />
16- <PackageReference Include =" NUnit3TestAdapter" Version =" 3.16.1" >
17- <PrivateAssets >all</PrivateAssets >
18- <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
19- </PackageReference >
20- <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 16.5.0" />
21- <PackageReference Include =" pythonnet" Version =" 2.3.0" GeneratePathProperty =" true" >
22- <IncludeAssets >compile</IncludeAssets >
23- </PackageReference >
15+ <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 16.8.3" />
16+ <PackageReference Include =" NUnit" Version =" 3.13.0" />
17+ </ItemGroup >
18+
19+ <ItemGroup >
20+ <ProjectReference Include =" ..\runtime\Python.Runtime.csproj" />
2421 </ItemGroup >
2522
2623 <Target Name =" GetRuntimeLibBuildOutput" BeforeTargets =" Build" >
2926 </MSBuild >
3027 </Target >
3128
29+ <!--
3230 <Target Name="CopyBaseline" AfterTargets="Build">
33- <Copy SourceFiles =" $(Pkgpythonnet)\lib\net40 \Python.Runtime.dll" DestinationFolder =" $(OutDir)\baseline" />
31+ <Copy SourceFiles="$(Pkgpythonnet)\lib\net47 \Python.Runtime.dll" DestinationFolder="$(OutDir)\baseline" />
3432 </Target>
33+ -->
3534
3635 <Target Name =" CopyNewBuild" AfterTargets =" Build" >
3736 <Copy SourceFiles =" @(NewPythonRuntime)" DestinationFolder =" $(OutDir)\new" />
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <TargetFrameworks >net472;netcoreapp3.1 </TargetFrameworks >
4+ <TargetFrameworks >net472;netcoreapp5.0 </TargetFrameworks >
55 </PropertyGroup >
66
77 <ItemGroup >
88 <ProjectReference Include =" ..\runtime\Python.Runtime.csproj" />
99 </ItemGroup >
1010
1111 <ItemGroup >
12- <PackageReference Include =" NUnit" Version =" 3.* " />
13- <PackageReference Include =" NUnit3TestAdapter" Version =" 3.* " >
12+ <PackageReference Include =" NUnit" Version =" 3.13.0 " />
13+ <PackageReference Include =" NUnit3TestAdapter" Version =" 3.17.0 " >
1414 <PrivateAssets >all</PrivateAssets >
1515 <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
1616 </PackageReference >
Original file line number Diff line number Diff line change 2727 </ItemGroup >
2828
2929 <ItemGroup >
30- <PackageReference Include =" System.Security.Permissions" Version =" 4.4.0" />
31- <PackageReference Include =" System.Reflection.Emit" Version =" 4.3.0" />
30+ <PackageReference Include =" System.Runtime.CompilerServices.Unsafe" Version =" 5.0.0" />
31+ <PackageReference Include =" System.Security.Permissions" Version =" 5.0.0" />
32+ <PackageReference Include =" System.Reflection.Emit" Version =" 4.7.0" />
3233 </ItemGroup >
3334</Project >
Original file line number Diff line number Diff line change 22Code in this module gets loaded into the main clr module.
33"""
44
5- __version__ = "3.0.0dev "
5+ __version__ = "3.0.0dev2 "
66
77
88class clrproperty (object ):
You can’t perform that action at this time.
0 commit comments