Skip to content
This repository was archived by the owner on May 19, 2020. It is now read-only.

Package Manager Console Powershell Reference

Jason Newell edited this page Aug 17, 2015 · 1 revision

The SolidEdge.Community package imports a PowerShell script named SolidEdge.Community.psm1 into your project on startup. This script adds several console commands that aide in Solid Edge development. To access the console inside Visual Studio. Navigate to Tools -> NuGet Package Manager -> Package Manager Console.

Commands Description
Register-SolidEdgeAddIn Registers an addin.
Unregister-SolidEdgeAddIn Unregisters an addin.
Set-DebugSolidEdge Configures the project to start Solid Edge upon debugging.
Install-SolidEdgeAddInRibbonSchema Adds Ribbon.xsd to project.
Start-SolidEdge Starts a new instance of Solid Edge.
Stop-SolidEdge Terminates the active instance of Solid Edge.

Register-SolidEdgeAddIn

Registers the addin for Solid Edge x86 and Solid Edge x64 on the development machine.

Unregister-SolidEdgeAddIn

Unregisters the addin for Solid Edge x86 and Solid Edge x64 on the development machine.

Set-DebugSolidEdge

Configures the selected project to start Solid Edge and debug your addin.

Install-SolidEdgeAddInRibbonSchema

Adds a Ribbon.xsd to your project. This XSD contains definitions that validate any user created Ribbon XML. The validation happens real-time in Visual Studio. If you later decide that you do not want the XSD, simply delete it from your project.

Start-SolidEdge

Starts a new instance of Solid Edge and makes it visible to the user.

Stop-SolidEdge

Stops a running instance of Solid Edge.