Skip to content
This repository was archived by the owner on Jan 17, 2022. It is now read-only.
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
7 changes: 0 additions & 7 deletions .gitignore

This file was deleted.

1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

13 changes: 13 additions & 0 deletions TechDirect.psproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<Project Synchronized="False" SyncFilter="*.ps1;*.psm1;*.psd1;*.ps1xml;*.psf;*.pss;*.xml;*.help.txt" AutoExportFunctions="True" AutoExportPS1XMLFiles="True">
<Version>2.1</Version>
<FileID>3862f3bb-b2f6-4a50-ad1d-bb57b53e8425</FileID>
<ProjectType>1</ProjectType>
<Folders />
<Files>
<File Build="2">TechDirect.psd1</File>
<File Build="0" ExportFunctions="True">TechDirect.psm1</File>
<File Build="1" Shared="False" ReferenceFunction="Invoke-Test-Module_ps1" ExportFunctions="False">Test-Module.ps1</File>
<File Build="1">.gitignore</File>
</Files>
<StartupScript>C:\Users\dakot\Documents\SAPIEN\PowerShell Studio\Projects\TechDirect\Test-Module.ps1</StartupScript>
</Project>
25 changes: 25 additions & 0 deletions Test-Module.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<#
.NOTES
===========================================================================
Created with: SAPIEN Technologies, Inc., PowerShell Studio 2020 v5.7.179
Created on: 6/29/2020 9:47 PM
Organization:
Filename: Test-Module.ps1
===========================================================================
.DESCRIPTION
The Test-Module.ps1 script lets you test the functions and other features of
your module in your PowerShell Studio module project. It's part of your project,
but it is not included in your module.

In this test script, import the module (be careful to import the correct version)
and write commands that test the module features. You can include Pester
tests, too.

To run the script, click Run or Run in Console. Or, when working on any file
in the project, click Home\Run or Home\Run in Console, or in the Project pane,
right-click the project name, and then click Run Project.
#>


#Explicitly import the module for testing
Import-Module 'TechDirect'