├── Convert rows to columns using pivot in SQL ├── DynamicDB-Script.sql ├── DyncmicDB.bak ├── Final Dynamic Pivot Query.sql └── Readme.MD ├── Get All SQL Info using T-SQL ├── Get SQL Server Information 2017 - 2016 - 2014 - 2012 - M.Qassas.sql └── README.md ├── Get SharePoint Edition Programmatically ├── Readme.MD └── SharePoint 2016 Edition Detection │ └── SharePoint 2016 Edition Detection │ ├── Dakirby309-Simply-Styled-Microsoft-SharePoint-2013.ico │ ├── PS2016_Edition.Designer.cs │ ├── PS2016_Edition.cs │ ├── PS2016_Edition.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Resources │ ├── Categories-system-help-icon.png │ ├── Categories-system-help-icon1.png │ ├── FAQ-icon.png │ ├── checkInCircle.png │ ├── green_sheld_tick.jpg │ ├── play-icon.png │ └── process-accept-icon.png │ ├── SharePoint_Edition_Detection.csproj │ ├── SharePoint_Edition_Detection.csproj.user │ ├── SharePoint_Edition_Detection.sln │ ├── SharePoint_Edition_Detection_Methods.cs │ ├── app.config │ ├── bin │ └── Debug │ │ ├── HtmlAgilityPack.dll │ │ ├── HtmlAgilityPack.pdb │ │ ├── HtmlAgilityPack.xml │ │ ├── SharePoint_Edition_Detection.application │ │ ├── SharePoint_Edition_Detection.exe │ │ ├── SharePoint_Edition_Detection.exe.config │ │ ├── SharePoint_Edition_Detection.exe.manifest │ │ ├── SharePoint_Edition_Detection.pdb │ │ ├── SharePoint_Edition_Detection.vshost.application │ │ ├── SharePoint_Edition_Detection.vshost.exe │ │ ├── SharePoint_Edition_Detection.vshost.exe.config │ │ ├── SharePoint_Edition_Detection.vshost.exe.manifest │ │ └── app.publish │ │ └── SharePoint_Edition_Detection.exe │ ├── obj │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── ProjectServer2016_AutoInstaller.Form1.resources │ │ ├── ProjectServer2016_AutoInstaller.PS2016_Home.resources │ │ ├── ProjectServer2016_AutoInstaller.PS2016_Wizard.resources │ │ ├── ProjectServer2016_AutoInstaller.Properties.Resources.resources │ │ ├── ProjectServer2016_AutoInstaller.application │ │ ├── ProjectServer2016_AutoInstaller.csproj.FileListAbsolute.txt │ │ ├── ProjectServer2016_AutoInstaller.csproj.GenerateResource.Cache │ │ ├── ProjectServer2016_AutoInstaller.csprojResolveAssemblyReference.cache │ │ ├── ProjectServer2016_AutoInstaller.exe.manifest │ │ ├── SharePoint_Edition_Detection.PS2016_Edition.resources │ │ ├── SharePoint_Edition_Detection.Properties.Resources.resources │ │ ├── SharePoint_Edition_Detection.application │ │ ├── SharePoint_Edition_Detection.csproj.FileListAbsolute.txt │ │ ├── SharePoint_Edition_Detection.csproj.GenerateResource.Cache │ │ ├── SharePoint_Edition_Detection.csprojResolveAssemblyReference.cache │ │ ├── SharePoint_Edition_Detection.exe │ │ ├── SharePoint_Edition_Detection.exe.manifest │ │ └── SharePoint_Edition_Detection.pdb │ ├── packages.config │ └── packages │ ├── HtmlAgilityPack.1.5.1 │ ├── HtmlAgilityPack.1.5.1.nupkg │ ├── lib │ │ ├── Net20 │ │ │ ├── HtmlAgilityPack.dll │ │ │ ├── HtmlAgilityPack.pdb │ │ │ └── HtmlAgilityPack.xml │ │ ├── Net40-client │ │ │ ├── HtmlAgilityPack.dll │ │ │ ├── HtmlAgilityPack.pdb │ │ │ └── HtmlAgilityPack.xml │ │ ├── Net40 │ │ │ ├── HtmlAgilityPack.XML │ │ │ ├── HtmlAgilityPack.dll │ │ │ └── HtmlAgilityPack.pdb │ │ ├── Net45 │ │ │ ├── HtmlAgilityPack.XML │ │ │ ├── HtmlAgilityPack.dll │ │ │ └── HtmlAgilityPack.pdb │ │ ├── NetCore45 │ │ │ ├── HtmlAgilityPack.dll │ │ │ ├── HtmlAgilityPack.pdb │ │ │ ├── HtmlAgilityPack.pri │ │ │ └── HtmlAgilityPack.xml │ │ ├── netstandard1.3 │ │ │ ├── HtmlAgilityPack.dll │ │ │ └── HtmlAgilityPack.pdb │ │ ├── netstandard1.6 │ │ │ ├── HtmlAgilityPack.dll │ │ │ └── HtmlAgilityPack.pdb │ │ ├── portable-net45+netcore45+wp8+MonoAndroid+MonoTouch │ │ │ ├── HtmlAgilityPack.dll │ │ │ └── HtmlAgilityPack.pdb │ │ ├── portable-net45+netcore45+wpa81+wp8+MonoAndroid+MonoTouch │ │ │ ├── HtmlAgilityPack.dll │ │ │ └── HtmlAgilityPack.pdb │ │ └── sl5 │ │ │ ├── HtmlAgilityPack.XML │ │ │ ├── HtmlAgilityPack.dll │ │ │ └── HtmlAgilityPack.pdb │ └── readme.txt │ └── repositories.config ├── Get User Alerts details by List Name ├── CSharpCode.cs ├── Query SharePoint User Alerts from SP Content DB.sql └── Readme.MD ├── LICENSE ├── README.md └── SharePoint Lookup Field Operations In SSOM CSharp ├── Get_Set_SharePoint_Lookup_SSOM.zip └── README.md /Convert rows to columns using pivot in SQL/DynamicDB-Script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Convert rows to columns using pivot in SQL/DynamicDB-Script.sql -------------------------------------------------------------------------------- /Convert rows to columns using pivot in SQL/DyncmicDB.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Convert rows to columns using pivot in SQL/DyncmicDB.bak -------------------------------------------------------------------------------- /Convert rows to columns using pivot in SQL/Final Dynamic Pivot Query.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Convert rows to columns using pivot in SQL/Final Dynamic Pivot Query.sql -------------------------------------------------------------------------------- /Convert rows to columns using pivot in SQL/Readme.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Convert rows to columns using pivot in SQL/Readme.MD -------------------------------------------------------------------------------- /Get All SQL Info using T-SQL/Get SQL Server Information 2017 - 2016 - 2014 - 2012 - M.Qassas.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get All SQL Info using T-SQL/Get SQL Server Information 2017 - 2016 - 2014 - 2012 - M.Qassas.sql -------------------------------------------------------------------------------- /Get All SQL Info using T-SQL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get All SQL Info using T-SQL/README.md -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/Readme.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/Readme.MD -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/Dakirby309-Simply-Styled-Microsoft-SharePoint-2013.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/Dakirby309-Simply-Styled-Microsoft-SharePoint-2013.ico -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/PS2016_Edition.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/PS2016_Edition.Designer.cs -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/PS2016_Edition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/PS2016_Edition.cs -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/PS2016_Edition.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/PS2016_Edition.resx -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/Program.cs -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/Properties/Resources.resx -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/Properties/Settings.settings -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/Resources/Categories-system-help-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/Resources/Categories-system-help-icon.png -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/Resources/Categories-system-help-icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/Resources/Categories-system-help-icon1.png -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/Resources/FAQ-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/Resources/FAQ-icon.png -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/Resources/checkInCircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/Resources/checkInCircle.png -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/Resources/green_sheld_tick.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/Resources/green_sheld_tick.jpg -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/Resources/play-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/Resources/play-icon.png -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/Resources/process-accept-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/Resources/process-accept-icon.png -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/SharePoint_Edition_Detection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/SharePoint_Edition_Detection.csproj -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/SharePoint_Edition_Detection.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/SharePoint_Edition_Detection.csproj.user -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/SharePoint_Edition_Detection.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/SharePoint_Edition_Detection.sln -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/SharePoint_Edition_Detection_Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/SharePoint_Edition_Detection_Methods.cs -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/app.config -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/bin/Debug/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/bin/Debug/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/bin/Debug/HtmlAgilityPack.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/bin/Debug/HtmlAgilityPack.pdb -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/bin/Debug/HtmlAgilityPack.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/bin/Debug/HtmlAgilityPack.xml -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/bin/Debug/SharePoint_Edition_Detection.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/bin/Debug/SharePoint_Edition_Detection.application -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/bin/Debug/SharePoint_Edition_Detection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/bin/Debug/SharePoint_Edition_Detection.exe -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/bin/Debug/SharePoint_Edition_Detection.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/bin/Debug/SharePoint_Edition_Detection.exe.config -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/bin/Debug/SharePoint_Edition_Detection.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/bin/Debug/SharePoint_Edition_Detection.exe.manifest -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/bin/Debug/SharePoint_Edition_Detection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/bin/Debug/SharePoint_Edition_Detection.pdb -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/bin/Debug/SharePoint_Edition_Detection.vshost.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/bin/Debug/SharePoint_Edition_Detection.vshost.application -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/bin/Debug/SharePoint_Edition_Detection.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/bin/Debug/SharePoint_Edition_Detection.vshost.exe -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/bin/Debug/SharePoint_Edition_Detection.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/bin/Debug/SharePoint_Edition_Detection.vshost.exe.config -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/bin/Debug/SharePoint_Edition_Detection.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/bin/Debug/SharePoint_Edition_Detection.vshost.exe.manifest -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/bin/Debug/app.publish/SharePoint_Edition_Detection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/bin/Debug/app.publish/SharePoint_Edition_Detection.exe -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/ProjectServer2016_AutoInstaller.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/ProjectServer2016_AutoInstaller.Form1.resources -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/ProjectServer2016_AutoInstaller.PS2016_Home.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/ProjectServer2016_AutoInstaller.PS2016_Home.resources -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/ProjectServer2016_AutoInstaller.PS2016_Wizard.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/ProjectServer2016_AutoInstaller.PS2016_Wizard.resources -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/ProjectServer2016_AutoInstaller.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/ProjectServer2016_AutoInstaller.Properties.Resources.resources -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/ProjectServer2016_AutoInstaller.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/ProjectServer2016_AutoInstaller.application -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/ProjectServer2016_AutoInstaller.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/ProjectServer2016_AutoInstaller.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/ProjectServer2016_AutoInstaller.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/ProjectServer2016_AutoInstaller.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/ProjectServer2016_AutoInstaller.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/ProjectServer2016_AutoInstaller.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/ProjectServer2016_AutoInstaller.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/ProjectServer2016_AutoInstaller.exe.manifest -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/SharePoint_Edition_Detection.PS2016_Edition.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/SharePoint_Edition_Detection.PS2016_Edition.resources -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/SharePoint_Edition_Detection.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/SharePoint_Edition_Detection.Properties.Resources.resources -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/SharePoint_Edition_Detection.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/SharePoint_Edition_Detection.application -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/SharePoint_Edition_Detection.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/SharePoint_Edition_Detection.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/SharePoint_Edition_Detection.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/SharePoint_Edition_Detection.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/SharePoint_Edition_Detection.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/SharePoint_Edition_Detection.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/SharePoint_Edition_Detection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/SharePoint_Edition_Detection.exe -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/SharePoint_Edition_Detection.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/SharePoint_Edition_Detection.exe.manifest -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/SharePoint_Edition_Detection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/obj/Debug/SharePoint_Edition_Detection.pdb -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages.config -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/HtmlAgilityPack.1.5.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/HtmlAgilityPack.1.5.1.nupkg -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/Net20/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/Net20/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/Net20/HtmlAgilityPack.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/Net20/HtmlAgilityPack.pdb -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/Net20/HtmlAgilityPack.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/Net20/HtmlAgilityPack.xml -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/Net40-client/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/Net40-client/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/Net40-client/HtmlAgilityPack.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/Net40-client/HtmlAgilityPack.pdb -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/Net40-client/HtmlAgilityPack.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/Net40-client/HtmlAgilityPack.xml -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/Net40/HtmlAgilityPack.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/Net40/HtmlAgilityPack.XML -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/Net40/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/Net40/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/Net40/HtmlAgilityPack.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/Net40/HtmlAgilityPack.pdb -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/Net45/HtmlAgilityPack.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/Net45/HtmlAgilityPack.XML -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/Net45/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/Net45/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/Net45/HtmlAgilityPack.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/Net45/HtmlAgilityPack.pdb -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/NetCore45/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/NetCore45/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/NetCore45/HtmlAgilityPack.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/NetCore45/HtmlAgilityPack.pdb -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/NetCore45/HtmlAgilityPack.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/NetCore45/HtmlAgilityPack.pri -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/NetCore45/HtmlAgilityPack.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/NetCore45/HtmlAgilityPack.xml -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/netstandard1.3/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/netstandard1.3/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/netstandard1.3/HtmlAgilityPack.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/netstandard1.3/HtmlAgilityPack.pdb -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/netstandard1.6/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/netstandard1.6/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/netstandard1.6/HtmlAgilityPack.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/netstandard1.6/HtmlAgilityPack.pdb -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/portable-net45+netcore45+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/portable-net45+netcore45+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/portable-net45+netcore45+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/portable-net45+netcore45+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.pdb -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.pdb -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/sl5/HtmlAgilityPack.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/sl5/HtmlAgilityPack.XML -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/sl5/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/sl5/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/sl5/HtmlAgilityPack.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/lib/sl5/HtmlAgilityPack.pdb -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/HtmlAgilityPack.1.5.1/readme.txt -------------------------------------------------------------------------------- /Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get SharePoint Edition Programmatically/SharePoint 2016 Edition Detection/SharePoint 2016 Edition Detection/packages/repositories.config -------------------------------------------------------------------------------- /Get User Alerts details by List Name/CSharpCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get User Alerts details by List Name/CSharpCode.cs -------------------------------------------------------------------------------- /Get User Alerts details by List Name/Query SharePoint User Alerts from SP Content DB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get User Alerts details by List Name/Query SharePoint User Alerts from SP Content DB.sql -------------------------------------------------------------------------------- /Get User Alerts details by List Name/Readme.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/Get User Alerts details by List Name/Readme.MD -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/README.md -------------------------------------------------------------------------------- /SharePoint Lookup Field Operations In SSOM CSharp/Get_Set_SharePoint_Lookup_SSOM.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/SharePoint Lookup Field Operations In SSOM CSharp/Get_Set_SharePoint_Lookup_SSOM.zip -------------------------------------------------------------------------------- /SharePoint Lookup Field Operations In SSOM CSharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melqassas/CodeSamples/HEAD/SharePoint Lookup Field Operations In SSOM CSharp/README.md --------------------------------------------------------------------------------