Skip to content

Commit 54006e4

Browse files
committed
Manage packages centrally
This comes from an internal bot.
1 parent 6436032 commit 54006e4

4 files changed

Lines changed: 19 additions & 11 deletions

File tree

Directory.Build.props

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
<Project>
2-
<!-- See https://aka.ms/dotnet/msbuild/customize for more details on customizing your build -->
3-
<PropertyGroup>
4-
<UseArtifactsOutput>true</UseArtifactsOutput>
5-
<ModuleVersion>1.1.2</ModuleVersion>
6-
</PropertyGroup>
7-
</Project>
1+
<Project>
2+
<!-- See https://aka.ms/dotnet/msbuild/customize for more details on customizing your build -->
3+
<PropertyGroup>
4+
<UseArtifactsOutput>true</UseArtifactsOutput>
5+
<ModuleVersion>1.1.2</ModuleVersion>
6+
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
7+
</PropertyGroup>
8+
</Project>

Directory.Packages.props

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<Project>
2+
<ItemGroup>
3+
<PackageVersion Include="Microsoft.PowerShell.SecretManagement.Library" Version="0.5.1-preview.3" />
4+
<PackageVersion Include="PowerShellStandard.Library" Version="5.1.1" />
5+
<PackageVersion Include="System.Runtime.InteropServices.RuntimeInformation" Version="4.3.0" />
6+
</ItemGroup>
7+
</Project>

ExtensionModules/CredManStore/src/code/Microsoft.PowerShell.CredManStore.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
</PropertyGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="Microsoft.PowerShell.SecretManagement.Library" Version="0.5.1-*" PrivateAssets="All" />
20-
<PackageReference Include="PowerShellStandard.Library" Version="5.1.1-*" PrivateAssets="All" />
19+
<PackageReference Include="Microsoft.PowerShell.SecretManagement.Library" PrivateAssets="All" />
20+
<PackageReference Include="PowerShellStandard.Library" PrivateAssets="All" />
2121
</ItemGroup>
2222

2323
<ItemGroup>

src/code/Microsoft.PowerShell.SecretManagement.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
</PropertyGroup>
1818

1919
<ItemGroup>
20-
<PackageReference Include="PowerShellStandard.Library" Version="5.1.1" PrivateAssets="All" />
21-
<PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" Version="4.3.0" />
20+
<PackageReference Include="PowerShellStandard.Library" PrivateAssets="All" />
21+
<PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" />
2222
</ItemGroup>
2323

2424
<ItemGroup>

0 commit comments

Comments
 (0)