├── .gitignore ├── README.md └── SuperSharpShares ├── App.config ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── SuperSharpShares.csproj ├── SuperSharpShares.sln ├── bin └── Release │ └── SuperSharpShares.exe.config ├── obj ├── Debug │ └── .NETFramework,Version=v4.5.1.AssemblyAttributes.cs └── Release │ └── .NETFramework,Version=v4.5.1.AssemblyAttributes.cs ├── packages.config └── packages └── System.DirectoryServices.4.5.0 ├── System.DirectoryServices.4.5.0.nupkg ├── lib ├── net45 │ └── _._ └── netstandard2.0 │ └── System.DirectoryServices.dll ├── ref ├── net45 │ └── _._ └── netstandard2.0 │ ├── System.DirectoryServices.dll │ └── System.DirectoryServices.xml └── runtimes └── win └── lib ├── net45 └── _._ └── netcoreapp2.0 └── System.DirectoryServices.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaresLLC/SuperSharpShares/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaresLLC/SuperSharpShares/HEAD/README.md -------------------------------------------------------------------------------- /SuperSharpShares/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaresLLC/SuperSharpShares/HEAD/SuperSharpShares/App.config -------------------------------------------------------------------------------- /SuperSharpShares/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaresLLC/SuperSharpShares/HEAD/SuperSharpShares/Program.cs -------------------------------------------------------------------------------- /SuperSharpShares/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaresLLC/SuperSharpShares/HEAD/SuperSharpShares/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SuperSharpShares/SuperSharpShares.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaresLLC/SuperSharpShares/HEAD/SuperSharpShares/SuperSharpShares.csproj -------------------------------------------------------------------------------- /SuperSharpShares/SuperSharpShares.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaresLLC/SuperSharpShares/HEAD/SuperSharpShares/SuperSharpShares.sln -------------------------------------------------------------------------------- /SuperSharpShares/bin/Release/SuperSharpShares.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaresLLC/SuperSharpShares/HEAD/SuperSharpShares/bin/Release/SuperSharpShares.exe.config -------------------------------------------------------------------------------- /SuperSharpShares/obj/Debug/.NETFramework,Version=v4.5.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaresLLC/SuperSharpShares/HEAD/SuperSharpShares/obj/Debug/.NETFramework,Version=v4.5.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /SuperSharpShares/obj/Release/.NETFramework,Version=v4.5.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaresLLC/SuperSharpShares/HEAD/SuperSharpShares/obj/Release/.NETFramework,Version=v4.5.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /SuperSharpShares/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaresLLC/SuperSharpShares/HEAD/SuperSharpShares/packages.config -------------------------------------------------------------------------------- /SuperSharpShares/packages/System.DirectoryServices.4.5.0/System.DirectoryServices.4.5.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaresLLC/SuperSharpShares/HEAD/SuperSharpShares/packages/System.DirectoryServices.4.5.0/System.DirectoryServices.4.5.0.nupkg -------------------------------------------------------------------------------- /SuperSharpShares/packages/System.DirectoryServices.4.5.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SuperSharpShares/packages/System.DirectoryServices.4.5.0/lib/netstandard2.0/System.DirectoryServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaresLLC/SuperSharpShares/HEAD/SuperSharpShares/packages/System.DirectoryServices.4.5.0/lib/netstandard2.0/System.DirectoryServices.dll -------------------------------------------------------------------------------- /SuperSharpShares/packages/System.DirectoryServices.4.5.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SuperSharpShares/packages/System.DirectoryServices.4.5.0/ref/netstandard2.0/System.DirectoryServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaresLLC/SuperSharpShares/HEAD/SuperSharpShares/packages/System.DirectoryServices.4.5.0/ref/netstandard2.0/System.DirectoryServices.dll -------------------------------------------------------------------------------- /SuperSharpShares/packages/System.DirectoryServices.4.5.0/ref/netstandard2.0/System.DirectoryServices.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaresLLC/SuperSharpShares/HEAD/SuperSharpShares/packages/System.DirectoryServices.4.5.0/ref/netstandard2.0/System.DirectoryServices.xml -------------------------------------------------------------------------------- /SuperSharpShares/packages/System.DirectoryServices.4.5.0/runtimes/win/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SuperSharpShares/packages/System.DirectoryServices.4.5.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaresLLC/SuperSharpShares/HEAD/SuperSharpShares/packages/System.DirectoryServices.4.5.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll --------------------------------------------------------------------------------