-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Use Framework SourceType for WASM pass-through assets in multi-client solutions #125329
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
base: main
Are you sure you want to change the base?
Changes from all commits
1c6e5b6
91040a0
2965259
fa33973
69c5452
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -27,6 +27,16 @@ public class ConvertDllsToWebcil : Task | |||||||||||||||
| [Output] | ||||||||||||||||
| public ITaskItem[] WebcilCandidates { get; set; } | ||||||||||||||||
|
|
||||||||||||||||
| /// <summary> | ||||||||||||||||
| /// Non-DLL files from shared locations (runtime pack, NuGet cache) that were not | ||||||||||||||||
| /// converted to webcil. These are candidates for Framework SourceType materialization. | ||||||||||||||||
| /// When IsEnabled is false, all candidates (DLL and non-DLL) appear here. | ||||||||||||||||
| /// Items with WasmNativeBuildOutput metadata (per-project native build outputs) | ||||||||||||||||
| /// are excluded — they're already unique per project. | ||||||||||||||||
|
Comment on lines
+33
to
+35
|
||||||||||||||||
| /// When IsEnabled is false, all candidates (DLL and non-DLL) appear here. | |
| /// Items with WasmNativeBuildOutput metadata (per-project native build outputs) | |
| /// are excluded — they're already unique per project. | |
| /// When <see cref="IsEnabled"/> is true, items with WasmNativeBuildOutput metadata | |
| /// (per-project native build outputs) are excluded — they're already unique per project. | |
| /// When <see cref="IsEnabled"/> is false, all candidates (DLL and non-DLL), including | |
| /// those with WasmNativeBuildOutput metadata, appear here with no additional filtering. |
Uh oh!
There was an error while loading. Please reload this page.