Skip to content

Commit 279ded4

Browse files
[main] Update dependencies from dotnet/linker (#27186)
[main] Update dependencies from dotnet/linker - Workaround for the floating version with a specific one - Merge branch 'main' of https://github.com/dotnet/sdk into darc-main-6d2336f7-8e45-4040-a5ee-f40e1cbcdd1b - updating the floating version to a fixed one on main test as well
1 parent 9f30d7a commit 279ded4

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

eng/Version.Details.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,19 +105,19 @@
105105
<Uri>https://github.com/microsoft/vstest</Uri>
106106
<Sha>ef0aa102e9c7d5cf55af06c2747d11e07d12b69a</Sha>
107107
</Dependency>
108-
<Dependency Name="Microsoft.NET.ILLink.Tasks" Version="7.0.100-1.22415.1">
108+
<Dependency Name="Microsoft.NET.ILLink.Tasks" Version="7.0.100-1.22415.4">
109109
<Uri>https://github.com/dotnet/linker</Uri>
110-
<Sha>33c3b2c60d0a2006162a6326db853fe5415439bd</Sha>
110+
<Sha>6252a2194dd32911db2c0669fc818555687d5570</Sha>
111111
<SourceBuild RepoName="linker" ManagedOnly="true" />
112112
</Dependency>
113113
<Dependency Name="Microsoft.DotNet.ILCompiler" Version="7.0.0-rc.1.22411.12">
114114
<Uri>https://github.com/dotnet/runtime</Uri>
115115
<Sha>f52d8c59bb49360eb2cbeeb863c5856ebd62adda</Sha>
116116
<SourceBuildTarball RepoName="runtime" ManagedOnly="true" />
117117
</Dependency>
118-
<Dependency Name="Microsoft.NET.ILLink.Analyzers" Version="7.0.100-1.22415.1">
118+
<Dependency Name="Microsoft.NET.ILLink.Analyzers" Version="7.0.100-1.22415.4">
119119
<Uri>https://github.com/dotnet/linker</Uri>
120-
<Sha>33c3b2c60d0a2006162a6326db853fe5415439bd</Sha>
120+
<Sha>6252a2194dd32911db2c0669fc818555687d5570</Sha>
121121
</Dependency>
122122
<Dependency Name="System.CodeDom" Version="7.0.0-rc.1.22411.12">
123123
<Uri>https://github.com/dotnet/runtime</Uri>

eng/Versions.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
</PropertyGroup>
8686
<PropertyGroup>
8787
<!-- Dependencies from https://github.com/mono/linker -->
88-
<MicrosoftNETILLinkTasksPackageVersion>7.0.100-1.22415.1</MicrosoftNETILLinkTasksPackageVersion>
88+
<MicrosoftNETILLinkTasksPackageVersion>7.0.100-1.22415.4</MicrosoftNETILLinkTasksPackageVersion>
8989
<MicrosoftNETILLinkAnalyzerPackageVersion>$(MicrosoftNETILLinkTasksPackageVersion)</MicrosoftNETILLinkAnalyzerPackageVersion>
9090
</PropertyGroup>
9191
<PropertyGroup>

src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAnAotApp.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ public void NativeAot_hw_runs_with_PackageReference_PublishAot_is_enabled(string
272272
testProject.AdditionalProperties["PublishAot"] = "true";
273273

274274
// This will add a reference to a package that will also be automatically imported by the SDK
275-
testProject.PackageReferences.Add(new TestPackageReference("Microsoft.DotNet.ILCompiler", "7.0.0-*"));
275+
testProject.PackageReferences.Add(new TestPackageReference("Microsoft.DotNet.ILCompiler", "7.0.0-rc.1.22416.1"));
276276

277277
// Linux symbol files are embedded and require additional steps to be stripped to a separate file
278278
// assumes /bin (or /usr/bin) are in the PATH
@@ -319,7 +319,7 @@ public void NativeAot_hw_runs_with_PackageReference_PublishAot_is_empty(string t
319319
var testProject = CreateHelloWorldTestProject(targetFramework, projectName, true);
320320

321321
// This will add a reference to a package that will also be automatically imported by the SDK
322-
testProject.PackageReferences.Add(new TestPackageReference("Microsoft.DotNet.ILCompiler", "7.0.0-*"));
322+
testProject.PackageReferences.Add(new TestPackageReference("Microsoft.DotNet.ILCompiler", "7.0.0-rc.1.22416.1"));
323323

324324
// Linux symbol files are embedded and require additional steps to be stripped to a separate file
325325
// assumes /bin (or /usr/bin) are in the PATH
@@ -367,8 +367,8 @@ public void NativeAot_hw_runs_with_cross_PackageReference_PublishAot_is_enabled(
367367
testProject.AdditionalProperties["PublishAot"] = "true";
368368

369369
// This will add a reference to a package that will also be automatically imported by the SDK
370-
testProject.PackageReferences.Add(new TestPackageReference("Microsoft.DotNet.ILCompiler", "7.0.0-*"));
371-
testProject.PackageReferences.Add(new TestPackageReference("runtime.win-x64.Microsoft.DotNet.ILCompiler", "7.0.0-*"));
370+
testProject.PackageReferences.Add(new TestPackageReference("Microsoft.DotNet.ILCompiler", "7.0.0-rc.1.22416.1"));
371+
testProject.PackageReferences.Add(new TestPackageReference("runtime.win-x64.Microsoft.DotNet.ILCompiler", "7.0.0-rc.1.22416.1"));
372372

373373
var testAsset = _testAssetsManager.CreateTestProject(testProject);
374374

@@ -391,8 +391,8 @@ public void NativeAot_hw_runs_with_cross_PackageReference_PublishAot_is_empty(st
391391
var testProject = CreateHelloWorldTestProject(targetFramework, projectName, true);
392392

393393
// This will add a reference to a package that will also be automatically imported by the SDK
394-
testProject.PackageReferences.Add(new TestPackageReference("Microsoft.DotNet.ILCompiler", "7.0.0-*"));
395-
testProject.PackageReferences.Add(new TestPackageReference("runtime.win-x64.Microsoft.DotNet.ILCompiler", "7.0.0-*"));
394+
testProject.PackageReferences.Add(new TestPackageReference("Microsoft.DotNet.ILCompiler", "7.0.0-rc.1.22416.1"));
395+
testProject.PackageReferences.Add(new TestPackageReference("runtime.win-x64.Microsoft.DotNet.ILCompiler", "7.0.0-rc.1.22416.1"));
396396

397397
var testAsset = _testAssetsManager.CreateTestProject(testProject);
398398

0 commit comments

Comments
 (0)