Skip to content

Commit 6293cd1

Browse files
authored
Update ReadyToRun to use 9.0 package (#3340)
1 parent e28d048 commit 6293cd1

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<PackageVersion Include="DiffLib" Version="2017.7.26.1241" />
1111
<PackageVersion Include="Dirkster.AvalonDock.Themes.VS2013" Version="4.72.1" />
1212
<PackageVersion Include="FluentAssertions" Version="6.12.2" />
13-
<PackageVersion Include="ILCompiler.Reflection.ReadyToRun.Experimental" Version="8.0.0-rc.2.23471.30" />
13+
<PackageVersion Include="ILCompiler.Reflection.ReadyToRun.Experimental" Version="9.0.1-rtm.24557.9" />
1414
<PackageVersion Include="Iced" Version="1.21.0" />
1515
<PackageVersion Include="JunitXml.TestLogger" Version="4.1.0" />
1616
<PackageVersion Include="K4os.Compression.LZ4" Version="1.3.8" />

ILSpy.ReadyToRun/ReadyToRunLanguage.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030

3131
using ICSharpCode.AvalonEdit.Highlighting;
3232
using ICSharpCode.Decompiler;
33+
using ICSharpCode.Decompiler.Disassembler;
3334
using ICSharpCode.Decompiler.Metadata;
3435
using ICSharpCode.Decompiler.Solution;
3536
using ICSharpCode.Decompiler.TypeSystem;
@@ -96,6 +97,10 @@ public void WriteReference(IType type, string text, bool isDefinition = false)
9697
public void WriteReference(IMember member, string text, bool isDefinition = false)
9798
{
9899
}
100+
101+
public void WriteReference(MetadataFile metadata, Handle handle, string text, string protocol = "decompile", bool isDefinition = false)
102+
{
103+
}
99104
}
100105
#endif
101106

NuGet.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
<clear />
55
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
66
<add key="dotnet-tools" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" />
7-
<add key="dotnet8-transport" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet8-transport/nuget/v3/index.json" />
7+
<add key="dotnet9-transport" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet9-transport/nuget/v3/index.json" />
88
</packageSources>
99
<packageSourceMapping>
1010
<packageSource key="nuget.org">
1111
<package pattern="*" />
1212
<package pattern="Microsoft.DiaSymReader.Native" />
1313
<package pattern="Microsoft.DiaSymReader" />
1414
</packageSource>
15-
<packageSource key="dotnet8-transport">
15+
<packageSource key="dotnet9-transport">
1616
<package pattern="ILCompiler.Reflection.ReadyToRun.Experimental" />
1717
</packageSource>
1818
<packageSource key="dotnet-tools">

0 commit comments

Comments
 (0)