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

Update BDN #3120

Merged
merged 9 commits into from
Jul 17, 2023
Merged
Show file tree
Hide file tree
Changes from 7 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
6 changes: 3 additions & 3 deletions eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
</MicrosoftNETSdkInternalPackageVersion>
<MicrosoftWindowsDesktopAppRuntimewinx64PackageVersion>5.0.4</MicrosoftWindowsDesktopAppRuntimewinx64PackageVersion>
<MicrosoftAspNetCoreAppRuntimewinx64PackageVersion>5.0.4</MicrosoftAspNetCoreAppRuntimewinx64PackageVersion>
<MicrosoftNetILLinkTasksVersion>7.0.100-1.22057.1</MicrosoftNetILLinkTasksVersion>
<MicrosoftNetILLinkPackageVersion>7.0.100-1.22057.1</MicrosoftNetILLinkPackageVersion>
<BenchmarkDotNetVersion>0.13.2.2052</BenchmarkDotNetVersion>
<MicrosoftNetILLinkTasksVersion>8.0.100-1.23067.1</MicrosoftNetILLinkTasksVersion>
<MicrosoftNetILLinkPackageVersion>8.0.100-1.23067.1</MicrosoftNetILLinkPackageVersion>
<BenchmarkDotNetVersion>0.13.7-nightly.20230713.34</BenchmarkDotNetVersion>
</PropertyGroup>
<!--Package names-->
<PropertyGroup>
Expand Down
7 changes: 7 additions & 0 deletions src/benchmarks/micro/MicroBenchmarks.Common.props
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@
<SystemVersion>7.0.0</SystemVersion>
</PropertyGroup>
</When>
<When Condition="'$(TargetFramework)' == 'net8.0'">
<PropertyGroup>
<LangVersion>preview</LangVersion>
<ExtensionsVersion>8.0.*-*</ExtensionsVersion>
<SystemVersion>8.0.*-*</SystemVersion>
</PropertyGroup>
</When>
<Otherwise>
<!-- when comparing against Full .NET Framework we are usually interested in CLR differences, so net462 belongs to this block -->
<PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/benchmarks/real-world/ILLink/ILLinkBenchmarks.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.Net.ILLink" Version="$(MicrosoftNetILLinkPackageVersion)" />
<PackageReference Include="Microsoft.Net.ILLink.Tasks" Version="$(MicrosoftNetILLinkTasksVersion)" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.8.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.5.0" />
<PackageReference Include="Microsoft.Build" Version="17.3.1" />
<PackageReference Include="Microsoft.Build.Tasks.Core" Version="17.3.1" />
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="17.3.1" />
Expand Down
2 changes: 1 addition & 1 deletion src/benchmarks/real-world/Roslyn/CompilerBenchmarks.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.3.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.5.0" />
cincuranet marked this conversation as resolved.
Show resolved Hide resolved
</ItemGroup>

<ItemGroup>
Expand Down
Loading