Skip to content
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

Add SBE dependencies to Version.Details & Versions.prop #14698

Merged
merged 3 commits into from
Apr 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
<PackageVersion Include="Microsoft.VisualStudio.OLE.Interop" Version="7.10.6071" />
<PackageVersion Include="Mono.Options" Version="5.3.0.1" />
<PackageVersion Include="Moq" Version="4.18.4" />
<PackageVersion Include="Newtonsoft.Json" Version="13.0.3" />
<PackageVersion Include="Newtonsoft.Json" Version="$(NewtonsoftJsonVersion)" />
<PackageVersion Include="Octokit" Version="10.0.0" />
<PackageVersion Include="xunit" Version="$(XUnitVersion)" />
<PackageVersion Include="xunit.abstractions" Version="2.0.3" />
Expand Down
14 changes: 14 additions & 0 deletions eng/Version.Details.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
<ProductDependencies>
</ProductDependencies>
<ToolsetDependencies>
<!-- Needed for when this dependency gets updated in
https://github.com/dotnet/source-build-externals, otherwise
a prebuilt will be introduced until the VMR is rebootstrapped. -->
<Dependency Name="Microsoft.ApplicationInsights" Version="2.22.0">
<Uri>https://github.com/microsoft/ApplicationInsights-dotnet</Uri>
<Sha>43825e06a22cdfb702fc199a7ba99a7d541d48c6</Sha>
</Dependency>
<Dependency Name="Microsoft.CodeAnalysis.CSharp" Version="4.8.0">
<Uri>https://github.com/dotnet/roslyn</Uri>
<Sha>e091728607ca0fc9efca55ccfb3e59259c6b5a0a</Sha>
Expand Down Expand Up @@ -105,6 +112,13 @@
<Uri>https://github.com/dotnet/runtime</Uri>
<Sha>2874d26cb343fc55be295a628b3ee474e19ff95e</Sha>
</Dependency>
<!-- Needed for when this dependency gets updated in
https://github.com/dotnet/source-build-externals, otherwise
a prebuilt will be introduced until the VMR is rebootstrapped. -->
<Dependency Name="Newtonsoft.Json" Version="13.0.3">
<Uri>https://github.com/JamesNK/Newtonsoft.Json</Uri>
<Sha>0a2e291c0d9c0c7675d445703e51750363a549ef</Sha>
</Dependency>
<Dependency Name="System.Text.Encodings.Web" Version="9.0.0-alpha.1.24059.2">
<Uri>https://github.com/dotnet/runtime</Uri>
<Sha>2874d26cb343fc55be295a628b3ee474e19ff95e</Sha>
Expand Down
1 change: 1 addition & 0 deletions eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@
<!-- source-build-externals -->
<!-- The version is overridden by the VMR to use the version from the previous (n-1) build of Arcade. -->
<MicrosoftApplicationInsightsVersion>2.22.0</MicrosoftApplicationInsightsVersion>
<NewtonsoftJsonVersion>13.0.3</NewtonsoftJsonVersion>
<!-- symreader-converter -->
<MicrosoftDiaSymReaderPdb2PdbVersion>1.1.0-beta2-19575-01</MicrosoftDiaSymReaderPdb2PdbVersion>
<!-- templating -->
Expand Down
Loading