├── .cspell.json ├── .gitignore ├── Extensions ├── dotnet │ ├── .editorconfig │ ├── ComplexConfig │ │ ├── ComplexConfig.sln │ │ ├── ComplexConfig │ │ │ ├── ComplexConfig.cs │ │ │ ├── ComplexConfig.csproj │ │ │ ├── ComplexConfig.nuspec │ │ │ ├── ExtensionSpecificError.cs │ │ │ └── config │ │ │ │ ├── ComplexConfig.Config.json │ │ │ │ ├── ComplexConfig.Language.en.json │ │ │ │ └── ComplexConfig.Schema.json │ │ └── README.md │ ├── ConfigListening │ │ ├── ConfigListening.sln │ │ ├── ConfigListening │ │ │ ├── AnagramValidator.cs │ │ │ ├── ConfigListening.cs │ │ │ ├── ConfigListening.csproj │ │ │ ├── ConfigListening.nuspec │ │ │ ├── PalindromeValidator.cs │ │ │ └── config │ │ │ │ ├── ConfigListening.Config.json │ │ │ │ ├── ConfigListening.Language.en.json │ │ │ │ └── ConfigListening.Schema.json │ │ ├── ConfigListeningUnitTests │ │ │ ├── ConfigListeningUnitTests.csproj │ │ │ ├── TestAnagramValidator.cs │ │ │ └── TestPalindromeValidator.cs │ │ └── README.md │ ├── CustomConfig │ │ ├── CustomConfig.sln │ │ ├── CustomConfig │ │ │ ├── ConfigResources │ │ │ │ ├── CustomConfig.css │ │ │ │ ├── CustomConfig.html │ │ │ │ └── CustomConfig.js │ │ │ ├── CustomConfig.cs │ │ │ ├── CustomConfig.csproj │ │ │ ├── CustomConfig.nuspec │ │ │ ├── CustomConfigErrorValue.cs │ │ │ └── config │ │ │ │ ├── CustomConfig.Config.json │ │ │ │ ├── CustomConfig.Language.en.json │ │ │ │ └── CustomConfig.Schema.json │ │ └── README.md │ ├── CustomUserManagement │ │ ├── CustomUserManagement.sln │ │ ├── CustomUserManagement │ │ │ ├── CommandHandler.cs │ │ │ ├── CustomUserManagement.cs │ │ │ ├── CustomUserManagement.csproj │ │ │ ├── CustomUserManagement.nuspec │ │ │ ├── ExtensionSpecificError.cs │ │ │ ├── HashHelper.cs │ │ │ ├── StringConstants.cs │ │ │ ├── User.cs │ │ │ └── config │ │ │ │ ├── CustomUserManagement.Config.json │ │ │ │ ├── CustomUserManagement.Language.en.json │ │ │ │ └── CustomUserManagement.Schema.json │ │ └── README.md │ ├── Diagnostics │ │ ├── Diagnostics.sln │ │ ├── Diagnostics │ │ │ ├── Diagnostics.cs │ │ │ ├── Diagnostics.csproj │ │ │ ├── Diagnostics.nuspec │ │ │ ├── ExtensionSpecificError.cs │ │ │ └── config │ │ │ │ ├── Diagnostics.Config.json │ │ │ │ ├── Diagnostics.Language.en.json │ │ │ │ └── Diagnostics.Schema.json │ │ └── README.md │ ├── DynamicSymbols │ │ ├── DynamicSymbols.sln │ │ ├── DynamicSymbols │ │ │ ├── DynamicSymbols.cs │ │ │ ├── DynamicSymbols.csproj │ │ │ ├── DynamicSymbols.nuspec │ │ │ ├── ExtensionSpecificError.cs │ │ │ ├── MachineHall │ │ │ │ ├── Furnace01.txt │ │ │ │ ├── Press01.txt │ │ │ │ └── Saw01.txt │ │ │ ├── MachineSymbol.cs │ │ │ ├── Machines │ │ │ │ ├── Furnace.cs │ │ │ │ ├── Machine.cs │ │ │ │ ├── MachineState.cs │ │ │ │ ├── Press.cs │ │ │ │ └── Saw.cs │ │ │ └── config │ │ │ │ ├── DynamicSymbols.Config.json │ │ │ │ ├── DynamicSymbols.Language.en.json │ │ │ │ └── DynamicSymbols.Schema.json │ │ └── README.md │ ├── EditPermissions │ │ ├── EditPermissions.sln │ │ ├── EditPermissions │ │ │ ├── EditPermissions.cs │ │ │ ├── EditPermissions.csproj │ │ │ ├── EditPermissions.nuspec │ │ │ ├── ExtensionSpecificError.cs │ │ │ └── config │ │ │ │ ├── EditPermissions.Config.json │ │ │ │ ├── EditPermissions.Language.en.json │ │ │ │ └── EditPermissions.Schema.json │ │ └── README.md │ ├── ErrorHandling │ │ ├── ErrorHandling.sln │ │ ├── ErrorHandling │ │ │ ├── ErrorHandling.cs │ │ │ ├── ErrorHandling.csproj │ │ │ ├── ErrorHandling.nuspec │ │ │ ├── ExtensionSpecificError.cs │ │ │ └── config │ │ │ │ ├── ErrorHandling.Config.json │ │ │ │ └── ErrorHandling.Schema.json │ │ └── README.md │ ├── EventListening │ │ ├── EventListening.sln │ │ ├── EventListening │ │ │ ├── EventListening.cs │ │ │ ├── EventListening.csproj │ │ │ ├── EventListening.nuspec │ │ │ ├── ExtensionSpecificError.cs │ │ │ └── config │ │ │ │ ├── EventListening.Config.json │ │ │ │ └── EventListening.Schema.json │ │ └── README.md │ ├── EventSystem │ │ ├── EventSystem.sln │ │ ├── EventSystem │ │ │ ├── EventSystem.cs │ │ │ ├── EventSystem.csproj │ │ │ ├── EventSystem.nuspec │ │ │ ├── ExtensionSpecificError.cs │ │ │ └── config │ │ │ │ ├── EventSystem.Config.json │ │ │ │ ├── EventSystem.Language.en.json │ │ │ │ └── EventSystem.Schema.json │ │ └── README.md │ ├── InterExtensionCommunication │ │ ├── InterExtensionCommunication.sln │ │ ├── InterExtensionCommunication │ │ │ ├── ExtensionSpecificError.cs │ │ │ ├── InterExtensionCommunication.cs │ │ │ ├── InterExtensionCommunication.csproj │ │ │ ├── InterExtensionCommunication.nuspec │ │ │ └── config │ │ │ │ ├── InterExtensionCommunication.Config.json │ │ │ │ └── InterExtensionCommunication.Schema.json │ │ └── README.md │ ├── LetsEncrypt │ │ ├── LetsEncrypt.sln │ │ ├── LetsEncrypt │ │ │ ├── LetsEncrypt.cs │ │ │ ├── LetsEncrypt.csproj │ │ │ ├── LetsEncrypt.nuspec │ │ │ └── config │ │ │ │ ├── LetsEncrypt.Config.json │ │ │ │ ├── LetsEncrypt.Language.de.json │ │ │ │ ├── LetsEncrypt.Language.en.json │ │ │ │ └── LetsEncrypt.Schema.json │ │ └── README.md │ ├── MinimalAuthentication │ │ ├── MinimalAuthentication.sln │ │ ├── MinimalAuthentication │ │ │ ├── ExtensionSpecificError.cs │ │ │ ├── MinimalAuthentication.cs │ │ │ ├── MinimalAuthentication.csproj │ │ │ ├── MinimalAuthentication.nuspec │ │ │ └── config │ │ │ │ ├── MinimalAuthentication.Config.json │ │ │ │ └── MinimalAuthentication.Schema.json │ │ └── README.md │ ├── NetworkTime │ │ ├── NetworkTime.sln │ │ ├── NetworkTime │ │ │ ├── ExtensionSpecificError.cs │ │ │ ├── NetworkTime.cs │ │ │ ├── NetworkTime.csproj │ │ │ ├── NetworkTime.nuspec │ │ │ └── config │ │ │ │ ├── NetworkTime.Config.json │ │ │ │ ├── NetworkTime.Language.en.json │ │ │ │ └── NetworkTime.Schema.json │ │ └── README.md │ ├── ProtectedSymbol │ │ ├── ProtectedSymbol.sln │ │ ├── ProtectedSymbol │ │ │ ├── ProtectedSymbol.cs │ │ │ ├── ProtectedSymbol.csproj │ │ │ ├── ProtectedSymbol.nuspec │ │ │ ├── ProtectedSymbolErrorValue.cs │ │ │ └── config │ │ │ │ ├── ProtectedSymbol.Config.json │ │ │ │ ├── ProtectedSymbol.Language.en.json │ │ │ │ └── ProtectedSymbol.Schema.json │ │ └── README.md │ ├── RandomValue │ │ ├── README.md │ │ ├── RandomValue.sln │ │ └── RandomValue │ │ │ ├── CSharpRandomValue.cs │ │ │ ├── CSharpRandomValue.csproj │ │ │ ├── CSharpRandomValue.nuspec │ │ │ ├── ExtensionSpecificError.cs │ │ │ └── config │ │ │ ├── CSharpRandomValue.Config.json │ │ │ ├── CSharpRandomValue.Language.en.json │ │ │ └── CSharpRandomValue.Schema.json │ ├── StartProcessFromService │ │ ├── README.md │ │ ├── StartProcessFromService.sln │ │ └── StartProcessFromService │ │ │ ├── ExtensionSpecificError.cs │ │ │ ├── StartProcessFromService.cs │ │ │ ├── StartProcessFromService.csproj │ │ │ ├── StartProcessFromService.nuspec │ │ │ ├── WindowsProcesses │ │ │ ├── NativeMethods.cs │ │ │ ├── NativeTypes │ │ │ │ ├── PROCESS_CREATION_FLAGS.cs │ │ │ │ ├── PROCESS_INFORMATION.cs │ │ │ │ ├── SHOW_WINDOW.cs │ │ │ │ ├── STARTUPINFO.cs │ │ │ │ ├── START_FLAGS.cs │ │ │ │ ├── WTS_CONNECTSTATE_CLASS.cs │ │ │ │ └── WTS_SESSION_INFO.cs │ │ │ ├── User.cs │ │ │ ├── UserEnvironment.cs │ │ │ ├── UserProcess.cs │ │ │ └── UserSession.cs │ │ │ └── config │ │ │ ├── StartProcessFromService.Config.json │ │ │ ├── StartProcessFromService.Language.en.json │ │ │ └── StartProcessFromService.Schema.json │ ├── StaticSymbols │ │ ├── README.md │ │ ├── StaticSymbols.sln │ │ └── StaticSymbols │ │ │ ├── ExtensionSpecificError.cs │ │ │ ├── Machines │ │ │ ├── Furnace.cs │ │ │ ├── Machine.cs │ │ │ ├── MachineState.cs │ │ │ ├── Press.cs │ │ │ └── Saw.cs │ │ │ ├── StaticSymbols.cs │ │ │ ├── StaticSymbols.csproj │ │ │ ├── StaticSymbols.nuspec │ │ │ └── config │ │ │ ├── StaticSymbols.Config.json │ │ │ ├── StaticSymbols.Language.en.json │ │ │ └── StaticSymbols.Schema.json │ ├── cleanupcode.sh │ ├── inspectcode.sh │ └── installresharper.sh └── python │ ├── RandomValue │ ├── README.md │ ├── RandomValue.sln │ └── RandomValue │ │ ├── Images │ │ └── logo.png │ │ ├── PythonRandomValue.Config.json │ │ ├── PythonRandomValue.Language.en.json │ │ ├── PythonRandomValue.Schema.json │ │ ├── PythonRandomValue.pyproj │ │ ├── main.py │ │ └── requirements.txt │ └── WeatherData │ ├── README.md │ ├── WeatherData.sln │ └── WeatherData │ ├── Images │ └── logo.png │ ├── WeatherData.Config.json │ ├── WeatherData.Language.en.json │ ├── WeatherData.Schema.json │ ├── WeatherData.pyproj │ ├── main.py │ └── requirements.txt ├── LICENSE ├── README.md ├── Snippets └── dotnet │ ├── DebuggingInit.md │ └── InterExtensionSubscription.md └── resources ├── FirstSteps-ActivateExtension.png ├── FirstSteps-AddReference.png ├── FirstSteps-AttachDebugger.png ├── FirstSteps-AttachToExtension.png ├── FirstSteps-BuildProject.png ├── FirstSteps-CheckExtensionStatus.png ├── FirstSteps-ConfigurationPage.png ├── FirstSteps-ConfigurationPageBrowser.png ├── FirstSteps-ConfigurationPageSysTray.png ├── FirstSteps-CreateDataBinding.png ├── FirstSteps-SysTray.png ├── InteractingWithServerExtensions.md └── WorkingWithServerExtensions.md /.cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/.cspell.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/.gitignore -------------------------------------------------------------------------------- /Extensions/dotnet/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/.editorconfig -------------------------------------------------------------------------------- /Extensions/dotnet/ComplexConfig/ComplexConfig.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ComplexConfig/ComplexConfig.sln -------------------------------------------------------------------------------- /Extensions/dotnet/ComplexConfig/ComplexConfig/ComplexConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ComplexConfig/ComplexConfig/ComplexConfig.cs -------------------------------------------------------------------------------- /Extensions/dotnet/ComplexConfig/ComplexConfig/ComplexConfig.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ComplexConfig/ComplexConfig/ComplexConfig.csproj -------------------------------------------------------------------------------- /Extensions/dotnet/ComplexConfig/ComplexConfig/ComplexConfig.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ComplexConfig/ComplexConfig/ComplexConfig.nuspec -------------------------------------------------------------------------------- /Extensions/dotnet/ComplexConfig/ComplexConfig/ExtensionSpecificError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ComplexConfig/ComplexConfig/ExtensionSpecificError.cs -------------------------------------------------------------------------------- /Extensions/dotnet/ComplexConfig/ComplexConfig/config/ComplexConfig.Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ComplexConfig/ComplexConfig/config/ComplexConfig.Config.json -------------------------------------------------------------------------------- /Extensions/dotnet/ComplexConfig/ComplexConfig/config/ComplexConfig.Language.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ComplexConfig/ComplexConfig/config/ComplexConfig.Language.en.json -------------------------------------------------------------------------------- /Extensions/dotnet/ComplexConfig/ComplexConfig/config/ComplexConfig.Schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ComplexConfig/ComplexConfig/config/ComplexConfig.Schema.json -------------------------------------------------------------------------------- /Extensions/dotnet/ComplexConfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ComplexConfig/README.md -------------------------------------------------------------------------------- /Extensions/dotnet/ConfigListening/ConfigListening.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ConfigListening/ConfigListening.sln -------------------------------------------------------------------------------- /Extensions/dotnet/ConfigListening/ConfigListening/AnagramValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ConfigListening/ConfigListening/AnagramValidator.cs -------------------------------------------------------------------------------- /Extensions/dotnet/ConfigListening/ConfigListening/ConfigListening.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ConfigListening/ConfigListening/ConfigListening.cs -------------------------------------------------------------------------------- /Extensions/dotnet/ConfigListening/ConfigListening/ConfigListening.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ConfigListening/ConfigListening/ConfigListening.csproj -------------------------------------------------------------------------------- /Extensions/dotnet/ConfigListening/ConfigListening/ConfigListening.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ConfigListening/ConfigListening/ConfigListening.nuspec -------------------------------------------------------------------------------- /Extensions/dotnet/ConfigListening/ConfigListening/PalindromeValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ConfigListening/ConfigListening/PalindromeValidator.cs -------------------------------------------------------------------------------- /Extensions/dotnet/ConfigListening/ConfigListening/config/ConfigListening.Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ConfigListening/ConfigListening/config/ConfigListening.Config.json -------------------------------------------------------------------------------- /Extensions/dotnet/ConfigListening/ConfigListening/config/ConfigListening.Language.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ConfigListening/ConfigListening/config/ConfigListening.Language.en.json -------------------------------------------------------------------------------- /Extensions/dotnet/ConfigListening/ConfigListening/config/ConfigListening.Schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ConfigListening/ConfigListening/config/ConfigListening.Schema.json -------------------------------------------------------------------------------- /Extensions/dotnet/ConfigListening/ConfigListeningUnitTests/ConfigListeningUnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ConfigListening/ConfigListeningUnitTests/ConfigListeningUnitTests.csproj -------------------------------------------------------------------------------- /Extensions/dotnet/ConfigListening/ConfigListeningUnitTests/TestAnagramValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ConfigListening/ConfigListeningUnitTests/TestAnagramValidator.cs -------------------------------------------------------------------------------- /Extensions/dotnet/ConfigListening/ConfigListeningUnitTests/TestPalindromeValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ConfigListening/ConfigListeningUnitTests/TestPalindromeValidator.cs -------------------------------------------------------------------------------- /Extensions/dotnet/ConfigListening/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ConfigListening/README.md -------------------------------------------------------------------------------- /Extensions/dotnet/CustomConfig/CustomConfig.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/CustomConfig/CustomConfig.sln -------------------------------------------------------------------------------- /Extensions/dotnet/CustomConfig/CustomConfig/ConfigResources/CustomConfig.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/CustomConfig/CustomConfig/ConfigResources/CustomConfig.css -------------------------------------------------------------------------------- /Extensions/dotnet/CustomConfig/CustomConfig/ConfigResources/CustomConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/CustomConfig/CustomConfig/ConfigResources/CustomConfig.html -------------------------------------------------------------------------------- /Extensions/dotnet/CustomConfig/CustomConfig/ConfigResources/CustomConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/CustomConfig/CustomConfig/ConfigResources/CustomConfig.js -------------------------------------------------------------------------------- /Extensions/dotnet/CustomConfig/CustomConfig/CustomConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/CustomConfig/CustomConfig/CustomConfig.cs -------------------------------------------------------------------------------- /Extensions/dotnet/CustomConfig/CustomConfig/CustomConfig.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/CustomConfig/CustomConfig/CustomConfig.csproj -------------------------------------------------------------------------------- /Extensions/dotnet/CustomConfig/CustomConfig/CustomConfig.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/CustomConfig/CustomConfig/CustomConfig.nuspec -------------------------------------------------------------------------------- /Extensions/dotnet/CustomConfig/CustomConfig/CustomConfigErrorValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/CustomConfig/CustomConfig/CustomConfigErrorValue.cs -------------------------------------------------------------------------------- /Extensions/dotnet/CustomConfig/CustomConfig/config/CustomConfig.Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/CustomConfig/CustomConfig/config/CustomConfig.Config.json -------------------------------------------------------------------------------- /Extensions/dotnet/CustomConfig/CustomConfig/config/CustomConfig.Language.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/CustomConfig/CustomConfig/config/CustomConfig.Language.en.json -------------------------------------------------------------------------------- /Extensions/dotnet/CustomConfig/CustomConfig/config/CustomConfig.Schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/CustomConfig/CustomConfig/config/CustomConfig.Schema.json -------------------------------------------------------------------------------- /Extensions/dotnet/CustomConfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/CustomConfig/README.md -------------------------------------------------------------------------------- /Extensions/dotnet/CustomUserManagement/CustomUserManagement.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/CustomUserManagement/CustomUserManagement.sln -------------------------------------------------------------------------------- /Extensions/dotnet/CustomUserManagement/CustomUserManagement/CommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/CustomUserManagement/CustomUserManagement/CommandHandler.cs -------------------------------------------------------------------------------- /Extensions/dotnet/CustomUserManagement/CustomUserManagement/CustomUserManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/CustomUserManagement/CustomUserManagement/CustomUserManagement.cs -------------------------------------------------------------------------------- /Extensions/dotnet/CustomUserManagement/CustomUserManagement/CustomUserManagement.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/CustomUserManagement/CustomUserManagement/CustomUserManagement.csproj -------------------------------------------------------------------------------- /Extensions/dotnet/CustomUserManagement/CustomUserManagement/CustomUserManagement.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/CustomUserManagement/CustomUserManagement/CustomUserManagement.nuspec -------------------------------------------------------------------------------- /Extensions/dotnet/CustomUserManagement/CustomUserManagement/ExtensionSpecificError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/CustomUserManagement/CustomUserManagement/ExtensionSpecificError.cs -------------------------------------------------------------------------------- /Extensions/dotnet/CustomUserManagement/CustomUserManagement/HashHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/CustomUserManagement/CustomUserManagement/HashHelper.cs -------------------------------------------------------------------------------- /Extensions/dotnet/CustomUserManagement/CustomUserManagement/StringConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/CustomUserManagement/CustomUserManagement/StringConstants.cs -------------------------------------------------------------------------------- /Extensions/dotnet/CustomUserManagement/CustomUserManagement/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/CustomUserManagement/CustomUserManagement/User.cs -------------------------------------------------------------------------------- /Extensions/dotnet/CustomUserManagement/CustomUserManagement/config/CustomUserManagement.Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/CustomUserManagement/CustomUserManagement/config/CustomUserManagement.Config.json -------------------------------------------------------------------------------- /Extensions/dotnet/CustomUserManagement/CustomUserManagement/config/CustomUserManagement.Language.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/CustomUserManagement/CustomUserManagement/config/CustomUserManagement.Language.en.json -------------------------------------------------------------------------------- /Extensions/dotnet/CustomUserManagement/CustomUserManagement/config/CustomUserManagement.Schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/CustomUserManagement/CustomUserManagement/config/CustomUserManagement.Schema.json -------------------------------------------------------------------------------- /Extensions/dotnet/CustomUserManagement/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/CustomUserManagement/README.md -------------------------------------------------------------------------------- /Extensions/dotnet/Diagnostics/Diagnostics.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/Diagnostics/Diagnostics.sln -------------------------------------------------------------------------------- /Extensions/dotnet/Diagnostics/Diagnostics/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/Diagnostics/Diagnostics/Diagnostics.cs -------------------------------------------------------------------------------- /Extensions/dotnet/Diagnostics/Diagnostics/Diagnostics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/Diagnostics/Diagnostics/Diagnostics.csproj -------------------------------------------------------------------------------- /Extensions/dotnet/Diagnostics/Diagnostics/Diagnostics.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/Diagnostics/Diagnostics/Diagnostics.nuspec -------------------------------------------------------------------------------- /Extensions/dotnet/Diagnostics/Diagnostics/ExtensionSpecificError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/Diagnostics/Diagnostics/ExtensionSpecificError.cs -------------------------------------------------------------------------------- /Extensions/dotnet/Diagnostics/Diagnostics/config/Diagnostics.Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/Diagnostics/Diagnostics/config/Diagnostics.Config.json -------------------------------------------------------------------------------- /Extensions/dotnet/Diagnostics/Diagnostics/config/Diagnostics.Language.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/Diagnostics/Diagnostics/config/Diagnostics.Language.en.json -------------------------------------------------------------------------------- /Extensions/dotnet/Diagnostics/Diagnostics/config/Diagnostics.Schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/Diagnostics/Diagnostics/config/Diagnostics.Schema.json -------------------------------------------------------------------------------- /Extensions/dotnet/Diagnostics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/Diagnostics/README.md -------------------------------------------------------------------------------- /Extensions/dotnet/DynamicSymbols/DynamicSymbols.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/DynamicSymbols/DynamicSymbols.sln -------------------------------------------------------------------------------- /Extensions/dotnet/DynamicSymbols/DynamicSymbols/DynamicSymbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/DynamicSymbols/DynamicSymbols/DynamicSymbols.cs -------------------------------------------------------------------------------- /Extensions/dotnet/DynamicSymbols/DynamicSymbols/DynamicSymbols.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/DynamicSymbols/DynamicSymbols/DynamicSymbols.csproj -------------------------------------------------------------------------------- /Extensions/dotnet/DynamicSymbols/DynamicSymbols/DynamicSymbols.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/DynamicSymbols/DynamicSymbols/DynamicSymbols.nuspec -------------------------------------------------------------------------------- /Extensions/dotnet/DynamicSymbols/DynamicSymbols/ExtensionSpecificError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/DynamicSymbols/DynamicSymbols/ExtensionSpecificError.cs -------------------------------------------------------------------------------- /Extensions/dotnet/DynamicSymbols/DynamicSymbols/MachineHall/Furnace01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/DynamicSymbols/DynamicSymbols/MachineHall/Furnace01.txt -------------------------------------------------------------------------------- /Extensions/dotnet/DynamicSymbols/DynamicSymbols/MachineHall/Press01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/DynamicSymbols/DynamicSymbols/MachineHall/Press01.txt -------------------------------------------------------------------------------- /Extensions/dotnet/DynamicSymbols/DynamicSymbols/MachineHall/Saw01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/DynamicSymbols/DynamicSymbols/MachineHall/Saw01.txt -------------------------------------------------------------------------------- /Extensions/dotnet/DynamicSymbols/DynamicSymbols/MachineSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/DynamicSymbols/DynamicSymbols/MachineSymbol.cs -------------------------------------------------------------------------------- /Extensions/dotnet/DynamicSymbols/DynamicSymbols/Machines/Furnace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/DynamicSymbols/DynamicSymbols/Machines/Furnace.cs -------------------------------------------------------------------------------- /Extensions/dotnet/DynamicSymbols/DynamicSymbols/Machines/Machine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/DynamicSymbols/DynamicSymbols/Machines/Machine.cs -------------------------------------------------------------------------------- /Extensions/dotnet/DynamicSymbols/DynamicSymbols/Machines/MachineState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/DynamicSymbols/DynamicSymbols/Machines/MachineState.cs -------------------------------------------------------------------------------- /Extensions/dotnet/DynamicSymbols/DynamicSymbols/Machines/Press.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/DynamicSymbols/DynamicSymbols/Machines/Press.cs -------------------------------------------------------------------------------- /Extensions/dotnet/DynamicSymbols/DynamicSymbols/Machines/Saw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/DynamicSymbols/DynamicSymbols/Machines/Saw.cs -------------------------------------------------------------------------------- /Extensions/dotnet/DynamicSymbols/DynamicSymbols/config/DynamicSymbols.Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/DynamicSymbols/DynamicSymbols/config/DynamicSymbols.Config.json -------------------------------------------------------------------------------- /Extensions/dotnet/DynamicSymbols/DynamicSymbols/config/DynamicSymbols.Language.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/DynamicSymbols/DynamicSymbols/config/DynamicSymbols.Language.en.json -------------------------------------------------------------------------------- /Extensions/dotnet/DynamicSymbols/DynamicSymbols/config/DynamicSymbols.Schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/DynamicSymbols/DynamicSymbols/config/DynamicSymbols.Schema.json -------------------------------------------------------------------------------- /Extensions/dotnet/DynamicSymbols/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/DynamicSymbols/README.md -------------------------------------------------------------------------------- /Extensions/dotnet/EditPermissions/EditPermissions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/EditPermissions/EditPermissions.sln -------------------------------------------------------------------------------- /Extensions/dotnet/EditPermissions/EditPermissions/EditPermissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/EditPermissions/EditPermissions/EditPermissions.cs -------------------------------------------------------------------------------- /Extensions/dotnet/EditPermissions/EditPermissions/EditPermissions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/EditPermissions/EditPermissions/EditPermissions.csproj -------------------------------------------------------------------------------- /Extensions/dotnet/EditPermissions/EditPermissions/EditPermissions.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/EditPermissions/EditPermissions/EditPermissions.nuspec -------------------------------------------------------------------------------- /Extensions/dotnet/EditPermissions/EditPermissions/ExtensionSpecificError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/EditPermissions/EditPermissions/ExtensionSpecificError.cs -------------------------------------------------------------------------------- /Extensions/dotnet/EditPermissions/EditPermissions/config/EditPermissions.Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/EditPermissions/EditPermissions/config/EditPermissions.Config.json -------------------------------------------------------------------------------- /Extensions/dotnet/EditPermissions/EditPermissions/config/EditPermissions.Language.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/EditPermissions/EditPermissions/config/EditPermissions.Language.en.json -------------------------------------------------------------------------------- /Extensions/dotnet/EditPermissions/EditPermissions/config/EditPermissions.Schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/EditPermissions/EditPermissions/config/EditPermissions.Schema.json -------------------------------------------------------------------------------- /Extensions/dotnet/EditPermissions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/EditPermissions/README.md -------------------------------------------------------------------------------- /Extensions/dotnet/ErrorHandling/ErrorHandling.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ErrorHandling/ErrorHandling.sln -------------------------------------------------------------------------------- /Extensions/dotnet/ErrorHandling/ErrorHandling/ErrorHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ErrorHandling/ErrorHandling/ErrorHandling.cs -------------------------------------------------------------------------------- /Extensions/dotnet/ErrorHandling/ErrorHandling/ErrorHandling.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ErrorHandling/ErrorHandling/ErrorHandling.csproj -------------------------------------------------------------------------------- /Extensions/dotnet/ErrorHandling/ErrorHandling/ErrorHandling.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ErrorHandling/ErrorHandling/ErrorHandling.nuspec -------------------------------------------------------------------------------- /Extensions/dotnet/ErrorHandling/ErrorHandling/ExtensionSpecificError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ErrorHandling/ErrorHandling/ExtensionSpecificError.cs -------------------------------------------------------------------------------- /Extensions/dotnet/ErrorHandling/ErrorHandling/config/ErrorHandling.Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ErrorHandling/ErrorHandling/config/ErrorHandling.Config.json -------------------------------------------------------------------------------- /Extensions/dotnet/ErrorHandling/ErrorHandling/config/ErrorHandling.Schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ErrorHandling/ErrorHandling/config/ErrorHandling.Schema.json -------------------------------------------------------------------------------- /Extensions/dotnet/ErrorHandling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ErrorHandling/README.md -------------------------------------------------------------------------------- /Extensions/dotnet/EventListening/EventListening.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/EventListening/EventListening.sln -------------------------------------------------------------------------------- /Extensions/dotnet/EventListening/EventListening/EventListening.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/EventListening/EventListening/EventListening.cs -------------------------------------------------------------------------------- /Extensions/dotnet/EventListening/EventListening/EventListening.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/EventListening/EventListening/EventListening.csproj -------------------------------------------------------------------------------- /Extensions/dotnet/EventListening/EventListening/EventListening.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/EventListening/EventListening/EventListening.nuspec -------------------------------------------------------------------------------- /Extensions/dotnet/EventListening/EventListening/ExtensionSpecificError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/EventListening/EventListening/ExtensionSpecificError.cs -------------------------------------------------------------------------------- /Extensions/dotnet/EventListening/EventListening/config/EventListening.Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/EventListening/EventListening/config/EventListening.Config.json -------------------------------------------------------------------------------- /Extensions/dotnet/EventListening/EventListening/config/EventListening.Schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/EventListening/EventListening/config/EventListening.Schema.json -------------------------------------------------------------------------------- /Extensions/dotnet/EventListening/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/EventListening/README.md -------------------------------------------------------------------------------- /Extensions/dotnet/EventSystem/EventSystem.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/EventSystem/EventSystem.sln -------------------------------------------------------------------------------- /Extensions/dotnet/EventSystem/EventSystem/EventSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/EventSystem/EventSystem/EventSystem.cs -------------------------------------------------------------------------------- /Extensions/dotnet/EventSystem/EventSystem/EventSystem.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/EventSystem/EventSystem/EventSystem.csproj -------------------------------------------------------------------------------- /Extensions/dotnet/EventSystem/EventSystem/EventSystem.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/EventSystem/EventSystem/EventSystem.nuspec -------------------------------------------------------------------------------- /Extensions/dotnet/EventSystem/EventSystem/ExtensionSpecificError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/EventSystem/EventSystem/ExtensionSpecificError.cs -------------------------------------------------------------------------------- /Extensions/dotnet/EventSystem/EventSystem/config/EventSystem.Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/EventSystem/EventSystem/config/EventSystem.Config.json -------------------------------------------------------------------------------- /Extensions/dotnet/EventSystem/EventSystem/config/EventSystem.Language.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/EventSystem/EventSystem/config/EventSystem.Language.en.json -------------------------------------------------------------------------------- /Extensions/dotnet/EventSystem/EventSystem/config/EventSystem.Schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/EventSystem/EventSystem/config/EventSystem.Schema.json -------------------------------------------------------------------------------- /Extensions/dotnet/EventSystem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/EventSystem/README.md -------------------------------------------------------------------------------- /Extensions/dotnet/InterExtensionCommunication/InterExtensionCommunication.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/InterExtensionCommunication/InterExtensionCommunication.sln -------------------------------------------------------------------------------- /Extensions/dotnet/InterExtensionCommunication/InterExtensionCommunication/ExtensionSpecificError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/InterExtensionCommunication/InterExtensionCommunication/ExtensionSpecificError.cs -------------------------------------------------------------------------------- /Extensions/dotnet/InterExtensionCommunication/InterExtensionCommunication/InterExtensionCommunication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/InterExtensionCommunication/InterExtensionCommunication/InterExtensionCommunication.cs -------------------------------------------------------------------------------- /Extensions/dotnet/InterExtensionCommunication/InterExtensionCommunication/InterExtensionCommunication.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/InterExtensionCommunication/InterExtensionCommunication/InterExtensionCommunication.csproj -------------------------------------------------------------------------------- /Extensions/dotnet/InterExtensionCommunication/InterExtensionCommunication/InterExtensionCommunication.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/InterExtensionCommunication/InterExtensionCommunication/InterExtensionCommunication.nuspec -------------------------------------------------------------------------------- /Extensions/dotnet/InterExtensionCommunication/InterExtensionCommunication/config/InterExtensionCommunication.Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/InterExtensionCommunication/InterExtensionCommunication/config/InterExtensionCommunication.Config.json -------------------------------------------------------------------------------- /Extensions/dotnet/InterExtensionCommunication/InterExtensionCommunication/config/InterExtensionCommunication.Schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/InterExtensionCommunication/InterExtensionCommunication/config/InterExtensionCommunication.Schema.json -------------------------------------------------------------------------------- /Extensions/dotnet/InterExtensionCommunication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/InterExtensionCommunication/README.md -------------------------------------------------------------------------------- /Extensions/dotnet/LetsEncrypt/LetsEncrypt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/LetsEncrypt/LetsEncrypt.sln -------------------------------------------------------------------------------- /Extensions/dotnet/LetsEncrypt/LetsEncrypt/LetsEncrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/LetsEncrypt/LetsEncrypt/LetsEncrypt.cs -------------------------------------------------------------------------------- /Extensions/dotnet/LetsEncrypt/LetsEncrypt/LetsEncrypt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/LetsEncrypt/LetsEncrypt/LetsEncrypt.csproj -------------------------------------------------------------------------------- /Extensions/dotnet/LetsEncrypt/LetsEncrypt/LetsEncrypt.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/LetsEncrypt/LetsEncrypt/LetsEncrypt.nuspec -------------------------------------------------------------------------------- /Extensions/dotnet/LetsEncrypt/LetsEncrypt/config/LetsEncrypt.Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/LetsEncrypt/LetsEncrypt/config/LetsEncrypt.Config.json -------------------------------------------------------------------------------- /Extensions/dotnet/LetsEncrypt/LetsEncrypt/config/LetsEncrypt.Language.de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/LetsEncrypt/LetsEncrypt/config/LetsEncrypt.Language.de.json -------------------------------------------------------------------------------- /Extensions/dotnet/LetsEncrypt/LetsEncrypt/config/LetsEncrypt.Language.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/LetsEncrypt/LetsEncrypt/config/LetsEncrypt.Language.en.json -------------------------------------------------------------------------------- /Extensions/dotnet/LetsEncrypt/LetsEncrypt/config/LetsEncrypt.Schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/LetsEncrypt/LetsEncrypt/config/LetsEncrypt.Schema.json -------------------------------------------------------------------------------- /Extensions/dotnet/LetsEncrypt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/LetsEncrypt/README.md -------------------------------------------------------------------------------- /Extensions/dotnet/MinimalAuthentication/MinimalAuthentication.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/MinimalAuthentication/MinimalAuthentication.sln -------------------------------------------------------------------------------- /Extensions/dotnet/MinimalAuthentication/MinimalAuthentication/ExtensionSpecificError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/MinimalAuthentication/MinimalAuthentication/ExtensionSpecificError.cs -------------------------------------------------------------------------------- /Extensions/dotnet/MinimalAuthentication/MinimalAuthentication/MinimalAuthentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/MinimalAuthentication/MinimalAuthentication/MinimalAuthentication.cs -------------------------------------------------------------------------------- /Extensions/dotnet/MinimalAuthentication/MinimalAuthentication/MinimalAuthentication.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/MinimalAuthentication/MinimalAuthentication/MinimalAuthentication.csproj -------------------------------------------------------------------------------- /Extensions/dotnet/MinimalAuthentication/MinimalAuthentication/MinimalAuthentication.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/MinimalAuthentication/MinimalAuthentication/MinimalAuthentication.nuspec -------------------------------------------------------------------------------- /Extensions/dotnet/MinimalAuthentication/MinimalAuthentication/config/MinimalAuthentication.Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/MinimalAuthentication/MinimalAuthentication/config/MinimalAuthentication.Config.json -------------------------------------------------------------------------------- /Extensions/dotnet/MinimalAuthentication/MinimalAuthentication/config/MinimalAuthentication.Schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/MinimalAuthentication/MinimalAuthentication/config/MinimalAuthentication.Schema.json -------------------------------------------------------------------------------- /Extensions/dotnet/MinimalAuthentication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/MinimalAuthentication/README.md -------------------------------------------------------------------------------- /Extensions/dotnet/NetworkTime/NetworkTime.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/NetworkTime/NetworkTime.sln -------------------------------------------------------------------------------- /Extensions/dotnet/NetworkTime/NetworkTime/ExtensionSpecificError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/NetworkTime/NetworkTime/ExtensionSpecificError.cs -------------------------------------------------------------------------------- /Extensions/dotnet/NetworkTime/NetworkTime/NetworkTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/NetworkTime/NetworkTime/NetworkTime.cs -------------------------------------------------------------------------------- /Extensions/dotnet/NetworkTime/NetworkTime/NetworkTime.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/NetworkTime/NetworkTime/NetworkTime.csproj -------------------------------------------------------------------------------- /Extensions/dotnet/NetworkTime/NetworkTime/NetworkTime.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/NetworkTime/NetworkTime/NetworkTime.nuspec -------------------------------------------------------------------------------- /Extensions/dotnet/NetworkTime/NetworkTime/config/NetworkTime.Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/NetworkTime/NetworkTime/config/NetworkTime.Config.json -------------------------------------------------------------------------------- /Extensions/dotnet/NetworkTime/NetworkTime/config/NetworkTime.Language.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/NetworkTime/NetworkTime/config/NetworkTime.Language.en.json -------------------------------------------------------------------------------- /Extensions/dotnet/NetworkTime/NetworkTime/config/NetworkTime.Schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/NetworkTime/NetworkTime/config/NetworkTime.Schema.json -------------------------------------------------------------------------------- /Extensions/dotnet/NetworkTime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/NetworkTime/README.md -------------------------------------------------------------------------------- /Extensions/dotnet/ProtectedSymbol/ProtectedSymbol.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ProtectedSymbol/ProtectedSymbol.sln -------------------------------------------------------------------------------- /Extensions/dotnet/ProtectedSymbol/ProtectedSymbol/ProtectedSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ProtectedSymbol/ProtectedSymbol/ProtectedSymbol.cs -------------------------------------------------------------------------------- /Extensions/dotnet/ProtectedSymbol/ProtectedSymbol/ProtectedSymbol.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ProtectedSymbol/ProtectedSymbol/ProtectedSymbol.csproj -------------------------------------------------------------------------------- /Extensions/dotnet/ProtectedSymbol/ProtectedSymbol/ProtectedSymbol.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ProtectedSymbol/ProtectedSymbol/ProtectedSymbol.nuspec -------------------------------------------------------------------------------- /Extensions/dotnet/ProtectedSymbol/ProtectedSymbol/ProtectedSymbolErrorValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ProtectedSymbol/ProtectedSymbol/ProtectedSymbolErrorValue.cs -------------------------------------------------------------------------------- /Extensions/dotnet/ProtectedSymbol/ProtectedSymbol/config/ProtectedSymbol.Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ProtectedSymbol/ProtectedSymbol/config/ProtectedSymbol.Config.json -------------------------------------------------------------------------------- /Extensions/dotnet/ProtectedSymbol/ProtectedSymbol/config/ProtectedSymbol.Language.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ProtectedSymbol/ProtectedSymbol/config/ProtectedSymbol.Language.en.json -------------------------------------------------------------------------------- /Extensions/dotnet/ProtectedSymbol/ProtectedSymbol/config/ProtectedSymbol.Schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ProtectedSymbol/ProtectedSymbol/config/ProtectedSymbol.Schema.json -------------------------------------------------------------------------------- /Extensions/dotnet/ProtectedSymbol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/ProtectedSymbol/README.md -------------------------------------------------------------------------------- /Extensions/dotnet/RandomValue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/RandomValue/README.md -------------------------------------------------------------------------------- /Extensions/dotnet/RandomValue/RandomValue.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/RandomValue/RandomValue.sln -------------------------------------------------------------------------------- /Extensions/dotnet/RandomValue/RandomValue/CSharpRandomValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/RandomValue/RandomValue/CSharpRandomValue.cs -------------------------------------------------------------------------------- /Extensions/dotnet/RandomValue/RandomValue/CSharpRandomValue.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/RandomValue/RandomValue/CSharpRandomValue.csproj -------------------------------------------------------------------------------- /Extensions/dotnet/RandomValue/RandomValue/CSharpRandomValue.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/RandomValue/RandomValue/CSharpRandomValue.nuspec -------------------------------------------------------------------------------- /Extensions/dotnet/RandomValue/RandomValue/ExtensionSpecificError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/RandomValue/RandomValue/ExtensionSpecificError.cs -------------------------------------------------------------------------------- /Extensions/dotnet/RandomValue/RandomValue/config/CSharpRandomValue.Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/RandomValue/RandomValue/config/CSharpRandomValue.Config.json -------------------------------------------------------------------------------- /Extensions/dotnet/RandomValue/RandomValue/config/CSharpRandomValue.Language.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/RandomValue/RandomValue/config/CSharpRandomValue.Language.en.json -------------------------------------------------------------------------------- /Extensions/dotnet/RandomValue/RandomValue/config/CSharpRandomValue.Schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/RandomValue/RandomValue/config/CSharpRandomValue.Schema.json -------------------------------------------------------------------------------- /Extensions/dotnet/StartProcessFromService/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StartProcessFromService/README.md -------------------------------------------------------------------------------- /Extensions/dotnet/StartProcessFromService/StartProcessFromService.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StartProcessFromService/StartProcessFromService.sln -------------------------------------------------------------------------------- /Extensions/dotnet/StartProcessFromService/StartProcessFromService/ExtensionSpecificError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StartProcessFromService/StartProcessFromService/ExtensionSpecificError.cs -------------------------------------------------------------------------------- /Extensions/dotnet/StartProcessFromService/StartProcessFromService/StartProcessFromService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StartProcessFromService/StartProcessFromService/StartProcessFromService.cs -------------------------------------------------------------------------------- /Extensions/dotnet/StartProcessFromService/StartProcessFromService/StartProcessFromService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StartProcessFromService/StartProcessFromService/StartProcessFromService.csproj -------------------------------------------------------------------------------- /Extensions/dotnet/StartProcessFromService/StartProcessFromService/StartProcessFromService.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StartProcessFromService/StartProcessFromService/StartProcessFromService.nuspec -------------------------------------------------------------------------------- /Extensions/dotnet/StartProcessFromService/StartProcessFromService/WindowsProcesses/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StartProcessFromService/StartProcessFromService/WindowsProcesses/NativeMethods.cs -------------------------------------------------------------------------------- /Extensions/dotnet/StartProcessFromService/StartProcessFromService/WindowsProcesses/NativeTypes/PROCESS_CREATION_FLAGS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StartProcessFromService/StartProcessFromService/WindowsProcesses/NativeTypes/PROCESS_CREATION_FLAGS.cs -------------------------------------------------------------------------------- /Extensions/dotnet/StartProcessFromService/StartProcessFromService/WindowsProcesses/NativeTypes/PROCESS_INFORMATION.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StartProcessFromService/StartProcessFromService/WindowsProcesses/NativeTypes/PROCESS_INFORMATION.cs -------------------------------------------------------------------------------- /Extensions/dotnet/StartProcessFromService/StartProcessFromService/WindowsProcesses/NativeTypes/SHOW_WINDOW.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StartProcessFromService/StartProcessFromService/WindowsProcesses/NativeTypes/SHOW_WINDOW.cs -------------------------------------------------------------------------------- /Extensions/dotnet/StartProcessFromService/StartProcessFromService/WindowsProcesses/NativeTypes/STARTUPINFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StartProcessFromService/StartProcessFromService/WindowsProcesses/NativeTypes/STARTUPINFO.cs -------------------------------------------------------------------------------- /Extensions/dotnet/StartProcessFromService/StartProcessFromService/WindowsProcesses/NativeTypes/START_FLAGS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StartProcessFromService/StartProcessFromService/WindowsProcesses/NativeTypes/START_FLAGS.cs -------------------------------------------------------------------------------- /Extensions/dotnet/StartProcessFromService/StartProcessFromService/WindowsProcesses/NativeTypes/WTS_CONNECTSTATE_CLASS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StartProcessFromService/StartProcessFromService/WindowsProcesses/NativeTypes/WTS_CONNECTSTATE_CLASS.cs -------------------------------------------------------------------------------- /Extensions/dotnet/StartProcessFromService/StartProcessFromService/WindowsProcesses/NativeTypes/WTS_SESSION_INFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StartProcessFromService/StartProcessFromService/WindowsProcesses/NativeTypes/WTS_SESSION_INFO.cs -------------------------------------------------------------------------------- /Extensions/dotnet/StartProcessFromService/StartProcessFromService/WindowsProcesses/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StartProcessFromService/StartProcessFromService/WindowsProcesses/User.cs -------------------------------------------------------------------------------- /Extensions/dotnet/StartProcessFromService/StartProcessFromService/WindowsProcesses/UserEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StartProcessFromService/StartProcessFromService/WindowsProcesses/UserEnvironment.cs -------------------------------------------------------------------------------- /Extensions/dotnet/StartProcessFromService/StartProcessFromService/WindowsProcesses/UserProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StartProcessFromService/StartProcessFromService/WindowsProcesses/UserProcess.cs -------------------------------------------------------------------------------- /Extensions/dotnet/StartProcessFromService/StartProcessFromService/WindowsProcesses/UserSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StartProcessFromService/StartProcessFromService/WindowsProcesses/UserSession.cs -------------------------------------------------------------------------------- /Extensions/dotnet/StartProcessFromService/StartProcessFromService/config/StartProcessFromService.Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StartProcessFromService/StartProcessFromService/config/StartProcessFromService.Config.json -------------------------------------------------------------------------------- /Extensions/dotnet/StartProcessFromService/StartProcessFromService/config/StartProcessFromService.Language.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StartProcessFromService/StartProcessFromService/config/StartProcessFromService.Language.en.json -------------------------------------------------------------------------------- /Extensions/dotnet/StartProcessFromService/StartProcessFromService/config/StartProcessFromService.Schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StartProcessFromService/StartProcessFromService/config/StartProcessFromService.Schema.json -------------------------------------------------------------------------------- /Extensions/dotnet/StaticSymbols/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StaticSymbols/README.md -------------------------------------------------------------------------------- /Extensions/dotnet/StaticSymbols/StaticSymbols.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StaticSymbols/StaticSymbols.sln -------------------------------------------------------------------------------- /Extensions/dotnet/StaticSymbols/StaticSymbols/ExtensionSpecificError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StaticSymbols/StaticSymbols/ExtensionSpecificError.cs -------------------------------------------------------------------------------- /Extensions/dotnet/StaticSymbols/StaticSymbols/Machines/Furnace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StaticSymbols/StaticSymbols/Machines/Furnace.cs -------------------------------------------------------------------------------- /Extensions/dotnet/StaticSymbols/StaticSymbols/Machines/Machine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StaticSymbols/StaticSymbols/Machines/Machine.cs -------------------------------------------------------------------------------- /Extensions/dotnet/StaticSymbols/StaticSymbols/Machines/MachineState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StaticSymbols/StaticSymbols/Machines/MachineState.cs -------------------------------------------------------------------------------- /Extensions/dotnet/StaticSymbols/StaticSymbols/Machines/Press.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StaticSymbols/StaticSymbols/Machines/Press.cs -------------------------------------------------------------------------------- /Extensions/dotnet/StaticSymbols/StaticSymbols/Machines/Saw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StaticSymbols/StaticSymbols/Machines/Saw.cs -------------------------------------------------------------------------------- /Extensions/dotnet/StaticSymbols/StaticSymbols/StaticSymbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StaticSymbols/StaticSymbols/StaticSymbols.cs -------------------------------------------------------------------------------- /Extensions/dotnet/StaticSymbols/StaticSymbols/StaticSymbols.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StaticSymbols/StaticSymbols/StaticSymbols.csproj -------------------------------------------------------------------------------- /Extensions/dotnet/StaticSymbols/StaticSymbols/StaticSymbols.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StaticSymbols/StaticSymbols/StaticSymbols.nuspec -------------------------------------------------------------------------------- /Extensions/dotnet/StaticSymbols/StaticSymbols/config/StaticSymbols.Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StaticSymbols/StaticSymbols/config/StaticSymbols.Config.json -------------------------------------------------------------------------------- /Extensions/dotnet/StaticSymbols/StaticSymbols/config/StaticSymbols.Language.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StaticSymbols/StaticSymbols/config/StaticSymbols.Language.en.json -------------------------------------------------------------------------------- /Extensions/dotnet/StaticSymbols/StaticSymbols/config/StaticSymbols.Schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/StaticSymbols/StaticSymbols/config/StaticSymbols.Schema.json -------------------------------------------------------------------------------- /Extensions/dotnet/cleanupcode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/cleanupcode.sh -------------------------------------------------------------------------------- /Extensions/dotnet/inspectcode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/inspectcode.sh -------------------------------------------------------------------------------- /Extensions/dotnet/installresharper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/dotnet/installresharper.sh -------------------------------------------------------------------------------- /Extensions/python/RandomValue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/python/RandomValue/README.md -------------------------------------------------------------------------------- /Extensions/python/RandomValue/RandomValue.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/python/RandomValue/RandomValue.sln -------------------------------------------------------------------------------- /Extensions/python/RandomValue/RandomValue/Images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/python/RandomValue/RandomValue/Images/logo.png -------------------------------------------------------------------------------- /Extensions/python/RandomValue/RandomValue/PythonRandomValue.Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/python/RandomValue/RandomValue/PythonRandomValue.Config.json -------------------------------------------------------------------------------- /Extensions/python/RandomValue/RandomValue/PythonRandomValue.Language.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/python/RandomValue/RandomValue/PythonRandomValue.Language.en.json -------------------------------------------------------------------------------- /Extensions/python/RandomValue/RandomValue/PythonRandomValue.Schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/python/RandomValue/RandomValue/PythonRandomValue.Schema.json -------------------------------------------------------------------------------- /Extensions/python/RandomValue/RandomValue/PythonRandomValue.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/python/RandomValue/RandomValue/PythonRandomValue.pyproj -------------------------------------------------------------------------------- /Extensions/python/RandomValue/RandomValue/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/python/RandomValue/RandomValue/main.py -------------------------------------------------------------------------------- /Extensions/python/RandomValue/RandomValue/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/python/RandomValue/RandomValue/requirements.txt -------------------------------------------------------------------------------- /Extensions/python/WeatherData/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/python/WeatherData/README.md -------------------------------------------------------------------------------- /Extensions/python/WeatherData/WeatherData.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/python/WeatherData/WeatherData.sln -------------------------------------------------------------------------------- /Extensions/python/WeatherData/WeatherData/Images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/python/WeatherData/WeatherData/Images/logo.png -------------------------------------------------------------------------------- /Extensions/python/WeatherData/WeatherData/WeatherData.Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/python/WeatherData/WeatherData/WeatherData.Config.json -------------------------------------------------------------------------------- /Extensions/python/WeatherData/WeatherData/WeatherData.Language.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/python/WeatherData/WeatherData/WeatherData.Language.en.json -------------------------------------------------------------------------------- /Extensions/python/WeatherData/WeatherData/WeatherData.Schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/python/WeatherData/WeatherData/WeatherData.Schema.json -------------------------------------------------------------------------------- /Extensions/python/WeatherData/WeatherData/WeatherData.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/python/WeatherData/WeatherData/WeatherData.pyproj -------------------------------------------------------------------------------- /Extensions/python/WeatherData/WeatherData/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/python/WeatherData/WeatherData/main.py -------------------------------------------------------------------------------- /Extensions/python/WeatherData/WeatherData/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Extensions/python/WeatherData/WeatherData/requirements.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/README.md -------------------------------------------------------------------------------- /Snippets/dotnet/DebuggingInit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Snippets/dotnet/DebuggingInit.md -------------------------------------------------------------------------------- /Snippets/dotnet/InterExtensionSubscription.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/Snippets/dotnet/InterExtensionSubscription.md -------------------------------------------------------------------------------- /resources/FirstSteps-ActivateExtension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/resources/FirstSteps-ActivateExtension.png -------------------------------------------------------------------------------- /resources/FirstSteps-AddReference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/resources/FirstSteps-AddReference.png -------------------------------------------------------------------------------- /resources/FirstSteps-AttachDebugger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/resources/FirstSteps-AttachDebugger.png -------------------------------------------------------------------------------- /resources/FirstSteps-AttachToExtension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/resources/FirstSteps-AttachToExtension.png -------------------------------------------------------------------------------- /resources/FirstSteps-BuildProject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/resources/FirstSteps-BuildProject.png -------------------------------------------------------------------------------- /resources/FirstSteps-CheckExtensionStatus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/resources/FirstSteps-CheckExtensionStatus.png -------------------------------------------------------------------------------- /resources/FirstSteps-ConfigurationPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/resources/FirstSteps-ConfigurationPage.png -------------------------------------------------------------------------------- /resources/FirstSteps-ConfigurationPageBrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/resources/FirstSteps-ConfigurationPageBrowser.png -------------------------------------------------------------------------------- /resources/FirstSteps-ConfigurationPageSysTray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/resources/FirstSteps-ConfigurationPageSysTray.png -------------------------------------------------------------------------------- /resources/FirstSteps-CreateDataBinding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/resources/FirstSteps-CreateDataBinding.png -------------------------------------------------------------------------------- /resources/FirstSteps-SysTray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/resources/FirstSteps-SysTray.png -------------------------------------------------------------------------------- /resources/InteractingWithServerExtensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/resources/InteractingWithServerExtensions.md -------------------------------------------------------------------------------- /resources/WorkingWithServerExtensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beckhoff/TF2000_Server_Samples/HEAD/resources/WorkingWithServerExtensions.md --------------------------------------------------------------------------------