Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 9 days 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 (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-05-03T19:54:43.000Z (over 2 years ago)
- Last Synced: 2024-10-12T13:18:32.115Z (25 days ago)
- Topics: converter, design-tools, powershell, winforms
- Language: PowerShell
- Homepage:
- Size: 869 KB
- Stars: 31
- Watchers: 5
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
[![Inactively Maintained](https://img.shields.io/badge/Maintenance%20Level-Inactively%20Maintained-yellowgreen.svg)](https://gist.github.com/cheerfulstoic/d107229326a01ff0f333a1d3476e068d)
# ConvertForm![Logo](https://github.com/LaurentDardenne/ConvertForm/blob/master/Convert-Form-Icon.jpg)
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
```