-
Couldn't load subscription status.
- Fork 56
Allow NetCore packages to depend on Newtonsoft.Json 9 #47
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
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
4b8a840
Downgrading package versions
markcowl 622afd4
More adjustments
markcowl 9795ad7
Updating autnentication library
markcowl 3457952
Omit newtonsoft.json from storage manageemnt package
markcowl 70931de
Simplify dependencies to use newtonsoft 9 and 10
markcowl f5a5cbd
Updating for Hyak with Newtonsoft.Json 9 dependency
markcowl 4da1b71
Allow signing netcoreapp2.1 builds
markcowl 4b23ecd
Merging with upstream changes
markcowl 8bec4b1
Update exception for newtonsoft issue
markcowl 9dd8d77
Changing newtonsoft dependency for authentication package
markcowl bdb31ad
Back to 9
markcowl 43b75bc
Updating test framework dependencies
markcowl 07b3584
Merging with upstream
markcowl 853a47c
Removing test changes and fixing formatting
markcowl 994d8cf
Merge pull request #46 from markcowl/nsoft9
markcowl ee0c338
Merge branch 'develop' into nsoft9
markcowl 4b2022e
Updating net framework dependencies
markcowl 682ba08
Merge branch 'nsoft9' of github.com:azure/azure-powershell-common int…
markcowl 94efd21
Merge pull request #49 from markcowl/nsoft9
markcowl 1957f7e
Merge branch 'develop' into nsoft9
markcowl b1d8610
Merge branch 'develop' into nsoft9
markcowl c429c51
Respond to review comments
markcowl 4085778
Fix property tag
markcowl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+81.9 KB
local-packages/Microsoft.Azure.Test.HttpRecorder.1.14.0.symbols.nupkg
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-47.4 KB
local-packages/Microsoft.Azure.Test.HttpRecorder.1.9.0.symbols.nupkg
Binary file not shown.
Binary file added
BIN
+79.3 KB
local-packages/Microsoft.Rest.ClientRuntime.Azure.TestFramework.1.8.0.nupkg
Binary file not shown.
Binary file added
BIN
+95.8 KB
local-packages/Microsoft.Rest.ClientRuntime.Azure.TestFramework.1.8.0.symbols.nupkg
Binary file not shown.
Binary file removed
BIN
-56.4 KB
local-packages/Microsoft.Rest.ClientRuntime.Azure.TestFramework.1.9.0.nupkg
Binary file not shown.
Binary file removed
BIN
-67 KB
local-packages/Microsoft.Rest.ClientRuntime.Azure.TestFramework.1.9.0.symbols.nupkg
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,16 +1,22 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
| <PropertyGroup> | ||
| <IncludeSource>True</IncludeSource> | ||
| <IncludeSymbols>True</IncludeSymbols> | ||
| </PropertyGroup> | ||
| <ItemGroup Condition="'$(OmitJsonPackage)' != 'true'"> | ||
| <PackageReference Include="Newtonsoft.Json" Version="9.0.1" /> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <PackageReference Include="Microsoft.Rest.ClientRuntime" Version="2.4.0" /> | ||
| <PackageReference Include="Microsoft.Rest.ClientRuntime.Azure" Version="3.4.0" /> | ||
| <PackageReference Include="Microsoft.Rest.ClientRuntime" Version="2.3.13" /> | ||
| <PackageReference Include="Microsoft.Rest.ClientRuntime.Azure" Version="3.3.15" /> | ||
| </ItemGroup> | ||
| <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> | ||
| <PackageReference Include="Microsoft.ApplicationInsights" Version="2.4.0" /> | ||
| <PackageReference Include="Microsoft.Azure.Common" Version="2.2.0" /> | ||
| <PackageReference Include="Hyak.Common" Version="1.2.0" /> | ||
| <PackageReference Include="PowerShellStandard.Library" Version="5.1.0-preview-06" PrivateAssets="All" /> | ||
| </ItemGroup> | ||
| <ItemGroup Condition="'$(OmitJsonPackage)' != 'true'"> | ||
| <PackageReference Include="Newtonsoft.Json" Version="10.0.3" /> | ||
| <ItemGroup Condition="'$(IncludeHyak)' == 'true'"> | ||
| <PackageReference Include="Microsoft.ApplicationInsights" Version="2.4.0" /> | ||
| <PackageReference Include="Microsoft.Azure.Common" Version="2.2.0" /> | ||
| <PackageReference Include="Hyak.Common" Version="1.2.1" /> | ||
| </ItemGroup> | ||
| </Project> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
src/ScenarioTest.ResourceManager/ScenarioTest.ResourceManager.Netcore.csproj
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Why are these being removed?
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.
Because they are not actually used in the package. We use these dependencies to control the storage version used in the modules, I am instead moving these into the azure-powershell common dependcies just for those packages that need them. This is necessary to allow building cmdlets and cmdlet test packages that depend on newtonsoft.json 9