├── .github └── workflows │ ├── build-release.yml │ └── version-release.yml ├── .gitignore ├── 2LCS.sln ├── 2LCS ├── 2LCS.csproj ├── App.config ├── AssetLibrary │ ├── AssetLibrarySearch.Designer.cs │ ├── AssetLibrarySearch.cs │ ├── AssetLibrarySearch.resx │ ├── AssetVersionForExport.cs │ └── HttpClientHelperAssetLibraryExtension.cs ├── Cache │ ├── CredentialsCacheHelper.cs │ ├── CredentialsStore.cs │ └── EnvironmentCredentials.cs ├── Enumerations.cs ├── ExtendedWebBrowser.cs ├── Forms │ ├── About2LCS.Designer.cs │ ├── About2LCS.cs │ ├── About2LCS.resx │ ├── AddNSG.Designer.cs │ ├── AddNSG.cs │ ├── AddNSG.resx │ ├── AvailableKBs.Designer.cs │ ├── AvailableKBs.cs │ ├── AvailableKBs.resx │ ├── BuildInfoDetails.Designer.cs │ ├── BuildInfoDetails.cs │ ├── BuildInfoDetails.resx │ ├── ChooseMachine.Designer.cs │ ├── ChooseMachine.cs │ ├── ChooseMachine.resx │ ├── ChooseNSG.Designer.cs │ ├── ChooseNSG.cs │ ├── ChooseNSG.resx │ ├── ChoosePackage.Designer.cs │ ├── ChoosePackage.cs │ ├── ChoosePackage.resx │ ├── ChooseProject.Designer.cs │ ├── ChooseProject.cs │ ├── ChooseProject.resx │ ├── ChooseService.Designer.cs │ ├── ChooseService.cs │ ├── ChooseService.resx │ ├── CookieEdit.Designer.cs │ ├── CookieEdit.cs │ ├── CookieEdit.resx │ ├── Credentials.Designer.cs │ ├── Credentials.cs │ ├── Credentials.resx │ ├── CustomLinks.Designer.cs │ ├── CustomLinks.cs │ ├── CustomLinks.resx │ ├── EnvironmentChanges.Designer.cs │ ├── EnvironmentChanges.cs │ ├── EnvironmentChanges.resx │ ├── LogDisplay.Designer.cs │ ├── LogDisplay.cs │ ├── LogDisplay.resx │ ├── Login.Designer.cs │ ├── Login.cs │ ├── Login.resx │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── Parameters.Designer.cs │ ├── Parameters.cs │ ├── Parameters.resx │ ├── PowerShell.Designer.cs │ ├── PowerShell.cs │ ├── PowerShell.resx │ ├── RDPConnect.Designer.cs │ ├── RDPConnect.cs │ ├── RDPConnect.resx │ ├── UpcomingUpdates.Designer.cs │ ├── UpcomingUpdates.cs │ └── UpcomingUpdates.resx ├── HttpClientHelper.cs ├── JsonObjects.cs ├── LICENSE ├── NativeMethods.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── RDPCredentials.cs ├── Third Party Notices.txt ├── URIHandler.cs ├── Utils │ └── CacheUtil.cs ├── WebBrowserHelper.cs ├── favicon-blue.ico ├── favicon-white - Copy.ico └── favicon-white.ico ├── LICENSE ├── README.md ├── SECURITY.md └── Third Party Notices.txt /.github/workflows/build-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/.github/workflows/build-release.yml -------------------------------------------------------------------------------- /.github/workflows/version-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/.github/workflows/version-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/.gitignore -------------------------------------------------------------------------------- /2LCS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS.sln -------------------------------------------------------------------------------- /2LCS/2LCS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/2LCS.csproj -------------------------------------------------------------------------------- /2LCS/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/App.config -------------------------------------------------------------------------------- /2LCS/AssetLibrary/AssetLibrarySearch.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/AssetLibrary/AssetLibrarySearch.Designer.cs -------------------------------------------------------------------------------- /2LCS/AssetLibrary/AssetLibrarySearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/AssetLibrary/AssetLibrarySearch.cs -------------------------------------------------------------------------------- /2LCS/AssetLibrary/AssetLibrarySearch.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/AssetLibrary/AssetLibrarySearch.resx -------------------------------------------------------------------------------- /2LCS/AssetLibrary/AssetVersionForExport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/AssetLibrary/AssetVersionForExport.cs -------------------------------------------------------------------------------- /2LCS/AssetLibrary/HttpClientHelperAssetLibraryExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/AssetLibrary/HttpClientHelperAssetLibraryExtension.cs -------------------------------------------------------------------------------- /2LCS/Cache/CredentialsCacheHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Cache/CredentialsCacheHelper.cs -------------------------------------------------------------------------------- /2LCS/Cache/CredentialsStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Cache/CredentialsStore.cs -------------------------------------------------------------------------------- /2LCS/Cache/EnvironmentCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Cache/EnvironmentCredentials.cs -------------------------------------------------------------------------------- /2LCS/Enumerations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Enumerations.cs -------------------------------------------------------------------------------- /2LCS/ExtendedWebBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/ExtendedWebBrowser.cs -------------------------------------------------------------------------------- /2LCS/Forms/About2LCS.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/About2LCS.Designer.cs -------------------------------------------------------------------------------- /2LCS/Forms/About2LCS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/About2LCS.cs -------------------------------------------------------------------------------- /2LCS/Forms/About2LCS.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/About2LCS.resx -------------------------------------------------------------------------------- /2LCS/Forms/AddNSG.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/AddNSG.Designer.cs -------------------------------------------------------------------------------- /2LCS/Forms/AddNSG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/AddNSG.cs -------------------------------------------------------------------------------- /2LCS/Forms/AddNSG.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/AddNSG.resx -------------------------------------------------------------------------------- /2LCS/Forms/AvailableKBs.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/AvailableKBs.Designer.cs -------------------------------------------------------------------------------- /2LCS/Forms/AvailableKBs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/AvailableKBs.cs -------------------------------------------------------------------------------- /2LCS/Forms/AvailableKBs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/AvailableKBs.resx -------------------------------------------------------------------------------- /2LCS/Forms/BuildInfoDetails.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/BuildInfoDetails.Designer.cs -------------------------------------------------------------------------------- /2LCS/Forms/BuildInfoDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/BuildInfoDetails.cs -------------------------------------------------------------------------------- /2LCS/Forms/BuildInfoDetails.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/BuildInfoDetails.resx -------------------------------------------------------------------------------- /2LCS/Forms/ChooseMachine.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/ChooseMachine.Designer.cs -------------------------------------------------------------------------------- /2LCS/Forms/ChooseMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/ChooseMachine.cs -------------------------------------------------------------------------------- /2LCS/Forms/ChooseMachine.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/ChooseMachine.resx -------------------------------------------------------------------------------- /2LCS/Forms/ChooseNSG.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/ChooseNSG.Designer.cs -------------------------------------------------------------------------------- /2LCS/Forms/ChooseNSG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/ChooseNSG.cs -------------------------------------------------------------------------------- /2LCS/Forms/ChooseNSG.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/ChooseNSG.resx -------------------------------------------------------------------------------- /2LCS/Forms/ChoosePackage.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/ChoosePackage.Designer.cs -------------------------------------------------------------------------------- /2LCS/Forms/ChoosePackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/ChoosePackage.cs -------------------------------------------------------------------------------- /2LCS/Forms/ChoosePackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/ChoosePackage.resx -------------------------------------------------------------------------------- /2LCS/Forms/ChooseProject.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/ChooseProject.Designer.cs -------------------------------------------------------------------------------- /2LCS/Forms/ChooseProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/ChooseProject.cs -------------------------------------------------------------------------------- /2LCS/Forms/ChooseProject.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/ChooseProject.resx -------------------------------------------------------------------------------- /2LCS/Forms/ChooseService.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/ChooseService.Designer.cs -------------------------------------------------------------------------------- /2LCS/Forms/ChooseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/ChooseService.cs -------------------------------------------------------------------------------- /2LCS/Forms/ChooseService.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/ChooseService.resx -------------------------------------------------------------------------------- /2LCS/Forms/CookieEdit.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/CookieEdit.Designer.cs -------------------------------------------------------------------------------- /2LCS/Forms/CookieEdit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/CookieEdit.cs -------------------------------------------------------------------------------- /2LCS/Forms/CookieEdit.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/CookieEdit.resx -------------------------------------------------------------------------------- /2LCS/Forms/Credentials.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/Credentials.Designer.cs -------------------------------------------------------------------------------- /2LCS/Forms/Credentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/Credentials.cs -------------------------------------------------------------------------------- /2LCS/Forms/Credentials.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/Credentials.resx -------------------------------------------------------------------------------- /2LCS/Forms/CustomLinks.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/CustomLinks.Designer.cs -------------------------------------------------------------------------------- /2LCS/Forms/CustomLinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/CustomLinks.cs -------------------------------------------------------------------------------- /2LCS/Forms/CustomLinks.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/CustomLinks.resx -------------------------------------------------------------------------------- /2LCS/Forms/EnvironmentChanges.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/EnvironmentChanges.Designer.cs -------------------------------------------------------------------------------- /2LCS/Forms/EnvironmentChanges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/EnvironmentChanges.cs -------------------------------------------------------------------------------- /2LCS/Forms/EnvironmentChanges.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/EnvironmentChanges.resx -------------------------------------------------------------------------------- /2LCS/Forms/LogDisplay.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/LogDisplay.Designer.cs -------------------------------------------------------------------------------- /2LCS/Forms/LogDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/LogDisplay.cs -------------------------------------------------------------------------------- /2LCS/Forms/LogDisplay.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/LogDisplay.resx -------------------------------------------------------------------------------- /2LCS/Forms/Login.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/Login.Designer.cs -------------------------------------------------------------------------------- /2LCS/Forms/Login.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/Login.cs -------------------------------------------------------------------------------- /2LCS/Forms/Login.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/Login.resx -------------------------------------------------------------------------------- /2LCS/Forms/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/MainForm.Designer.cs -------------------------------------------------------------------------------- /2LCS/Forms/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/MainForm.cs -------------------------------------------------------------------------------- /2LCS/Forms/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/MainForm.resx -------------------------------------------------------------------------------- /2LCS/Forms/Parameters.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/Parameters.Designer.cs -------------------------------------------------------------------------------- /2LCS/Forms/Parameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/Parameters.cs -------------------------------------------------------------------------------- /2LCS/Forms/Parameters.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/Parameters.resx -------------------------------------------------------------------------------- /2LCS/Forms/PowerShell.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/PowerShell.Designer.cs -------------------------------------------------------------------------------- /2LCS/Forms/PowerShell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/PowerShell.cs -------------------------------------------------------------------------------- /2LCS/Forms/PowerShell.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/PowerShell.resx -------------------------------------------------------------------------------- /2LCS/Forms/RDPConnect.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/RDPConnect.Designer.cs -------------------------------------------------------------------------------- /2LCS/Forms/RDPConnect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/RDPConnect.cs -------------------------------------------------------------------------------- /2LCS/Forms/RDPConnect.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/RDPConnect.resx -------------------------------------------------------------------------------- /2LCS/Forms/UpcomingUpdates.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/UpcomingUpdates.Designer.cs -------------------------------------------------------------------------------- /2LCS/Forms/UpcomingUpdates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/UpcomingUpdates.cs -------------------------------------------------------------------------------- /2LCS/Forms/UpcomingUpdates.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Forms/UpcomingUpdates.resx -------------------------------------------------------------------------------- /2LCS/HttpClientHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/HttpClientHelper.cs -------------------------------------------------------------------------------- /2LCS/JsonObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/JsonObjects.cs -------------------------------------------------------------------------------- /2LCS/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/LICENSE -------------------------------------------------------------------------------- /2LCS/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/NativeMethods.cs -------------------------------------------------------------------------------- /2LCS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Program.cs -------------------------------------------------------------------------------- /2LCS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /2LCS/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /2LCS/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Properties/Resources.resx -------------------------------------------------------------------------------- /2LCS/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /2LCS/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Properties/Settings.settings -------------------------------------------------------------------------------- /2LCS/RDPCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/RDPCredentials.cs -------------------------------------------------------------------------------- /2LCS/Third Party Notices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Third Party Notices.txt -------------------------------------------------------------------------------- /2LCS/URIHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/URIHandler.cs -------------------------------------------------------------------------------- /2LCS/Utils/CacheUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/Utils/CacheUtil.cs -------------------------------------------------------------------------------- /2LCS/WebBrowserHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/WebBrowserHelper.cs -------------------------------------------------------------------------------- /2LCS/favicon-blue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/favicon-blue.ico -------------------------------------------------------------------------------- /2LCS/favicon-white - Copy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/favicon-white - Copy.ico -------------------------------------------------------------------------------- /2LCS/favicon-white.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/2LCS/favicon-white.ico -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Third Party Notices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/2LCS/HEAD/Third Party Notices.txt --------------------------------------------------------------------------------