build(indicators): align Indicators.csproj with current Cross/Windows build structure#155
Open
AlbertoAmadorBelchistim wants to merge 1 commit intoAtasPlatform:Developfrom
Conversation
… build structure. Updates the local-build project (Indicators.csproj) to better reflect the current build structure used by Indicators.Technical.csproj. Key changes: - Introduce platform-based split between Windows and Cross builds: - Windows → net10.0-windows with WPF enabled - Cross → net10.0 with CROSS_PLATFORM constant - Normalize assembly references using a platform-specific base path (ATAS installation vs ATAS X installation). - Add Avalonia references for Cross builds so that Avalonia.Input types used in GlobalUsings.cs resolve correctly. - Update System.Drawing.Common to 10.0.0 since three indicators still reference types such as Image and DashStyle (ExternalChart, Logo, TradesOnChart). - Ensure platform-specific source files are excluded appropriately: - *.Windows.cs and XAML files excluded from Cross builds The goal of this change is to keep Indicators.csproj usable for local external builds while aligning it with the Cross/Windows split already present in the technical project, without introducing internal GitLab project references.
ce86216 to
aad31c1
Compare
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.
Updates the local-build project (Indicators.csproj) to better reflect the current build structure used by Indicators.Technical.csproj.
Key changes:
The goal is to keep Indicators.csproj usable for local external builds while aligning it with the Cross/Windows split already present in the technical project, without introducing internal GitLab project references.