Draft
Conversation
- Updated AXSharp.config.json in timers/ctrl to include "UiHostProject": null. - Updated AXSharp.config.json in traversals/apax to include "UiHostProject": null. - Updated AXSharp.config.json in utils/ctrl to include "UiHostProject": null.
TomKovac
reviewed
Apr 2, 2026
Collaborator
There was a problem hiding this comment.
Seems that component4 and 5 from the removed test app are missing .
TomKovac
reviewed
Apr 2, 2026
Collaborator
There was a problem hiding this comment.
seems that component 3 is missing
TomKovac
reviewed
Apr 2, 2026
Collaborator
There was a problem hiding this comment.
seems that component 3 and 4 are missing
TomKovac
reviewed
Apr 2, 2026
Changed PLC to 1815 V41 with NTP
TomKovac
reviewed
Apr 2, 2026
Collaborator
TomKovac
left a comment
There was a problem hiding this comment.
It seems that some components are missing in library\docs\Component_3-5 especially in Cognex lib and some others. Not sure if it is on purpose as in showcase app there are present.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR consolidates 31 separate showcase/testing applications — previously scattered across individual library component directories — into a single, unified showcase application at
src/showcase/app. This eliminates massive duplication of boilerplate (hardware config, Blazor scaffolding, build artifacts), simplifies the build pipeline, and provides a centralized place for documentation, integration testing, and live feature demonstration.The unified showcase app includes both the PLC-side Structured Text code and a Blazor Server UI with 43+ documentation pages covering every component and core feature in AXOpen.
Motivation
app/folder with near-identical scaffolding: hardware config, Blazor host, security setup, data repositories, and build configuration. This resulted in ~1.5M lines of redundant generated/boilerplate code.What Changed
1. Removed Individual App Folders (31 directories, ~1,511 files deleted)
The following library
app/directories were completely removed:src/abstractions/app/,src/core/app/,src/data/app/,src/inspectors/app/,src/io/app/,src/probers/app/,src/timers/app/,src/utils/app/,src/integrations/app/,src/simatic1500/app/src/components.drives/app/,src/components.festo.drives/app/,src/components.rexroth.drives/app/src/components.robotics/app/,src/components.abb.robotics/app/,src/components.kuka.robotics/app/,src/components.mitsubishi.robotics/app/,src/components.ur.robotics/app/src/components.cognex.vision/app/,src/components.keyence.vision/app/,src/components.zebra.vision/app/src/components.desoutter.tightening/app/,src/components.rexroth.tightening/app/src/components.elements/app/,src/components.pneumatics/app/,src/components.rexroth.press/app/,src/components.dukane.welders/app/,src/components.balluff.identification/app/,src/components.siem.communication/app/,src/components.siem.identification/app/,src/components.abstractions/app/src/template.axolibrary/app/2. New Unified Showcase App (
src/showcase/app/)PLC Application (
src/)Blazor UI (
ix-blazor/showcase.blazor/)Key features of the Blazor UI:
CodeSnippetProviderloads real source code from.stand.csfiles, supporting line-range extraction and automatic language detectionAxoDataExchange,AxoDataFragmentExchange,AxoDataPersistentExchange,AxoDataDistributed3. Solution File Updates
src/AXOpen.slnshowcase(PLC) andshowcase.blazor(UI) projects; addedAXOpen.Data.Distributed.Tests_L4src/AXOpen.solution.slnsrc/AXOpen-L1-tests.slnsrc/AXOpen-L3-tests.slnsrc/showcase/showcase.slnsrc/showcase/app/showcase.blazor.sln4. Build Pipeline Updates (
cake/)cake/BuildContext.cs:HasAppflag for all 32 library configurations (e.g.,("core", "axopen.core", true, true, true)→("core", "axopen.core", true, false, true))GetControllerAxFolders(),GetApplicationAxFolders(), andGetApaxYmlFiles()cake/Program.cs:app/directoriesappandaxto onlyax5. Documentation Updates (60+ files)
../app/...to../../showcase/app/...README.md:Entry.Plc.AxoRemoteTasks→Entry.Plc.Ctx.AxoRemoteTasks6. Configuration Changes
Directory.Packages.props:Markdigv0.40.0 — Markdown parsing library used byCodeSnippetProviderfor documentation rendering in the Blazor UICommit History
f98a9b1e1b95939d9ba783a1c25ac2aa–23ee8c14cb3f2313–cad9b22771babcbd–e87e844e30589962–9d200f161424d2f7ea4eabf9863b263cArchitecture Diagram
Testing Considerations
apax buildsucceeds forsrc/showcase/appCodeSnippetProviderresolves source files from the correct pathsapp/paths in solution or project filesBreaking Changes
src/<component>/app/paths will need to be updated to usesrc/showcase/app/instead.HasAppflag is nowfalsefor all library components inBuildContext.cs. The build no longer looks for or processes individual app folders.Risk Assessment
axsharp.companion.json