-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: AvaloniaVS Intellisense #14397
fix: AvaloniaVS Intellisense #14397
Conversation
You can test this PR using the following package version. |
It makes me think, why wouldn't we use "deps" file? That's exactly what previewer uses as well. @Takoooooo @kekekeks |
$(IntermediateOutputPath)/Avalonia/references is using from AvaloniaVS for retrive library refernces. | ||
This target generate $(IntermediateOutputPath)/Avalonia/references for in XApp Template. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Several spelling/grammar issues here. I know these are very hard to see for non-English speakers :) Perhaps you can enable a spell check plug-in though for English projects? LLM AI's are good at this now too.
$(IntermediateOutputPath)/Avalonia/references is used by AvaloniaVS to retrieve library references.
This target generates $(IntermediateOutputPath)/Avalonia/references for use in XApp Template.
I should add I have no idea what "XApp Template" means.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry. I'm dysgrammatical and sometimes I miss something.
XApp Template
-> Cross App platform Template
There are two projects Template see this.
One (app
) has a single project entry point, the other (xplat
) has an entry point for each platform.
You can test this PR using the following package version. |
You can test this PR using the following package version. |
You can test this PR using the following package version. |
* fix: AvaloniaVS Intellisense * fix: Address review
What does the pull request do?
Restore intellisense with AvloniaVS
What is the current behavior?
What is the updated/expected behavior with this PR?
How was the solution implemented (if it's not obvious)?
In PR AvaloniaUI/AvaloniaVS#413 use
$(IntermediateOutputPath)/Avalonia/references
inteandassemblyname.dll.deps.json
, but it does not generate if the project has not any .xaml like XApp target project.Checklist
Breaking changes
Obsoletions / Deprecations
Fixed issues
Fixes AvaloniaUI/AvaloniaVS#443