├── .vs └── PowershellviaCSharp │ └── v16 │ └── .suo ├── PowershellviaCSharp.sln ├── PowershellviaCSharp ├── .vs │ └── PowershellviaCSharp │ │ └── v16 │ │ └── .suo ├── App.config ├── PowershellviaCSharp.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── bin │ ├── Debug │ │ ├── Mono.Options.dll │ │ ├── Mono.Options.pdb │ │ ├── PowershellviaCSharp.exe │ │ ├── PowershellviaCSharp.exe.config │ │ ├── PowershellviaCSharp.pdb │ │ └── System.Management.Automation.dll │ └── Release │ │ ├── Confused │ │ ├── PowershellviaCSharp.exe │ │ └── PowershellviaCSharp.pdb │ │ ├── Mono.Options.dll │ │ ├── Mono.Options.pdb │ │ ├── PowershellviaCSharp.exe │ │ ├── PowershellviaCSharp.exe.config │ │ ├── PowershellviaCSharp.pdb │ │ └── System.Management.Automation.dll ├── obj │ ├── Debug │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── PowershellviaCSharp.csproj.CopyComplete │ │ ├── PowershellviaCSharp.csproj.CoreCompileInputs.cache │ │ ├── PowershellviaCSharp.csproj.FileListAbsolute.txt │ │ ├── PowershellviaCSharp.csprojAssemblyReference.cache │ │ ├── PowershellviaCSharp.exe │ │ └── PowershellviaCSharp.pdb │ └── Release │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ ├── PowershellviaCSharp.csproj.CopyComplete │ │ ├── PowershellviaCSharp.csproj.CoreCompileInputs.cache │ │ ├── PowershellviaCSharp.csproj.FileListAbsolute.txt │ │ ├── PowershellviaCSharp.csprojAssemblyReference.cache │ │ ├── PowershellviaCSharp.exe │ │ └── PowershellviaCSharp.pdb └── packages.config ├── README.md └── packages ├── Mono.Options.6.12.0.148 ├── .signature.p7s ├── Mono.Options.6.12.0.148.nupkg ├── THIRD-PARTY-NOTICES.txt └── lib │ ├── net40-client │ ├── Mono.Options.dll │ └── Mono.Options.pdb │ ├── net40 │ ├── Mono.Options.dll │ └── Mono.Options.pdb │ ├── netstandard1.3 │ ├── Mono.Options.dll │ └── Mono.Options.pdb │ └── netstandard2.0 │ ├── Mono.Options.dll │ └── Mono.Options.pdb └── System.Management.Automation.7.1.4 ├── .signature.p7s ├── Powershell_black_64.png ├── System.Management.Automation.7.1.4.nupkg ├── ref └── net5.0 │ └── System.Management.Automation.dll └── runtimes ├── unix └── lib │ └── net5.0 │ └── System.Management.Automation.dll └── win └── lib └── net5.0 └── System.Management.Automation.dll /.vs/PowershellviaCSharp/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/.vs/PowershellviaCSharp/v16/.suo -------------------------------------------------------------------------------- /PowershellviaCSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp.sln -------------------------------------------------------------------------------- /PowershellviaCSharp/.vs/PowershellviaCSharp/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/.vs/PowershellviaCSharp/v16/.suo -------------------------------------------------------------------------------- /PowershellviaCSharp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/App.config -------------------------------------------------------------------------------- /PowershellviaCSharp/PowershellviaCSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/PowershellviaCSharp.csproj -------------------------------------------------------------------------------- /PowershellviaCSharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/Program.cs -------------------------------------------------------------------------------- /PowershellviaCSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PowershellviaCSharp/bin/Debug/Mono.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/bin/Debug/Mono.Options.dll -------------------------------------------------------------------------------- /PowershellviaCSharp/bin/Debug/Mono.Options.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/bin/Debug/Mono.Options.pdb -------------------------------------------------------------------------------- /PowershellviaCSharp/bin/Debug/PowershellviaCSharp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/bin/Debug/PowershellviaCSharp.exe -------------------------------------------------------------------------------- /PowershellviaCSharp/bin/Debug/PowershellviaCSharp.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/bin/Debug/PowershellviaCSharp.exe.config -------------------------------------------------------------------------------- /PowershellviaCSharp/bin/Debug/PowershellviaCSharp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/bin/Debug/PowershellviaCSharp.pdb -------------------------------------------------------------------------------- /PowershellviaCSharp/bin/Debug/System.Management.Automation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/bin/Debug/System.Management.Automation.dll -------------------------------------------------------------------------------- /PowershellviaCSharp/bin/Release/Confused/PowershellviaCSharp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/bin/Release/Confused/PowershellviaCSharp.exe -------------------------------------------------------------------------------- /PowershellviaCSharp/bin/Release/Confused/PowershellviaCSharp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/bin/Release/Confused/PowershellviaCSharp.pdb -------------------------------------------------------------------------------- /PowershellviaCSharp/bin/Release/Mono.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/bin/Release/Mono.Options.dll -------------------------------------------------------------------------------- /PowershellviaCSharp/bin/Release/Mono.Options.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/bin/Release/Mono.Options.pdb -------------------------------------------------------------------------------- /PowershellviaCSharp/bin/Release/PowershellviaCSharp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/bin/Release/PowershellviaCSharp.exe -------------------------------------------------------------------------------- /PowershellviaCSharp/bin/Release/PowershellviaCSharp.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/bin/Release/PowershellviaCSharp.exe.config -------------------------------------------------------------------------------- /PowershellviaCSharp/bin/Release/PowershellviaCSharp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/bin/Release/PowershellviaCSharp.pdb -------------------------------------------------------------------------------- /PowershellviaCSharp/bin/Release/System.Management.Automation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/bin/Release/System.Management.Automation.dll -------------------------------------------------------------------------------- /PowershellviaCSharp/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs -------------------------------------------------------------------------------- /PowershellviaCSharp/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PowershellviaCSharp/obj/Debug/PowershellviaCSharp.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PowershellviaCSharp/obj/Debug/PowershellviaCSharp.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 9df4ce42a9bf0faee879b402cb3e24e98cbe7306 2 | -------------------------------------------------------------------------------- /PowershellviaCSharp/obj/Debug/PowershellviaCSharp.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/obj/Debug/PowershellviaCSharp.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /PowershellviaCSharp/obj/Debug/PowershellviaCSharp.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/obj/Debug/PowershellviaCSharp.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /PowershellviaCSharp/obj/Debug/PowershellviaCSharp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/obj/Debug/PowershellviaCSharp.exe -------------------------------------------------------------------------------- /PowershellviaCSharp/obj/Debug/PowershellviaCSharp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/obj/Debug/PowershellviaCSharp.pdb -------------------------------------------------------------------------------- /PowershellviaCSharp/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs -------------------------------------------------------------------------------- /PowershellviaCSharp/obj/Release/PowershellviaCSharp.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PowershellviaCSharp/obj/Release/PowershellviaCSharp.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4643febf5f188f4160b79407798074bcf93a1128 2 | -------------------------------------------------------------------------------- /PowershellviaCSharp/obj/Release/PowershellviaCSharp.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/obj/Release/PowershellviaCSharp.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /PowershellviaCSharp/obj/Release/PowershellviaCSharp.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/obj/Release/PowershellviaCSharp.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /PowershellviaCSharp/obj/Release/PowershellviaCSharp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/obj/Release/PowershellviaCSharp.exe -------------------------------------------------------------------------------- /PowershellviaCSharp/obj/Release/PowershellviaCSharp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/obj/Release/PowershellviaCSharp.pdb -------------------------------------------------------------------------------- /PowershellviaCSharp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/PowershellviaCSharp/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/README.md -------------------------------------------------------------------------------- /packages/Mono.Options.6.12.0.148/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/packages/Mono.Options.6.12.0.148/.signature.p7s -------------------------------------------------------------------------------- /packages/Mono.Options.6.12.0.148/Mono.Options.6.12.0.148.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/packages/Mono.Options.6.12.0.148/Mono.Options.6.12.0.148.nupkg -------------------------------------------------------------------------------- /packages/Mono.Options.6.12.0.148/THIRD-PARTY-NOTICES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/packages/Mono.Options.6.12.0.148/THIRD-PARTY-NOTICES.txt -------------------------------------------------------------------------------- /packages/Mono.Options.6.12.0.148/lib/net40-client/Mono.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/packages/Mono.Options.6.12.0.148/lib/net40-client/Mono.Options.dll -------------------------------------------------------------------------------- /packages/Mono.Options.6.12.0.148/lib/net40-client/Mono.Options.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/packages/Mono.Options.6.12.0.148/lib/net40-client/Mono.Options.pdb -------------------------------------------------------------------------------- /packages/Mono.Options.6.12.0.148/lib/net40/Mono.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/packages/Mono.Options.6.12.0.148/lib/net40/Mono.Options.dll -------------------------------------------------------------------------------- /packages/Mono.Options.6.12.0.148/lib/net40/Mono.Options.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/packages/Mono.Options.6.12.0.148/lib/net40/Mono.Options.pdb -------------------------------------------------------------------------------- /packages/Mono.Options.6.12.0.148/lib/netstandard1.3/Mono.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/packages/Mono.Options.6.12.0.148/lib/netstandard1.3/Mono.Options.dll -------------------------------------------------------------------------------- /packages/Mono.Options.6.12.0.148/lib/netstandard1.3/Mono.Options.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/packages/Mono.Options.6.12.0.148/lib/netstandard1.3/Mono.Options.pdb -------------------------------------------------------------------------------- /packages/Mono.Options.6.12.0.148/lib/netstandard2.0/Mono.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/packages/Mono.Options.6.12.0.148/lib/netstandard2.0/Mono.Options.dll -------------------------------------------------------------------------------- /packages/Mono.Options.6.12.0.148/lib/netstandard2.0/Mono.Options.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/packages/Mono.Options.6.12.0.148/lib/netstandard2.0/Mono.Options.pdb -------------------------------------------------------------------------------- /packages/System.Management.Automation.7.1.4/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/packages/System.Management.Automation.7.1.4/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Management.Automation.7.1.4/Powershell_black_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/packages/System.Management.Automation.7.1.4/Powershell_black_64.png -------------------------------------------------------------------------------- /packages/System.Management.Automation.7.1.4/System.Management.Automation.7.1.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/packages/System.Management.Automation.7.1.4/System.Management.Automation.7.1.4.nupkg -------------------------------------------------------------------------------- /packages/System.Management.Automation.7.1.4/ref/net5.0/System.Management.Automation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/packages/System.Management.Automation.7.1.4/ref/net5.0/System.Management.Automation.dll -------------------------------------------------------------------------------- /packages/System.Management.Automation.7.1.4/runtimes/unix/lib/net5.0/System.Management.Automation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/packages/System.Management.Automation.7.1.4/runtimes/unix/lib/net5.0/System.Management.Automation.dll -------------------------------------------------------------------------------- /packages/System.Management.Automation.7.1.4/runtimes/win/lib/net5.0/System.Management.Automation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alh4zr3d/PowerShell-via-CSharp/HEAD/packages/System.Management.Automation.7.1.4/runtimes/win/lib/net5.0/System.Management.Automation.dll --------------------------------------------------------------------------------