Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<!-- The generator projects specific dependencies needs to be added to PackageReference and TargetPathWithTargetPlatformMonikor -->

<ItemGroup>
<PackageReference Include="System.Text.Json" Version="6.0.0" GeneratePathProperty="true" PrivateAssets="all"/>
<PackageReference Include="System.Text.Json" Version="6.0.10" GeneratePathProperty="true" PrivateAssets="all"/>
</ItemGroup>

<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
- But it's excluding content files to reduce the size of the module. The content files are not needed since they're in the runtime (PowerShell)
- The content files are needed to set up the runspace to parse the command line. So we need to include them when we run the unit tests.
-->
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.0" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.3" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ For more information on Az Predictor, please visit the following: https://aka.ms
<ItemGroup>
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.18.0" />
<PackageReference Include="Microsoft.Azure.PowerShell.Common.Share" Version="1.3.62-preview" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.0">
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.3">
<ExcludeAssets>contentFiles</ExcludeAssets>
</PackageReference>
<PackageReference Include="System.Management.Automation" Version="7.2.0">
<PackageReference Include="System.Management.Automation" Version="7.2.3">
<ExcludeAssets>contentFiles</ExcludeAssets>
</PackageReference>
</ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions tools/Az.Tools.Predictor/Az.Tools.Predictor/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
- Additional information about change #1
-->
## Upcoming Release
* Updated dependencies to address security vulnerabilities

## Version 1.1.3
* Updated data collection mechanism
Expand Down
4 changes: 2 additions & 2 deletions tools/Az.Tools.Predictor/MockPSConsole/MockPSConsole.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.0" />
<PackageReference Include="System.Management.Automation" Version="7.2.0" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.3" />
<PackageReference Include="System.Management.Automation" Version="7.2.3" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading