Skip to content

Commit 62fea04

Browse files
authored
Fix broken build in Rider (#8195)
## Summary of changes Fix Datadog.Trace.csproj not loading in Rider ## Reason for change Rider fails to load Datadog.Trace.csproj due to the use of new lines in a property ## Implementation details Remove the new lines ## Test coverage It works, Rider can now load it
1 parent 82eaa0f commit 62fea04

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

tracer/src/Datadog.Trace/Datadog.Trace.csproj

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,7 @@
102102
<!-- we don't need the vendored .NET runtime code when targetting .NET Core 3.1+ -->
103103
<!-- but keep Vendors/System.Reflection.Metadata/** for now because we use it to access internal members -->
104104
<PropertyGroup>
105-
<DotNetRuntimeFiles>
106-
Vendors/System.Collections.Immutable/**;
107-
Vendors/System.Memory/**;
108-
Vendors/System.Runtime.CompilerServices.Unsafe/**;
109-
</DotNetRuntimeFiles>
105+
<DotNetRuntimeFiles>Vendors/System.Collections.Immutable/**;Vendors/System.Memory/**;Vendors/System.Runtime.CompilerServices.Unsafe/**</DotNetRuntimeFiles>
110106
</PropertyGroup>
111107

112108
<ItemGroup Condition="$([MSBuild]::IsTargetFrameworkCompatible($(TargetFramework), 'netcoreapp3.1'))">

0 commit comments

Comments
 (0)