diff --git a/ESAE.sln b/ESAE.sln new file mode 100644 index 0000000..cd7a149 --- /dev/null +++ b/ESAE.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.26228.4 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{F5034706-568F-408A-B7B3-4D38C6DB8A32}") = "ESAE", "ESAE\ESAE.pssproj", "{6CAFC0C6-A428-4D30-A9F9-700E829FEA51}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {6CAFC0C6-A428-4D30-A9F9-700E829FEA51}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6CAFC0C6-A428-4D30-A9F9-700E829FEA51}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6CAFC0C6-A428-4D30-A9F9-700E829FEA51}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6CAFC0C6-A428-4D30-A9F9-700E829FEA51}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/ESAE/ESAE.psd1 b/ESAE/ESAE.psd1 new file mode 100644 index 0000000..590c339 Binary files /dev/null and b/ESAE/ESAE.psd1 differ diff --git a/ESAE/ESAE.psm1 b/ESAE/ESAE.psm1 new file mode 100644 index 0000000..dbe9988 --- /dev/null +++ b/ESAE/ESAE.psm1 @@ -0,0 +1,6 @@ +<# + My Function +#> +function Get-Function { + +} \ No newline at end of file diff --git a/ESAE/ESAE.pssproj b/ESAE/ESAE.pssproj new file mode 100644 index 0000000..27fd09e --- /dev/null +++ b/ESAE/ESAE.pssproj @@ -0,0 +1,36 @@ + + + Debug + 2.0 + 6CAFC0C6-A428-4d30-A9F9-700E829FEA51 + Exe + MyApplication + MyApplication + ESAE + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + \ No newline at end of file diff --git a/ESAE/ESAE.tests.ps1 b/ESAE/ESAE.tests.ps1 new file mode 100644 index 0000000..e81572f --- /dev/null +++ b/ESAE/ESAE.tests.ps1 @@ -0,0 +1,13 @@ +# +# This is a PowerShell Unit Test file. +# You need a unit test framework such as Pester to run PowerShell Unit tests. +# You can download Pester from http://go.microsoft.com/fwlink/?LinkID=534084 +# + +Describe "Get-Function" { + Context "Function Exists" { + It "Should Return" { + + } + } +} \ No newline at end of file