| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent b881aff commit 7395250
3 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -13,5 +13,4 @@ updates: | |||
| 13 | 13 | - "bergmeister" | |
| 14 | 14 | ignore: | |
| 15 | 15 | - dependency-name: "System.Management.Automation" | |
| 16 | - - dependency-name: "Newtonsoft.Json" | ||
| 17 | 16 | - dependency-name: "PowerShellStandard.Library" | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -11,19 +11,21 @@ | |||
| 11 | 11 | </PropertyGroup> | |
| 12 | 12 | ||
| 13 | 13 | <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> | |
| 14 | + <!-- The version of Newtonsoft.Json needs to be newer than the version in the oldest supported version of PowerShell 7: https://github.com/PowerShell/PowerShell/blob/v7.0.11/src/System.Management.Automation/System.Management.Automation.csproj#L15 --> | ||
| 15 | + <PackageReference Include="Newtonsoft.Json" Version="12.0.3" /> | ||
| 14 | 16 | <PackageReference Include="Microsoft.Win32.Registry" Version="5.0.0" /> | |
| 15 | 17 | <PackageReference Include="Microsoft.Management.Infrastructure" Version="2.0.0" /> | |
| 16 | 18 | <PackageReference Include="PowerShellStandard.Library" Version="3.0.0-preview-02" /> | |
| 17 | 19 | </ItemGroup> | |
| 18 | 20 | ||
| 19 | 21 | <ItemGroup Condition="'$(TargetFramework)' == 'net462'"> | |
| 22 | + <PackageReference Include="Newtonsoft.Json" Version="13.0.1" /> | ||
| 20 | 23 | <PackageReference Include="Microsoft.PowerShell.3.ReferenceAssemblies" Version="1.0.0" /> | |
| 21 | 24 | <PackageReference Include="Microsoft.Management.Infrastructure" Version="1.0.0" /> | |
| 22 | 25 | </ItemGroup> | |
| 23 | 26 | ||
| 24 | 27 | <ItemGroup> | |
| 25 | 28 | <PackageReference Include="Microsoft.CSharp" Version="4.7.0" /> | |
| 26 | - <PackageReference Include="Newtonsoft.Json" Version="12.0.3" /> | ||
| 27 | 29 | </ItemGroup> | |
| 28 | 30 | ||
| 29 | 31 | </Project> | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -13,16 +13,19 @@ | |||
| 13 | 13 | <ItemGroup> | |
| 14 | 14 | <ProjectReference Include="..\Engine\Engine.csproj" /> | |
| 15 | 15 | <ProjectReference Include="..\PSCompatibilityCollector\Microsoft.PowerShell.CrossCompatibility\Microsoft.PowerShell.CrossCompatibility.csproj" /> | |
| 16 | - <PackageReference Include="Newtonsoft.Json" Version="12.0.3" /> | ||
| 16 | + | ||
| 17 | 17 | </ItemGroup> | |
| 18 | 18 | ||
| 19 | 19 | <ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp3.1' "> | |
| 20 | + <!-- The version of Newtonsoft.Json needs to be newer than the version in the oldest supported version of PowerShell 7: https://github.com/PowerShell/PowerShell/blob/v7.0.11/src/System.Management.Automation/System.Management.Automation.csproj#L15 --> | ||
| 21 | + <PackageReference Include="Newtonsoft.Json" Version="12.0.3" /> | ||
| 20 | 22 | <PackageReference Include="System.Reflection.TypeExtensions" Version="4.7.0" /> | |
| 21 | 23 | <PackageReference Include="Microsoft.Management.Infrastructure" Version="2.0.0" /> | |
| 22 | 24 | <PackageReference Include="Pluralize.NET" Version="1.0.2" /> | |
| 23 | 25 | </ItemGroup> | |
| 24 | 26 | ||
| 25 | 27 | <ItemGroup Condition=" '$(TargetFramework)' == 'net462' "> | |
| 28 | + <PackageReference Include="Newtonsoft.Json" Version="13.0.1" /> | ||
| 26 | 29 | <Reference Include="System.ComponentModel.Composition" /> | |
| 27 | 30 | <Reference Include="System.Data.Entity.Design" /> | |
| 28 | 31 | </ItemGroup> | |
| Back | FazBrowse Home | New Git URL |
0 commit comments