-
Notifications
You must be signed in to change notification settings - Fork 10.2k
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
[main] Update dependencies from dotnet/efcore dotnet/runtime #34033
Changes from 42 commits
ef1a0e5
42412d4
bf18ea4
2533e93
1b37f79
6fbf14b
8f99347
a2ec9d6
81fdc44
c2344ed
a54fe68
91b5158
db9d09f
2df9266
ce1c062
5d6e21e
fd25b6b
7148dcb
6f08d04
8731131
56977cd
9a90983
ed196cb
bcfb3e1
6f72cf7
d92ac8f
72b736c
2d1ca9b
0b06bf5
544458f
ff4cd8d
1f32895
b782842
9d60f25
cce1bd7
cde8ba4
a355d6b
1f88826
1c9a52e
6bdb3ac
1ca4eaa
2136f31
62fbc87
1714f50
d7fe599
f5cecb2
f201b29
00a8f1f
a94dde5
942e2c6
0079eee
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,4 +59,12 @@ | |
<RazorReferencePath Include="@(ReferencePathWithRefAssemblies)" /> | ||
</ItemGroup> | ||
</Target> | ||
|
||
<!-- Work around https://github.com/dotnet/aspnetcore/issues/34048 --> | ||
<Target Name="_RemoveDuplicateLoggingSourceGenerator" AfterTargets="ResolvePackageAssets" Condition="'$(TargetFramework)' == '$(DefaultNetCoreTargetFramework)'"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @dougbu I did a random workaround because I couldn't get There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This looks about right b/c Logging.Abstractions is referenced transitively so often. But, I'd like to hear from @ericstj why the offending assembly is duplicated between Logging.Abstractions and our transport package. |
||
<ItemGroup> | ||
<ResolvedAnalyzers Remove="@(ResolvedAnalyzers)" Condition="'%(ResolvedAnalyzers.NuGetPackageId)' == 'Microsoft.Extensions.Logging.Abstractions'" /> | ||
<ResolvedAnalyzers Remove="@(ResolvedAnalyzers)" Condition="'%(ResolvedAnalyzers.NuGetPackageId)' == 'System.Text.Json'" /> | ||
</ItemGroup> | ||
</Target> | ||
</Project> |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,6 @@ | |
|
||
<ItemGroup> | ||
<Reference Include="Microsoft.AspNetCore.Http.Abstractions" /> | ||
<Reference Include="Microsoft.Extensions.Logging.Abstractions" /> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This references are brought in from the transport package. Having / removing it does nothing, but it seemed unnecessary. |
||
<Reference Include="Microsoft.Extensions.Options" /> | ||
</ItemGroup> | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Assuming something else fails and we we need another build, we should probably revert this as its not needed now that we don't build the template tests on helix, so its one less thing to remember to undo in the future
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just did this.