├── .gitignore ├── LICENSE ├── README.md ├── SharpShares.sln └── SharpShares ├── Enums └── Shares.cs ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── SharpShares.csproj └── Utilities ├── LDAP.cs ├── Options.cs └── Status.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackcraft-Labs/SharpShares/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackcraft-Labs/SharpShares/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackcraft-Labs/SharpShares/HEAD/README.md -------------------------------------------------------------------------------- /SharpShares.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackcraft-Labs/SharpShares/HEAD/SharpShares.sln -------------------------------------------------------------------------------- /SharpShares/Enums/Shares.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackcraft-Labs/SharpShares/HEAD/SharpShares/Enums/Shares.cs -------------------------------------------------------------------------------- /SharpShares/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackcraft-Labs/SharpShares/HEAD/SharpShares/Program.cs -------------------------------------------------------------------------------- /SharpShares/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackcraft-Labs/SharpShares/HEAD/SharpShares/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SharpShares/SharpShares.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackcraft-Labs/SharpShares/HEAD/SharpShares/SharpShares.csproj -------------------------------------------------------------------------------- /SharpShares/Utilities/LDAP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackcraft-Labs/SharpShares/HEAD/SharpShares/Utilities/LDAP.cs -------------------------------------------------------------------------------- /SharpShares/Utilities/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackcraft-Labs/SharpShares/HEAD/SharpShares/Utilities/Options.cs -------------------------------------------------------------------------------- /SharpShares/Utilities/Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackcraft-Labs/SharpShares/HEAD/SharpShares/Utilities/Status.cs --------------------------------------------------------------------------------