Log Framework name to more Windows ML relevant events (#27256)
This PR adds the frameworkName field to critical Windows ML telemetry
events to ensure proper event attribution and prevent data loss.
## Reason
The frameworkName field is added to ensure that Windows ML events are
not lost and do not require joins with events that might have been
emitted outside the scope of the time span the processing scripts check
for long-running apps/processes. This allows each event to be
self-contained with framework identification.
## Events Modified
The following telemetry events now include the frameworkName field:
1. **SessionCreationStart** - Logs when session creation begins
2. **SessionCreation** - Logs session creation details including model
metadata
3. **RuntimeError** - Logs runtime errors (both DEBUG and release
builds)
4. **RuntimePerf** - Logs runtime performance metrics including total
runs and duration
5. **AutoEpSelection** - Logs automatic execution provider selection
policy and results
6. **ProviderOptions** - Logs execution provider configuration options
All events now include TraceLoggingString(ORT_CALLER_FRAMEWORK,
"frameworkName") to maintain consistent framework identification across
the telemetry pipeline.
---------
Co-authored-by: Angela Serrano Brummett <angelser@microsoft.com>