Skip to content

Commit f4463c2

Browse files
committed
Use internal Pythonnet
1 parent c3f9013 commit f4463c2

File tree

4 files changed

+33
-5
lines changed

4 files changed

+33
-5
lines changed

DSPythonNet3/DSPythonNet3.csproj

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
<ItemGroup>
1818
<PackageReference Include="DynamoVisualProgramming.Core" Version="3.3.0-beta6171" />
1919
<PackageReference Include="DynamoVisualProgramming.DynamoServices" Version="3.3.0-beta6171" />
20+
<PackageReference Include="pythonnet" Version="3.1.0-preview*" />
2021
</ItemGroup>
2122
<ItemGroup>
2223
<Reference Include="Python.Deployment">
@@ -27,10 +28,6 @@
2728
<HintPath>..\extern\Python\Python.Included.dll</HintPath>
2829
<Private>True</Private>
2930
</Reference>
30-
<Reference Include="Python.Runtime">
31-
<HintPath>..\extern\Python\Python.Runtime.dll</HintPath>
32-
<Private>True</Private>
33-
</Reference>
3431
</ItemGroup>
3532
<ItemGroup>
3633
<Compile Update="Properties\Resources.Designer.cs">

DynamoPythonNet3.sln

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DSPythonNet3Extension", "Dy
77
EndProject
88
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DSPythonNet3Empty", "DynamoPythonNet3Empty\DSPythonNet3Empty.csproj", "{2AEE36F0-B188-464B-B6E9-54C8C7057460}"
99
EndProject
10-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DSPythonNet3", "DSPythonNet3\DSPythonNet3.csproj", "{582DA7FA-C36E-43AC-B76A-3A6F563328F9}"
10+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DSPythonNet3", "DSPythonNet3\DSPythonNet3.csproj", "{582DA7FA-C36E-43AC-B76A-3A6F563328F9}"
11+
EndProject
12+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{8C9CB9FD-F6BC-41D4-A587-0558846B4A31}"
13+
ProjectSection(SolutionItems) = preProject
14+
nuget.config = nuget.config
15+
pipeline.yml = pipeline.yml
16+
EndProjectSection
1117
EndProject
1218
Global
1319
GlobalSection(SolutionConfigurationPlatforms) = preSolution

extern/Python/Python.Runtime.dll

-465 KB
Binary file not shown.

nuget.config

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<activePackageSource>
4+
<add key="All" value="(Aggregate source)" />
5+
</activePackageSource>
6+
<disabledPackageSources>
7+
<add key="Microsoft and .NET" value="true" />
8+
</disabledPackageSources>
9+
<packageSources>
10+
<!-- ignore local nuget settings -->
11+
<clear />
12+
<!--<add key="LocalDev" value="D:\source\Dynamo\tools\NuGet" />-->
13+
<add key="Autodesk Artifactory" value="https://art-bobcat.autodesk.com/artifactory/api/nuget/autodesk-3p-nuget/" />
14+
<add key="Dynamo Artifactory" value="https://art-bobcat.autodesk.com/artifactory/api/nuget/team-dynamo-nuget" />
15+
</packageSources>
16+
<packageSourceMapping>
17+
<!-- key value for <packageSource> should match key values from <packageSources> element -->
18+
<packageSource key="Autodesk Artifactory">
19+
<package pattern="*" />
20+
</packageSource>
21+
<packageSource key="Dynamo Artifactory">
22+
<package pattern="*" />
23+
</packageSource>
24+
</packageSourceMapping>
25+
</configuration>

0 commit comments

Comments
 (0)