Project System: AvailableItemName support
See original GitHub issuecsproj/msvbproj supports <AvailableItemName>
to allow adding to the choice of Build Actions. We should enable them to be dynamically added (such as via a NuGet package) and the project should be able to pick them up without a reload.
Update: Make sure we keep C++ in the loop, while the feature will automatically work for them in non-cached mode, their cached mode will need to be updated to handle it.
Issue Analytics
- State:
- Created 7 years ago
- Reactions:4
- Comments:13 (8 by maintainers)
Top Results From Across the Web
Visual Studio Integration (MSBuild)
Learn how Visual Studio can host projects in MSBuild format, even if they were authored by different tools and had customized build ...
Read more >Items with custom action are not shown in solution explorer
You need declare the item type, so the project system will show them. <ItemGroup> <AvailableItemName Include="Webpack" /> <ItemGroup>.
Read more >Using A Custom Toolchain In Visual Studio With MSBuild
This post is a how-to for adding support for a custom toolchain—such as dxc , or any other command-line-invokable tool—to a Visual Studio ......
Read more >c# - How to add custom compiled file (in Target/Exec) as ...
I'm doing a few shadereffects in a wpf_c# project and i don't know and i didn't find how to add the bytecode pixelshader...
Read more >[BUG] Path's format is not supported
Actually I got MG 3.7.0.752 and I have problem during build of Android project: C:\Program Files (x86)\MSBuild\MonoGame\v3.0\MonoGame.Content.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
📝 When implementing this feature, the following should be verified:
AvailableItemName
should not be also added asNone
AvailableItemName
should show up in Solution ExplorerChanges to enable AvailableItemName support in CPS are in progress (Internal PR). An additional PR will be created to finalize support in this repo once that is complete.