https://github.com/laurentdardenne/convertform
Powershell module for converting a Winform file (xxx.Designer.cs) to a PowerShell script .ps1. Old Codeplex project
https://github.com/laurentdardenne/convertform
converter design-tools powershell winforms
Last synced: 11 months ago
JSON representation
Powershell module for converting a Winform file (xxx.Designer.cs) to a PowerShell script .ps1. Old Codeplex project
- Host: GitHub
- URL: https://github.com/laurentdardenne/convertform
- Owner: LaurentDardenne
- Created: 2017-04-08T10:31:34.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2022-05-03T19:54:43.000Z (about 4 years ago)
- Last Synced: 2025-03-15T07:51:20.363Z (about 1 year ago)
- Topics: converter, design-tools, powershell, winforms
- Language: PowerShell
- Homepage:
- Size: 869 KB
- Stars: 35
- Watchers: 4
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
[](https://gist.github.com/cheerfulstoic/d107229326a01ff0f333a1d3476e068d)
# ConvertForm

Powershell module for converting a Winform file (xxx.Designer.cs) to a PowerShell script .ps1
To install this module :
```Powershell
$PSGalleryPublishUri = 'https://www.myget.org/F/ottomatt/api/v2/package'
$PSGallerySourceUri = 'https://www.myget.org/F/ottomatt/api/v2'
Register-PSRepository -Name OttoMatt -SourceLocation $PSGallerySourceUri -PublishLocation $PSGalleryPublishUri #-InstallationPolicy Trusted
Install-Module ConvertForm -Repository OttoMatt
```