You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- WPF causes an error with SourceLink because its build targets create a temporary project without a PackageReference to SourceLink, see https://github.com/dotnet/sourcelink/issues/91,
54
+
causing the @SourceRoot property to be unexpectedly empty for the MapSourceRoot task
55
+
56
+
For context, see https://github.com/dotnet/roslyn/blob/main/src/Compilers/Core/MSBuildTask/Microsoft.Managed.Core.targets
57
+
and https://github.com/dotnet/roslyn/blob/main/src/Compilers/Core/MSBuildTask/MapSourceRoots.cs
58
+
59
+
This workaround sets the SourceRoot manually to some deterministic value to keep the promise given by having DeterministicSourcePaths set to true -->
60
+
<MessageText="using deterministic source path workaround for WPF project instead of SourceLink" />
61
+
<ItemGroup>
62
+
<!-- There needs to be at least one SourceRoot defined, its value does not seem to matter as long as it ends with a directory separator -->
/// Configures the event bus to use a custom background service for processing events.
12
+
/// </summary>
13
+
/// <typeparam name="TQueueBackgroundService">The type of the background service to use. This type must implement <see cref="IHostedService"/>.</typeparam>
14
+
/// <returns>The current instance of <see cref="EventBusBuilder"/>.</returns>
0 commit comments