-
Notifications
You must be signed in to change notification settings - Fork 20
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
Update packages & fix package issues #230
Conversation
src/xluhco.web/xluhco.web.csproj
Outdated
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.12.0" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Authentication" Version="2.2.0" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Authentication.AzureAD.UI" Version="3.1.0" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Authentication.MicrosoftAccount" Version="3.1.0" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Authentication.AzureAD.UI" Version="3.1.1" /> |
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.
This appears to be the issue. Independent of other package updates, taking this to v3.1.1
causes a 500 error:
System.IO.FileNotFoundException
HResult=0x80070002
Message=Could not load file or assembly 'Microsoft.AspNetCore.Razor.Runtime, Version=3.1.1.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified.
Source=<Cannot evaluate the exception source>
StackTrace:
<Cannot evaluate the exception stack trace>
FYI issues with this package are being tracked at dotnet/aspnetcore#18334, per MS thread on my opened issue. |
Since the referenced MS issue was closed and generally referred to an issue with v3.1.1 packages, I'm going to hold off on those for now and tell Dependabot to skip them. |
This attempts to recreate what failed on the dependabot merge and see if I can isolate/fix the problem.