Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
<Owners>$(Company)</Owners>
<Authors>Dynamo</Authors>
<Product>Dynamo</Product>
<Copyright>Copyright © Autodesk, Inc 2024</Copyright>
<Copyright>Copyright © Autodesk, Inc 2025</Copyright>

<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

<!-- Using `VersionPrefix` allows specifying a `version-suffix` argument when packing for beta releases. -->
<VersionPrefix>1.4.0</VersionPrefix>
<VersionPrefix>1.4.4</VersionPrefix>
<DynamoPackageVersion>4.0.0-beta2860</DynamoPackageVersion>
<DynamoVersion>4.0</DynamoVersion>

Expand Down
19 changes: 19 additions & 0 deletions DynamoVisualProgramming.PythonEngine.PythonNet3.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>DynamoVisualProgramming.PythonEngine.PythonNet3</id>
<version>0.0.0</version>
<authors>Autodesk</authors>
<owners>Autodesk</owners>
<license type="expression">Apache-2.0</license>
<projectUrl>https://github.com/DynamoDS/PythonNet3Engine</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>PythonNet3 Engine Nuget, it contains the necessary binaries to load the PythonNet3 engine to Dynamo</description>
<copyright>Copyright Autodesk 2025</copyright>
</metadata>
<files>
<file src="package_output\DSPythonNet3\pkg.json" target="content\manifest\" />
<file src="package_output\DSPythonNet3\bin\**" target="lib\net10.0\" exclude="**\*.pdb;" />
<file src="package_output\DSPythonNet3\extra\**" target="lib\net10.0\" exclude="**\*.pdb;" />
</files>
</package>
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ Builds are published to [Jenkins](https://master-5.jenkins.autodesk.com/job/Dyna
## Deployment

The repository uses the release branch to deploy to [Dynamo Package Manager](www.dynamopackages.com).
As well as to public Nuget: https://www.nuget.org/packages/DynamoVisualProgramming.PythonEngine.PythonNet3
(Make sure to update the binary version in Directory.build.props before releasing and match it to the version that will be deployed after release)

The package `PythonNet3 Engine` is a dynamo package that is consumed by dynamo users using the Package Manager. The following explains the deployment process to continously push updates to that package.

Expand Down
6 changes: 6 additions & 0 deletions nuget.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="Public Nuget" value="https://api.nuget.org/v3/index.json" />
</packageSources>
</configuration>
16 changes: 15 additions & 1 deletion pipeline.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 1.4.1
version: 1.4.3
pipeline_os: windows
create_pr_release_to_master: true

Expand All @@ -7,6 +7,12 @@ env:
- SLACK_QUANTUM_BUILD_CHANNEL : "#dynamo-jenkinsbuild"
- JENKINS_NODE_WIN: CDA-VS22-SVC

jenkins_creds:
-
type: secretText
credentialsId: dynamovisualprogramming_nuget_api_key
secretText: API_KEY

code_analysis:
sonarqube:
source_encoding: UTF-8
Expand Down Expand Up @@ -44,3 +50,11 @@ deployment:
use_dev_pm: false
outputs:
- DSPythonNet3.zip
-
type: nuget
custom_api_key: ${API_KEY}
nuget_config_file: nuget.config
nuspec_files:
- DynamoVisualProgramming.PythonEngine.PythonNet3.nuspec
package_version_cmd: echo %_PACKAGE_VERSION%
destination_source_name: Public Nuget
Loading