Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
bc7a14a
Upgrade .Net Core 3 SDK from preview5 to preview6 and keep NuGet pack…
bergmeister Jun 13, 2019
0cecfe2
Fix namespace ambiguity between 'System.Management.Automation.AllowNu…
bergmeister Jun 13, 2019
5fbd549
Fix MSI installer by adding the new DLLs
bergmeister Jun 13, 2019
3b79c82
Revert accidental change in SMA for NonBlockingRead
bergmeister Jun 14, 2019
0c46bfa
Fix Startup.Tests.ps1 expectations to expect System.Security.Cryptogr…
bergmeister Jun 14, 2019
4449e78
Merge branch 'master' of https://github.com/PowerShell/PowerShell int…
bergmeister Jun 17, 2019
2b8add4
Upgrade all NuGet packages except for System.ServiceProcess.ServiceCo…
bergmeister Jun 16, 2019
d68ac15
Update web listener package as well
bergmeister Jun 16, 2019
4f99ea6
Update references in NuGet packages as well to reflect changes
bergmeister Jun 16, 2019
b518c73
Update System.ServiceProcess.ServiceController and Microsoft.Windows.…
bergmeister Jun 17, 2019
5735ed1
Merge branch 'master' of https://github.com/PowerShell/PowerShell int…
bergmeister Jun 22, 2019
60da779
Merge branch 'master' of https://github.com/PowerShell/PowerShell int…
bergmeister Jul 1, 2019
e244175
Merge branch 'master' of https://github.com/PowerShell/PowerShell int…
bergmeister Jul 2, 2019
c86f14a
Revert "Update System.ServiceProcess.ServiceController and Microsoft.…
bergmeister Jul 2, 2019
fd7e52a
Fix installer by removing redundant System.Data.OleDb.dll entry
bergmeister Jul 2, 2019
3c764ee
Remove SuppressMessage attributes to make calls to AllowNullAttribute…
bergmeister Jul 5, 2019
866e27e
Merge branch 'master' of https://github.com/PowerShell/PowerShell int…
bergmeister Jul 5, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Upgrade .Net Core 3 SDK from preview5 to preview6 and keep NuGet pack…
…age Microsoft.AspNetCore.Mvc.NewtonsoftJson used for testing in sync with it
  • Loading branch information
bergmeister committed Jun 13, 2019
commit bc7a14a7a5bd64de4b8a7b15710a412a92c82e44
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": "3.0.100-preview5-011568"
"version": "3.0.100-preview6-012264"
}
}
2 changes: 1 addition & 1 deletion test/tools/WebListener/WebListener.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.0.0-preview5-19227-01" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.0.0-preview6.19307.2" />
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we should update all packages to latest versions. (As soon as we can compile the PR and pass tests.)

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Which other packages? This is the only package that I was aware of that is tightly coupled to the runtime

Copy link
Copy Markdown
Collaborator

@iSazonov iSazonov Jun 14, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All. Packages we use come from .Net Core 2.*. We need to update to latest preview 3.0.
See #9780

Copy link
Copy Markdown
Contributor Author

@bergmeister bergmeister Jun 15, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK, thanks for the reference, I updated all those NuGet packages in a 2nd branch and ran the CI tests and there were only 2 failures on Windows only, if you want I could add this update to this PR (especially since the packages are preview6 specific)?
https://christophbergmeister.visualstudio.com/PowerShell/_build/results?buildId=896&view=ms.vss-test-web.build-test-results-tab

Copy link
Copy Markdown
Collaborator

@iSazonov iSazonov Jun 15, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I propose to update step by step (package by package) in the PR. I hope we get this in Preview2 before Core RC.

Copy link
Copy Markdown
Contributor Author

@bergmeister bergmeister Jun 16, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@iSazonov I found the culprit that contains the breaking change that causes the 2 test failures:
System.ServiceProcess.ServiceController. Therefore we can probably update all NuGet packages except this one and Microsoft.Windows.Compatibility (because it depends on System.ServiceProcess.ServiceController). I am running builds at the moment in my fork to prove this theory. Should I also update the packages in tools\packages\.... (that I think are used to create the NuGet packages for SMA, etc.)? Should the update of possible NuGet packages be in this PR or in a follow up PR (that I'd base it on this PR?)?

<PackageReference Include="System.Text.Encoding.CodePages" Version="4.5.1" />
</ItemGroup>

Expand Down