Skip to content

Commit ab84728

Browse files
committed
Manage packages centrally
This comes from an internal bot.
1 parent 26cf363 commit ab84728

File tree

3 files changed

+20
-11
lines changed

3 files changed

+20
-11
lines changed

Directory.Build.props

+8-7
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.0.6</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.0.6</ModuleVersion>
6+
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
7+
</PropertyGroup>
8+
</Project>

Directory.Packages.props

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<Project>
2+
<ItemGroup>
3+
<PackageVersion Include="Microsoft.PowerShell.SecretManagement.Library" Version="0.9.1" />
4+
<PackageVersion Include="PowerShellStandard.Library" Version="5.1.1" />
5+
<PackageVersion Include="System.IO.FileSystem.AccessControl" Version="4.7.0" />
6+
<PackageVersion Include="System.Runtime.InteropServices.RuntimeInformation" Version="4.3.0" />
7+
</ItemGroup>
8+
</Project>

src/code/Microsoft.PowerShell.SecretStore.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
</PropertyGroup>
1414

1515
<ItemGroup>
16-
<PackageReference Include="Microsoft.PowerShell.SecretManagement.Library" Version="0.9.1-*" />
17-
<PackageReference Include="PowerShellStandard.Library" Version="5.1.1" PrivateAssets="All" />
18-
<PackageReference Include="System.IO.FileSystem.AccessControl" version="4.7.0" />
19-
<PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" Version="4.3.0" />
16+
<PackageReference Include="Microsoft.PowerShell.SecretManagement.Library" />
17+
<PackageReference Include="PowerShellStandard.Library" PrivateAssets="All" />
18+
<PackageReference Include="System.IO.FileSystem.AccessControl" />
19+
<PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" />
2020
</ItemGroup>
2121

2222
</Project>

0 commit comments

Comments
 (0)