with_GDBf

This commit is contained in:
2026-04-09 15:05:01 +08:00
parent aa3ffb730f
commit 10b61f30ef
46 changed files with 240 additions and 21063 deletions

Submodule lib/resources updated: 43e805d8e8...5a27eca5b4

View File

@@ -26,12 +26,12 @@
"Xwt": "1.0.0",
"Xwt.Gtk3": "1.0.0",
"libtftp": "1.0.0",
"AntShell.Reference": "1.0.9585.20808",
"AntShell.Reference": "1.0.9593.26098",
"BigGustave.Reference": "1.0.0.0",
"CookComputing.XmlRpcV2": "2.5.0.0",
"CoSimulationPlugin.Reference": "1.0.0.0",
"crypto.Reference": "1.9.0.0",
"CxxDemangler.Reference": "1.0.9585.20792",
"CxxDemangler.Reference": "1.0.9593.26090",
"ELFSharp.Reference": "0.1.1.0",
"FdtSharp.Reference": "0.1.0.0",
"Infrastructure.Reference": "1.0.0.0",
@@ -1954,10 +1954,10 @@
}
}
},
"AntShell.Reference/1.0.9585.20808": {
"AntShell.Reference/1.0.9593.26098": {
"runtime": {
"AntShell.dll": {
"assemblyVersion": "1.0.9585.20808",
"assemblyVersion": "1.0.9593.26098",
"fileVersion": "0.0.0.0"
}
}
@@ -1994,10 +1994,10 @@
}
}
},
"CxxDemangler.Reference/1.0.9585.20792": {
"CxxDemangler.Reference/1.0.9593.26090": {
"runtime": {
"CxxDemangler.dll": {
"assemblyVersion": "1.0.9585.20792",
"assemblyVersion": "1.0.9593.26090",
"fileVersion": "0.0.0.0"
}
}
@@ -3134,7 +3134,7 @@
"serviceable": false,
"sha512": ""
},
"AntShell.Reference/1.0.9585.20808": {
"AntShell.Reference/1.0.9593.26098": {
"type": "reference",
"serviceable": false,
"sha512": ""
@@ -3159,7 +3159,7 @@
"serviceable": false,
"sha512": ""
},
"CxxDemangler.Reference/1.0.9585.20792": {
"CxxDemangler.Reference/1.0.9593.26090": {
"type": "reference",
"serviceable": false,
"sha512": ""

View File

@@ -26,12 +26,12 @@
"Xwt": "1.0.0",
"Xwt.Gtk3": "1.0.0",
"libtftp": "1.0.0",
"AntShell.Reference": "1.0.9587.27432",
"AntShell.Reference": "1.0.9593.25552",
"BigGustave.Reference": "1.0.0.0",
"CookComputing.XmlRpcV2": "2.5.0.0",
"CoSimulationPlugin.Reference": "1.0.0.0",
"crypto.Reference": "1.9.0.0",
"CxxDemangler.Reference": "1.0.9587.27413",
"CxxDemangler.Reference": "1.0.9593.25537",
"ELFSharp.Reference": "0.1.1.0",
"FdtSharp.Reference": "0.1.0.0",
"Infrastructure.Reference": "1.0.0.0",
@@ -1954,10 +1954,10 @@
}
}
},
"AntShell.Reference/1.0.9587.27432": {
"AntShell.Reference/1.0.9593.25552": {
"runtime": {
"AntShell.dll": {
"assemblyVersion": "1.0.9587.27432",
"assemblyVersion": "1.0.9593.25552",
"fileVersion": "0.0.0.0"
}
}
@@ -1994,10 +1994,10 @@
}
}
},
"CxxDemangler.Reference/1.0.9587.27413": {
"CxxDemangler.Reference/1.0.9593.25537": {
"runtime": {
"CxxDemangler.dll": {
"assemblyVersion": "1.0.9587.27413",
"assemblyVersion": "1.0.9593.25537",
"fileVersion": "0.0.0.0"
}
}
@@ -3134,7 +3134,7 @@
"serviceable": false,
"sha512": ""
},
"AntShell.Reference/1.0.9587.27432": {
"AntShell.Reference/1.0.9593.25552": {
"type": "reference",
"serviceable": false,
"sha512": ""
@@ -3159,7 +3159,7 @@
"serviceable": false,
"sha512": ""
},
"CxxDemangler.Reference/1.0.9587.27413": {
"CxxDemangler.Reference/1.0.9593.25537": {
"type": "reference",
"serviceable": false,
"sha512": ""

View File

@@ -66,19 +66,13 @@ namespace Antmicro.Renode.Peripherals.CPU
}
/// <summary>
/// HI - 乘除法结果高32位
/// Status - CP0状态寄存器 (GDB通信必须)
/// </summary>
[Register]
public RegisterValue HI
public RegisterValue Status
{
get
{
return GetRegisterValue32((int)MipsRegisters.HI);
}
set
{
SetRegisterValue32((int)MipsRegisters.HI, value);
}
get { return GetRegisterValue32((int)MipsRegisters.Status); }
set { SetRegisterValue32((int)MipsRegisters.Status, value); }
}
/// <summary>
@@ -97,6 +91,42 @@ namespace Antmicro.Renode.Peripherals.CPU
}
}
/// <summary>
/// HI - 乘除法结果高32位
/// </summary>
[Register]
public RegisterValue HI
{
get
{
return GetRegisterValue32((int)MipsRegisters.HI);
}
set
{
SetRegisterValue32((int)MipsRegisters.HI, value);
}
}
/// <summary>
/// BadVAddr - CP0错误地址 (GDB通信必须)
/// </summary>
[Register]
public RegisterValue BadVAddr
{
get { return GetRegisterValue32((int)MipsRegisters.BadVAddr); }
set { SetRegisterValue32((int)MipsRegisters.BadVAddr, value); }
}
/// <summary>
/// Cause - CP0异常原因 (GDB通信必须)
/// </summary>
[Register]
public RegisterValue Cause
{
get { return GetRegisterValue32((int)MipsRegisters.Cause); }
set { SetRegisterValue32((int)MipsRegisters.Cause, value); }
}
/// <summary>
/// SP - 栈指针 ($29)
/// </summary>
@@ -277,10 +307,15 @@ namespace Antmicro.Renode.Peripherals.CPU
{ MipsRegisters.FP, new CPURegister(30, 32, isGeneral: true, isReadonly: false, aliases: new [] { "FP", "S8", "R30", "$30" }) },
{ MipsRegisters.RA, new CPURegister(31, 32, isGeneral: true, isReadonly: false, aliases: new [] { "RA", "R31", "$31" }) },
// 特殊寄存器
{ MipsRegisters.PC, new CPURegister(32, 32, isGeneral: false, isReadonly: false, aliases: new [] { "PC" }) },
{ MipsRegisters.HI, new CPURegister(33, 32, isGeneral: false, isReadonly: false, aliases: new [] { "HI" }) },
{ MipsRegisters.LO, new CPURegister(34, 32, isGeneral: false, isReadonly: false, aliases: new [] { "LO" }) },
// =====================================
// 特殊寄存器 (严格遵循GDB的 32-37 坑位)
// =====================================
{ MipsRegisters.Status, new CPURegister(32, 32, isGeneral: false, isReadonly: false, aliases: new [] { "Status", "SR" }) },
{ MipsRegisters.LO, new CPURegister(33, 32, isGeneral: false, isReadonly: false, aliases: new [] { "LO" }) },
{ MipsRegisters.HI, new CPURegister(34, 32, isGeneral: false, isReadonly: false, aliases: new [] { "HI" }) },
{ MipsRegisters.BadVAddr, new CPURegister(35, 32, isGeneral: false, isReadonly: true, aliases: new [] { "BadVAddr" }) },
{ MipsRegisters.Cause, new CPURegister(36, 32, isGeneral: false, isReadonly: false, aliases: new [] { "Cause" }) },
{ MipsRegisters.PC, new CPURegister(37, 32, isGeneral: false, isReadonly: false, aliases: new [] { "PC" }) },
};
}
@@ -323,9 +358,14 @@ namespace Antmicro.Renode.Peripherals.CPU
FP = 30, // $30 - 帧指针 (也称为 S8)
RA = 31, // $31 - 返回地址
// 特殊寄存器
PC = 32, // 程序计数器
HI = 33, // 乘除法结果高32位
LO = 34, // 乘除法结果低32位
// =====================================
// 特殊寄存器 (严格遵循GDB的 32-37 坑位)
// =====================================
Status = 32, // CP0 状态寄存器
LO = 33, // 乘除法结果低32位
HI = 34, // 乘除法结果高32位
BadVAddr = 35, // CP0 内存错误地址
Cause = 36, // CP0 异常原因
PC = 37, // 程序计数器
}
}

View File

@@ -1,17 +1,18 @@
/*
* MIPS寄存器接口
* MIPS寄存器接口 (修复GDB通信乱码的终极对齐版)
* Author:liuwb
* Date:2026_0209
*/
#pragma once
#include <stdint.h>
// MIPS32寄存器枚举定义
// 用于C#和C代码之间的寄存器访问
// MIPS寄存器枚举
// 这些值将被导出到C#层用于寄存器访问
typedef enum {
// 通用寄存器 GPR 0-31
// ==========================================
// 通用寄存器 GPR 0-31 (严格占用 0~31 坑位)
// ==========================================
MIPS_REG_ZERO = 0, // $0 - 常量0
MIPS_REG_AT, // $1 - 汇编器临时寄存器
MIPS_REG_V0, // $2 - 函数返回值
@@ -45,12 +46,20 @@ typedef enum {
MIPS_REG_FP, // $30 - 帧指针 (或 S8)
MIPS_REG_RA, // $31 - 返回地址
// 特殊寄存器 (从32开始)
MIPS_REG_PC = 32, // 程序计数器
MIPS_REG_HI, // HI寄存器 (乘除法高位)
MIPS_REG_LO, // LO寄存器 (乘除法低位)
// ==========================================
// 强制对齐 GDB 官方 MIPS32 标准通信坑位
// 这里的数字 32~37 绝对不能更改!
// ==========================================
MIPS_CP0_STATUS = 32, // GDB 坑位 32: Status (CP0 Reg 12)
MIPS_REG_LO = 33, // GDB 坑位 33: LO (乘除法低位)
MIPS_REG_HI = 34, // GDB 坑位 34: HI (乘除法高位)
MIPS_CP0_BADVADDR = 35, // GDB 坑位 35: BadVAddr (CP0 Reg 8)
MIPS_CP0_CAUSE = 36, // GDB 坑位 36: Cause (CP0 Reg 13)
MIPS_REG_PC = 37, // GDB 坑位 37: PC (程序计数器)
// CP0寄存器 (从40开始为了对齐)
// ==========================================
// 其他 CP0 寄存器 (从40开始向后排避开GDB核心区)
// ==========================================
MIPS_CP0_INDEX = 40, // CP0 Register 0
MIPS_CP0_RANDOM, // CP0 Register 1
MIPS_CP0_ENTRYLO0, // CP0 Register 2
@@ -59,66 +68,47 @@ typedef enum {
MIPS_CP0_PAGEMASK, // CP0 Register 5
MIPS_CP0_WIRED, // CP0 Register 6
// Register 7 reserved
MIPS_CP0_BADVADDR = 48, // CP0 Register 8
MIPS_CP0_COUNT, // CP0 Register 9
// 注意: BadVAddr 已经被提到了 35这里手动从 49 开始对接
MIPS_CP0_COUNT = 49, // CP0 Register 9
MIPS_CP0_ENTRYHI, // CP0 Register 10
MIPS_CP0_COMPARE, // CP0 Register 11
MIPS_CP0_STATUS, // CP0 Register 12
MIPS_CP0_CAUSE, // CP0 Register 13
MIPS_CP0_EPC, // CP0 Register 14
// 注意: Status 和 Cause 已经被提到了 32 和 36这里直接跳到 EPC
MIPS_CP0_EPC = 54, // CP0 Register 14
MIPS_CP0_PRID, // CP0 Register 15
MIPS_CP0_CONFIG0, // CP0 Register 16, Select 0
MIPS_CP0_CONFIG1, // CP0 Register 16, Select 1
// ... 更多CONFIG寄存器
MIPS_CP0_EBASE = 63, // CP0 Register 15, Select 1
// ==========================================
// FPU控制寄存器 (从64开始)
// ==========================================
MIPS_FCR0 = 64, // FPU Implementation/Revision
MIPS_FCR31 = 95, // FPU Control/Status
// ==========================================
// FPU通用寄存器 (从96开始)
// ==========================================
MIPS_FPR0 = 96,
MIPS_FPR1,
MIPS_FPR2,
MIPS_FPR3,
MIPS_FPR4,
MIPS_FPR5,
MIPS_FPR6,
MIPS_FPR7,
MIPS_FPR8,
MIPS_FPR9,
MIPS_FPR10,
MIPS_FPR11,
MIPS_FPR12,
MIPS_FPR13,
MIPS_FPR14,
MIPS_FPR15,
MIPS_FPR16,
MIPS_FPR17,
MIPS_FPR18,
MIPS_FPR19,
MIPS_FPR20,
MIPS_FPR21,
MIPS_FPR22,
MIPS_FPR23,
MIPS_FPR24,
MIPS_FPR25,
MIPS_FPR26,
MIPS_FPR27,
MIPS_FPR28,
MIPS_FPR29,
MIPS_FPR30,
MIPS_FPR31,
MIPS_FPR1, MIPS_FPR2, MIPS_FPR3, MIPS_FPR4, MIPS_FPR5, MIPS_FPR6, MIPS_FPR7,
MIPS_FPR8, MIPS_FPR9, MIPS_FPR10, MIPS_FPR11, MIPS_FPR12, MIPS_FPR13, MIPS_FPR14, MIPS_FPR15,
MIPS_FPR16, MIPS_FPR17, MIPS_FPR18, MIPS_FPR19, MIPS_FPR20, MIPS_FPR21, MIPS_FPR22, MIPS_FPR23,
MIPS_FPR24, MIPS_FPR25, MIPS_FPR26, MIPS_FPR27, MIPS_FPR28, MIPS_FPR29, MIPS_FPR30, MIPS_FPR31,
// 寄存器总数
MIPS_REGISTERS_COUNT
} MIPSRegister;
// 辅助宏检查寄存器是否为GPR
// 辅助宏检查寄存器是否为GPR (0 ~ 31)
#define IS_GPR(reg) ((reg) >= MIPS_REG_ZERO && (reg) <= MIPS_REG_RA)
// 辅助宏检查寄存器是否为CP0
#define IS_CP0(reg) ((reg) >= MIPS_CP0_INDEX && (reg) <= MIPS_CP0_EBASE)
// 修复点:由于将核心 CP0 (Status, Cause, BadVAddr) 提到了前面,需要把它们加入合法性判断
#define IS_CP0(reg) (((reg) >= MIPS_CP0_INDEX && (reg) <= MIPS_CP0_EBASE) || \
(reg) == MIPS_CP0_STATUS || (reg) == MIPS_CP0_BADVADDR || \
(reg) == MIPS_CP0_CAUSE)
// 辅助宏检查寄存器是否为FPR
#define IS_FPR(reg) ((reg) >= MIPS_FPR0 && (reg) <= MIPS_FPR31)

View File

@@ -15,10 +15,10 @@
"System.ServiceModel.Duplex": "4.8.1",
"System.ServiceModel.Federation": "4.8.1",
"System.ServiceModel.NetTcp": "4.8.1",
"AntShell.Reference": "1.0.9585.20808",
"AntShell.Reference": "1.0.9593.26098",
"BigGustave.Reference": "1.0.0.0",
"crypto.Reference": "1.9.0.0",
"CxxDemangler.Reference": "1.0.9585.20792",
"CxxDemangler.Reference": "1.0.9593.26090",
"ELFSharp.Reference": "0.1.1.0",
"FdtSharp.Reference": "0.1.0.0",
"Infrastructure.Reference": "1.0.0.0",
@@ -1782,10 +1782,10 @@
}
}
},
"AntShell.Reference/1.0.9585.20808": {
"AntShell.Reference/1.0.9593.26098": {
"runtime": {
"AntShell.dll": {
"assemblyVersion": "1.0.9585.20808",
"assemblyVersion": "1.0.9593.26098",
"fileVersion": "0.0.0.0"
}
}
@@ -1806,10 +1806,10 @@
}
}
},
"CxxDemangler.Reference/1.0.9585.20792": {
"CxxDemangler.Reference/1.0.9593.26090": {
"runtime": {
"CxxDemangler.dll": {
"assemblyVersion": "1.0.9585.20792",
"assemblyVersion": "1.0.9593.26090",
"fileVersion": "0.0.0.0"
}
}
@@ -2841,7 +2841,7 @@
"serviceable": false,
"sha512": ""
},
"AntShell.Reference/1.0.9585.20808": {
"AntShell.Reference/1.0.9593.26098": {
"type": "reference",
"serviceable": false,
"sha512": ""
@@ -2856,7 +2856,7 @@
"serviceable": false,
"sha512": ""
},
"CxxDemangler.Reference/1.0.9585.20792": {
"CxxDemangler.Reference/1.0.9593.26090": {
"type": "reference",
"serviceable": false,
"sha512": ""

View File

@@ -15,10 +15,10 @@
"System.ServiceModel.Duplex": "4.8.1",
"System.ServiceModel.Federation": "4.8.1",
"System.ServiceModel.NetTcp": "4.8.1",
"AntShell.Reference": "1.0.9587.27432",
"AntShell.Reference": "1.0.9593.25552",
"BigGustave.Reference": "1.0.0.0",
"crypto.Reference": "1.9.0.0",
"CxxDemangler.Reference": "1.0.9587.27413",
"CxxDemangler.Reference": "1.0.9593.25537",
"ELFSharp.Reference": "0.1.1.0",
"FdtSharp.Reference": "0.1.0.0",
"Infrastructure.Reference": "1.0.0.0",
@@ -1782,10 +1782,10 @@
}
}
},
"AntShell.Reference/1.0.9587.27432": {
"AntShell.Reference/1.0.9593.25552": {
"runtime": {
"AntShell.dll": {
"assemblyVersion": "1.0.9587.27432",
"assemblyVersion": "1.0.9593.25552",
"fileVersion": "0.0.0.0"
}
}
@@ -1806,10 +1806,10 @@
}
}
},
"CxxDemangler.Reference/1.0.9587.27413": {
"CxxDemangler.Reference/1.0.9593.25537": {
"runtime": {
"CxxDemangler.dll": {
"assemblyVersion": "1.0.9587.27413",
"assemblyVersion": "1.0.9593.25537",
"fileVersion": "0.0.0.0"
}
}
@@ -2841,7 +2841,7 @@
"serviceable": false,
"sha512": ""
},
"AntShell.Reference/1.0.9587.27432": {
"AntShell.Reference/1.0.9593.25552": {
"type": "reference",
"serviceable": false,
"sha512": ""
@@ -2856,7 +2856,7 @@
"serviceable": false,
"sha512": ""
},
"CxxDemangler.Reference/1.0.9587.27413": {
"CxxDemangler.Reference/1.0.9593.25537": {
"type": "reference",
"serviceable": false,
"sha512": ""

View File

@@ -58,16 +58,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -75,11 +65,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/BigGustave/src/BigGustave/BigGustave_NET.csproj": {
@@ -132,16 +117,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -149,11 +124,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/CxxDemangler/CxxDemangler/CxxDemangler_NET.csproj": {
@@ -206,16 +176,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -223,11 +183,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/ELFSharp/ELFSharp/ELFSharp_NET.csproj": {
@@ -280,16 +235,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -297,11 +242,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/FdtSharp/FdtSharp/FdtSharp_NET.csproj": {
@@ -354,16 +294,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -371,11 +301,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/Migrant/Migrant/Migrant_NET.csproj": {
@@ -442,16 +367,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -459,11 +374,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/Packet.Net/PacketDotNet/PacketDotNet_NET.csproj": {
@@ -516,16 +426,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -533,11 +433,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/bc-csharp/crypto/crypto_NET.csproj": {
@@ -590,16 +485,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -607,11 +492,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/options-parser/OptionsParser_NET.csproj": {
@@ -682,16 +562,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -699,11 +569,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/termsharp/TermSharp_NET.csproj": {
@@ -766,16 +631,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -783,11 +638,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/termsharp/xwt/Xwt.Gtk/Xwt.Gtk3_NET.csproj": {
@@ -878,16 +728,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -895,11 +735,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/termsharp/xwt/Xwt/Xwt_NET.csproj": {
@@ -952,16 +787,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -969,11 +794,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/src/Infrastructure/src/Infrastructure_NET.csproj": {
@@ -1128,16 +948,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -1145,11 +955,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/src/Plugins/CoSimulationPlugin/CoSimulationPlugin_NET.csproj": {
@@ -1232,16 +1037,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -1249,11 +1044,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"version": 2,
"dgSpecHash": "jUljMLYnNt4=",
"dgSpecHash": "UDyPgyZ3H6I=",
"success": true,
"projectFilePath": "/home/simulation/source/renode/src/Plugins/CoSimulationPlugin/CoSimulationPlugin_NET.csproj",
"expectedPackageFiles": [
@@ -50,41 +50,9 @@
"/home/simulation/.nuget/packages/nunit/3.13.1/nunit.3.13.1.nupkg.sha512",
"/home/simulation/.nuget/packages/nunit3testadapter/3.17.0/nunit3testadapter.3.17.0.nupkg.sha512",
"/home/simulation/.nuget/packages/pangosharp/3.24.24.95/pangosharp.3.24.24.95.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.collections/4.3.0/runtime.any.system.collections.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.diagnostics.tools/4.3.0/runtime.any.system.diagnostics.tools.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.diagnostics.tracing/4.3.0/runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.globalization/4.3.0/runtime.any.system.globalization.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.io/4.3.0/runtime.any.system.io.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.reflection/4.3.0/runtime.any.system.reflection.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.reflection.extensions/4.3.0/runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.reflection.primitives/4.3.0/runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.resources.resourcemanager/4.3.0/runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.runtime/4.3.0/runtime.any.system.runtime.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.runtime.handles/4.3.0/runtime.any.system.runtime.handles.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.runtime.interopservices/4.3.0/runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.text.encoding/4.3.0/runtime.any.system.text.encoding.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.text.encoding.extensions/4.3.0/runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.threading.tasks/4.3.0/runtime.any.system.threading.tasks.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.native.system/4.3.0/runtime.native.system.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.native.system.security.cryptography.openssl/4.3.0/runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.unix.microsoft.win32.primitives/4.3.0/runtime.unix.microsoft.win32.primitives.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.unix.system.diagnostics.debug/4.3.0/runtime.unix.system.diagnostics.debug.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.unix.system.io.filesystem/4.3.0/runtime.unix.system.io.filesystem.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.unix.system.private.uri/4.3.0/runtime.unix.system.private.uri.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.unix.system.runtime.extensions/4.3.0/runtime.unix.system.runtime.extensions.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/stylecop.analyzers/1.1.118/stylecop.analyzers.1.1.118.nupkg.sha512",
"/home/simulation/.nuget/packages/system.appcontext/4.1.0/system.appcontext.4.1.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.buffers/4.3.0/system.buffers.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.codedom/8.0.0/system.codedom.8.0.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.collections/4.3.0/system.collections.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.collections.immutable/5.0.0/system.collections.immutable.5.0.0.nupkg.sha512",
@@ -97,7 +65,6 @@
"/home/simulation/.nuget/packages/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.diagnostics.process/4.3.0/system.diagnostics.process.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.diagnostics.tools/4.0.1/system.diagnostics.tools.4.0.1.nupkg.sha512",
"/home/simulation/.nuget/packages/system.diagnostics.tracing/4.3.0/system.diagnostics.tracing.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.drawing.common/5.0.3/system.drawing.common.5.0.3.nupkg.sha512",
"/home/simulation/.nuget/packages/system.dynamic.runtime/4.0.11/system.dynamic.runtime.4.0.11.nupkg.sha512",
"/home/simulation/.nuget/packages/system.globalization/4.3.0/system.globalization.4.3.0.nupkg.sha512",
@@ -111,7 +78,6 @@
"/home/simulation/.nuget/packages/system.numerics.vectors/4.5.0/system.numerics.vectors.4.5.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.objectmodel/4.0.12/system.objectmodel.4.0.12.nupkg.sha512",
"/home/simulation/.nuget/packages/system.private.servicemodel/4.8.1/system.private.servicemodel.4.8.1.nupkg.sha512",
"/home/simulation/.nuget/packages/system.private.uri/4.3.0/system.private.uri.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.reflection/4.3.0/system.reflection.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.reflection.dispatchproxy/4.7.1/system.reflection.dispatchproxy.4.7.1.nupkg.sha512",
"/home/simulation/.nuget/packages/system.reflection.emit/4.0.1/system.reflection.emit.4.0.1.nupkg.sha512",
@@ -155,9 +121,7 @@
"/home/simulation/.nuget/packages/system.xml.xdocument/4.0.11/system.xml.xdocument.4.0.11.nupkg.sha512",
"/home/simulation/.nuget/packages/system.xml.xmldocument/4.3.0/system.xml.xmldocument.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.xml.xpath/4.3.0/system.xml.xpath.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.xml.xpath.xmldocument/4.3.0/system.xml.xpath.xmldocument.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/microsoft.netcore.app.runtime.linux-x64/8.0.24/microsoft.netcore.app.runtime.linux-x64.8.0.24.nupkg.sha512",
"/home/simulation/.nuget/packages/microsoft.aspnetcore.app.runtime.linux-x64/8.0.24/microsoft.aspnetcore.app.runtime.linux-x64.8.0.24.nupkg.sha512"
"/home/simulation/.nuget/packages/system.xml.xpath.xmldocument/4.3.0/system.xml.xpath.xmldocument.4.3.0.nupkg.sha512"
],
"logs": []
}

View File

@@ -14,10 +14,10 @@
"System.ServiceModel.Duplex": "4.8.1",
"System.ServiceModel.Federation": "4.8.1",
"System.ServiceModel.NetTcp": "4.8.1",
"AntShell.Reference": "1.0.9585.20808",
"AntShell.Reference": "1.0.9593.26098",
"BigGustave.Reference": "1.0.0.0",
"crypto.Reference": "1.9.0.0",
"CxxDemangler.Reference": "1.0.9585.20792",
"CxxDemangler.Reference": "1.0.9593.26090",
"ELFSharp.Reference": "0.1.1.0",
"FdtSharp.Reference": "0.1.0.0",
"Infrastructure.Reference": "1.0.0.0",
@@ -1781,10 +1781,10 @@
}
}
},
"AntShell.Reference/1.0.9585.20808": {
"AntShell.Reference/1.0.9593.26098": {
"runtime": {
"AntShell.dll": {
"assemblyVersion": "1.0.9585.20808",
"assemblyVersion": "1.0.9593.26098",
"fileVersion": "0.0.0.0"
}
}
@@ -1805,10 +1805,10 @@
}
}
},
"CxxDemangler.Reference/1.0.9585.20792": {
"CxxDemangler.Reference/1.0.9593.26090": {
"runtime": {
"CxxDemangler.dll": {
"assemblyVersion": "1.0.9585.20792",
"assemblyVersion": "1.0.9593.26090",
"fileVersion": "0.0.0.0"
}
}
@@ -2840,7 +2840,7 @@
"serviceable": false,
"sha512": ""
},
"AntShell.Reference/1.0.9585.20808": {
"AntShell.Reference/1.0.9593.26098": {
"type": "reference",
"serviceable": false,
"sha512": ""
@@ -2855,7 +2855,7 @@
"serviceable": false,
"sha512": ""
},
"CxxDemangler.Reference/1.0.9585.20792": {
"CxxDemangler.Reference/1.0.9593.26090": {
"type": "reference",
"serviceable": false,
"sha512": ""

View File

@@ -14,10 +14,10 @@
"System.ServiceModel.Duplex": "4.8.1",
"System.ServiceModel.Federation": "4.8.1",
"System.ServiceModel.NetTcp": "4.8.1",
"AntShell.Reference": "1.0.9587.27432",
"AntShell.Reference": "1.0.9593.25552",
"BigGustave.Reference": "1.0.0.0",
"crypto.Reference": "1.9.0.0",
"CxxDemangler.Reference": "1.0.9587.27413",
"CxxDemangler.Reference": "1.0.9593.25537",
"ELFSharp.Reference": "0.1.1.0",
"FdtSharp.Reference": "0.1.0.0",
"Infrastructure.Reference": "1.0.0.0",
@@ -1781,10 +1781,10 @@
}
}
},
"AntShell.Reference/1.0.9587.27432": {
"AntShell.Reference/1.0.9593.25552": {
"runtime": {
"AntShell.dll": {
"assemblyVersion": "1.0.9587.27432",
"assemblyVersion": "1.0.9593.25552",
"fileVersion": "0.0.0.0"
}
}
@@ -1805,10 +1805,10 @@
}
}
},
"CxxDemangler.Reference/1.0.9587.27413": {
"CxxDemangler.Reference/1.0.9593.25537": {
"runtime": {
"CxxDemangler.dll": {
"assemblyVersion": "1.0.9587.27413",
"assemblyVersion": "1.0.9593.25537",
"fileVersion": "0.0.0.0"
}
}
@@ -2840,7 +2840,7 @@
"serviceable": false,
"sha512": ""
},
"AntShell.Reference/1.0.9587.27432": {
"AntShell.Reference/1.0.9593.25552": {
"type": "reference",
"serviceable": false,
"sha512": ""
@@ -2855,7 +2855,7 @@
"serviceable": false,
"sha512": ""
},
"CxxDemangler.Reference/1.0.9587.27413": {
"CxxDemangler.Reference/1.0.9593.25537": {
"type": "reference",
"serviceable": false,
"sha512": ""

View File

@@ -58,16 +58,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -75,11 +65,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/BigGustave/src/BigGustave/BigGustave_NET.csproj": {
@@ -132,16 +117,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -149,11 +124,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/CxxDemangler/CxxDemangler/CxxDemangler_NET.csproj": {
@@ -206,16 +176,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -223,11 +183,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/ELFSharp/ELFSharp/ELFSharp_NET.csproj": {
@@ -280,16 +235,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -297,11 +242,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/FdtSharp/FdtSharp/FdtSharp_NET.csproj": {
@@ -354,16 +294,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -371,11 +301,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/Migrant/Migrant/Migrant_NET.csproj": {
@@ -442,16 +367,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -459,11 +374,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/Packet.Net/PacketDotNet/PacketDotNet_NET.csproj": {
@@ -516,16 +426,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -533,11 +433,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/bc-csharp/crypto/crypto_NET.csproj": {
@@ -590,16 +485,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -607,11 +492,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/options-parser/OptionsParser_NET.csproj": {
@@ -682,16 +562,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -699,11 +569,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/termsharp/TermSharp_NET.csproj": {
@@ -766,16 +631,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -783,11 +638,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/termsharp/xwt/Xwt.Gtk/Xwt.Gtk3_NET.csproj": {
@@ -878,16 +728,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -895,11 +735,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/termsharp/xwt/Xwt/Xwt_NET.csproj": {
@@ -952,16 +787,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -969,11 +794,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/src/Infrastructure/src/Infrastructure_NET.csproj": {
@@ -1128,16 +948,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -1145,11 +955,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/src/Plugins/SystemCPlugin/SystemCPlugin_NET.csproj": {
@@ -1229,16 +1034,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -1246,11 +1041,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"version": 2,
"dgSpecHash": "dcI/SnlQQco=",
"dgSpecHash": "hKKQoSmjHNA=",
"success": true,
"projectFilePath": "/home/simulation/source/renode/src/Plugins/SystemCPlugin/SystemCPlugin_NET.csproj",
"expectedPackageFiles": [
@@ -50,41 +50,9 @@
"/home/simulation/.nuget/packages/nunit/3.13.1/nunit.3.13.1.nupkg.sha512",
"/home/simulation/.nuget/packages/nunit3testadapter/3.17.0/nunit3testadapter.3.17.0.nupkg.sha512",
"/home/simulation/.nuget/packages/pangosharp/3.24.24.95/pangosharp.3.24.24.95.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.collections/4.3.0/runtime.any.system.collections.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.diagnostics.tools/4.3.0/runtime.any.system.diagnostics.tools.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.diagnostics.tracing/4.3.0/runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.globalization/4.3.0/runtime.any.system.globalization.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.io/4.3.0/runtime.any.system.io.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.reflection/4.3.0/runtime.any.system.reflection.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.reflection.extensions/4.3.0/runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.reflection.primitives/4.3.0/runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.resources.resourcemanager/4.3.0/runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.runtime/4.3.0/runtime.any.system.runtime.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.runtime.handles/4.3.0/runtime.any.system.runtime.handles.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.runtime.interopservices/4.3.0/runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.text.encoding/4.3.0/runtime.any.system.text.encoding.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.text.encoding.extensions/4.3.0/runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.threading.tasks/4.3.0/runtime.any.system.threading.tasks.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.native.system/4.3.0/runtime.native.system.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.native.system.security.cryptography.openssl/4.3.0/runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.unix.microsoft.win32.primitives/4.3.0/runtime.unix.microsoft.win32.primitives.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.unix.system.diagnostics.debug/4.3.0/runtime.unix.system.diagnostics.debug.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.unix.system.io.filesystem/4.3.0/runtime.unix.system.io.filesystem.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.unix.system.private.uri/4.3.0/runtime.unix.system.private.uri.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.unix.system.runtime.extensions/4.3.0/runtime.unix.system.runtime.extensions.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/stylecop.analyzers/1.1.118/stylecop.analyzers.1.1.118.nupkg.sha512",
"/home/simulation/.nuget/packages/system.appcontext/4.1.0/system.appcontext.4.1.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.buffers/4.3.0/system.buffers.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.codedom/8.0.0/system.codedom.8.0.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.collections/4.3.0/system.collections.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.collections.immutable/5.0.0/system.collections.immutable.5.0.0.nupkg.sha512",
@@ -97,7 +65,6 @@
"/home/simulation/.nuget/packages/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.diagnostics.process/4.3.0/system.diagnostics.process.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.diagnostics.tools/4.0.1/system.diagnostics.tools.4.0.1.nupkg.sha512",
"/home/simulation/.nuget/packages/system.diagnostics.tracing/4.3.0/system.diagnostics.tracing.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.drawing.common/5.0.3/system.drawing.common.5.0.3.nupkg.sha512",
"/home/simulation/.nuget/packages/system.dynamic.runtime/4.0.11/system.dynamic.runtime.4.0.11.nupkg.sha512",
"/home/simulation/.nuget/packages/system.globalization/4.3.0/system.globalization.4.3.0.nupkg.sha512",
@@ -111,7 +78,6 @@
"/home/simulation/.nuget/packages/system.numerics.vectors/4.5.0/system.numerics.vectors.4.5.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.objectmodel/4.0.12/system.objectmodel.4.0.12.nupkg.sha512",
"/home/simulation/.nuget/packages/system.private.servicemodel/4.8.1/system.private.servicemodel.4.8.1.nupkg.sha512",
"/home/simulation/.nuget/packages/system.private.uri/4.3.0/system.private.uri.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.reflection/4.3.0/system.reflection.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.reflection.dispatchproxy/4.7.1/system.reflection.dispatchproxy.4.7.1.nupkg.sha512",
"/home/simulation/.nuget/packages/system.reflection.emit/4.0.1/system.reflection.emit.4.0.1.nupkg.sha512",
@@ -155,9 +121,7 @@
"/home/simulation/.nuget/packages/system.xml.xdocument/4.0.11/system.xml.xdocument.4.0.11.nupkg.sha512",
"/home/simulation/.nuget/packages/system.xml.xmldocument/4.3.0/system.xml.xmldocument.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.xml.xpath/4.3.0/system.xml.xpath.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.xml.xpath.xmldocument/4.3.0/system.xml.xpath.xmldocument.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/microsoft.netcore.app.runtime.linux-x64/8.0.24/microsoft.netcore.app.runtime.linux-x64.8.0.24.nupkg.sha512",
"/home/simulation/.nuget/packages/microsoft.aspnetcore.app.runtime.linux-x64/8.0.24/microsoft.aspnetcore.app.runtime.linux-x64.8.0.24.nupkg.sha512"
"/home/simulation/.nuget/packages/system.xml.xpath.xmldocument/4.3.0/system.xml.xpath.xmldocument.4.3.0.nupkg.sha512"
],
"logs": []
}

View File

@@ -11,10 +11,10 @@
"AntShell": "1.0.0",
"Infrastructure": "1.0.0",
"StyleCop.Analyzers": "1.1.118",
"AntShell.Reference": "1.0.9585.20808",
"AntShell.Reference": "1.0.9593.26098",
"BigGustave.Reference": "1.0.0.0",
"crypto.Reference": "1.9.0.0",
"CxxDemangler.Reference": "1.0.9585.20792",
"CxxDemangler.Reference": "1.0.9593.26090",
"ELFSharp.Reference": "0.1.1.0",
"FdtSharp.Reference": "0.1.0.0",
"Infrastructure.Reference": "1.0.0.0",
@@ -1574,10 +1574,10 @@
}
}
},
"AntShell.Reference/1.0.9585.20808": {
"AntShell.Reference/1.0.9593.26098": {
"runtime": {
"AntShell.dll": {
"assemblyVersion": "1.0.9585.20808",
"assemblyVersion": "1.0.9593.26098",
"fileVersion": "0.0.0.0"
}
}
@@ -1598,10 +1598,10 @@
}
}
},
"CxxDemangler.Reference/1.0.9585.20792": {
"CxxDemangler.Reference/1.0.9593.26090": {
"runtime": {
"CxxDemangler.dll": {
"assemblyVersion": "1.0.9585.20792",
"assemblyVersion": "1.0.9593.26090",
"fileVersion": "0.0.0.0"
}
}
@@ -2507,7 +2507,7 @@
"serviceable": false,
"sha512": ""
},
"AntShell.Reference/1.0.9585.20808": {
"AntShell.Reference/1.0.9593.26098": {
"type": "reference",
"serviceable": false,
"sha512": ""
@@ -2522,7 +2522,7 @@
"serviceable": false,
"sha512": ""
},
"CxxDemangler.Reference/1.0.9585.20792": {
"CxxDemangler.Reference/1.0.9593.26090": {
"type": "reference",
"serviceable": false,
"sha512": ""

View File

@@ -11,10 +11,10 @@
"AntShell": "1.0.0",
"Infrastructure": "1.0.0",
"StyleCop.Analyzers": "1.1.118",
"AntShell.Reference": "1.0.9587.27432",
"AntShell.Reference": "1.0.9593.25552",
"BigGustave.Reference": "1.0.0.0",
"crypto.Reference": "1.9.0.0",
"CxxDemangler.Reference": "1.0.9587.27413",
"CxxDemangler.Reference": "1.0.9593.25537",
"ELFSharp.Reference": "0.1.1.0",
"FdtSharp.Reference": "0.1.0.0",
"Infrastructure.Reference": "1.0.0.0",
@@ -1574,10 +1574,10 @@
}
}
},
"AntShell.Reference/1.0.9587.27432": {
"AntShell.Reference/1.0.9593.25552": {
"runtime": {
"AntShell.dll": {
"assemblyVersion": "1.0.9587.27432",
"assemblyVersion": "1.0.9593.25552",
"fileVersion": "0.0.0.0"
}
}
@@ -1598,10 +1598,10 @@
}
}
},
"CxxDemangler.Reference/1.0.9587.27413": {
"CxxDemangler.Reference/1.0.9593.25537": {
"runtime": {
"CxxDemangler.dll": {
"assemblyVersion": "1.0.9587.27413",
"assemblyVersion": "1.0.9593.25537",
"fileVersion": "0.0.0.0"
}
}
@@ -2507,7 +2507,7 @@
"serviceable": false,
"sha512": ""
},
"AntShell.Reference/1.0.9587.27432": {
"AntShell.Reference/1.0.9593.25552": {
"type": "reference",
"serviceable": false,
"sha512": ""
@@ -2522,7 +2522,7 @@
"serviceable": false,
"sha512": ""
},
"CxxDemangler.Reference/1.0.9587.27413": {
"CxxDemangler.Reference/1.0.9593.25537": {
"type": "reference",
"serviceable": false,
"sha512": ""

View File

@@ -58,16 +58,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -75,11 +65,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/BigGustave/src/BigGustave/BigGustave_NET.csproj": {
@@ -132,16 +117,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -149,11 +124,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/CxxDemangler/CxxDemangler/CxxDemangler_NET.csproj": {
@@ -206,16 +176,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -223,11 +183,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/ELFSharp/ELFSharp/ELFSharp_NET.csproj": {
@@ -280,16 +235,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -297,11 +242,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/FdtSharp/FdtSharp/FdtSharp_NET.csproj": {
@@ -354,16 +294,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -371,11 +301,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/Migrant/Migrant/Migrant_NET.csproj": {
@@ -442,16 +367,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -459,11 +374,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/Packet.Net/PacketDotNet/PacketDotNet_NET.csproj": {
@@ -516,16 +426,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -533,11 +433,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/bc-csharp/crypto/crypto_NET.csproj": {
@@ -590,16 +485,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -607,11 +492,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/options-parser/OptionsParser_NET.csproj": {
@@ -682,16 +562,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -699,11 +569,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/termsharp/TermSharp_NET.csproj": {
@@ -766,16 +631,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -783,11 +638,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/termsharp/xwt/Xwt.Gtk/Xwt.Gtk3_NET.csproj": {
@@ -878,16 +728,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -895,11 +735,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/termsharp/xwt/Xwt/Xwt_NET.csproj": {
@@ -952,16 +787,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -969,11 +794,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/src/Infrastructure/src/Infrastructure_NET.csproj": {
@@ -1128,16 +948,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -1145,11 +955,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/src/Plugins/WiresharkPlugin/WiresharkPlugin_NET.csproj": {
@@ -1216,16 +1021,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -1233,11 +1028,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"version": 2,
"dgSpecHash": "O70ZE7oAOS8=",
"dgSpecHash": "IH7KIke7ipg=",
"success": true,
"projectFilePath": "/home/simulation/source/renode/src/Plugins/WiresharkPlugin/WiresharkPlugin_NET.csproj",
"expectedPackageFiles": [
@@ -45,41 +45,9 @@
"/home/simulation/.nuget/packages/nunit/3.13.1/nunit.3.13.1.nupkg.sha512",
"/home/simulation/.nuget/packages/nunit3testadapter/3.17.0/nunit3testadapter.3.17.0.nupkg.sha512",
"/home/simulation/.nuget/packages/pangosharp/3.24.24.95/pangosharp.3.24.24.95.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.collections/4.3.0/runtime.any.system.collections.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.diagnostics.tools/4.3.0/runtime.any.system.diagnostics.tools.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.diagnostics.tracing/4.3.0/runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.globalization/4.3.0/runtime.any.system.globalization.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.io/4.3.0/runtime.any.system.io.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.reflection/4.3.0/runtime.any.system.reflection.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.reflection.extensions/4.3.0/runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.reflection.primitives/4.3.0/runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.resources.resourcemanager/4.3.0/runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.runtime/4.3.0/runtime.any.system.runtime.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.runtime.handles/4.3.0/runtime.any.system.runtime.handles.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.runtime.interopservices/4.3.0/runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.text.encoding/4.3.0/runtime.any.system.text.encoding.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.text.encoding.extensions/4.3.0/runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.threading.tasks/4.3.0/runtime.any.system.threading.tasks.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.native.system/4.3.0/runtime.native.system.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.native.system.security.cryptography.openssl/4.3.0/runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.unix.microsoft.win32.primitives/4.3.0/runtime.unix.microsoft.win32.primitives.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.unix.system.diagnostics.debug/4.3.0/runtime.unix.system.diagnostics.debug.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.unix.system.io.filesystem/4.3.0/runtime.unix.system.io.filesystem.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.unix.system.private.uri/4.3.0/runtime.unix.system.private.uri.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.unix.system.runtime.extensions/4.3.0/runtime.unix.system.runtime.extensions.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/stylecop.analyzers/1.1.118/stylecop.analyzers.1.1.118.nupkg.sha512",
"/home/simulation/.nuget/packages/system.appcontext/4.1.0/system.appcontext.4.1.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.buffers/4.3.0/system.buffers.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.codedom/8.0.0/system.codedom.8.0.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.collections/4.3.0/system.collections.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.collections.immutable/5.0.0/system.collections.immutable.5.0.0.nupkg.sha512",
@@ -92,7 +60,6 @@
"/home/simulation/.nuget/packages/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.diagnostics.process/4.3.0/system.diagnostics.process.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.diagnostics.tools/4.0.1/system.diagnostics.tools.4.0.1.nupkg.sha512",
"/home/simulation/.nuget/packages/system.diagnostics.tracing/4.3.0/system.diagnostics.tracing.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.drawing.common/5.0.3/system.drawing.common.5.0.3.nupkg.sha512",
"/home/simulation/.nuget/packages/system.dynamic.runtime/4.0.11/system.dynamic.runtime.4.0.11.nupkg.sha512",
"/home/simulation/.nuget/packages/system.globalization/4.3.0/system.globalization.4.3.0.nupkg.sha512",
@@ -104,7 +71,6 @@
"/home/simulation/.nuget/packages/system.linq.expressions/4.1.0/system.linq.expressions.4.1.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.memory/4.5.4/system.memory.4.5.4.nupkg.sha512",
"/home/simulation/.nuget/packages/system.objectmodel/4.0.12/system.objectmodel.4.0.12.nupkg.sha512",
"/home/simulation/.nuget/packages/system.private.uri/4.3.0/system.private.uri.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.reflection/4.3.0/system.reflection.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.reflection.emit/4.0.1/system.reflection.emit.4.0.1.nupkg.sha512",
"/home/simulation/.nuget/packages/system.reflection.emit.ilgeneration/4.7.0/system.reflection.emit.ilgeneration.4.7.0.nupkg.sha512",
@@ -137,9 +103,7 @@
"/home/simulation/.nuget/packages/system.xml.xdocument/4.0.11/system.xml.xdocument.4.0.11.nupkg.sha512",
"/home/simulation/.nuget/packages/system.xml.xmldocument/4.3.0/system.xml.xmldocument.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.xml.xpath/4.3.0/system.xml.xpath.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.xml.xpath.xmldocument/4.3.0/system.xml.xpath.xmldocument.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/microsoft.netcore.app.runtime.linux-x64/8.0.24/microsoft.netcore.app.runtime.linux-x64.8.0.24.nupkg.sha512",
"/home/simulation/.nuget/packages/microsoft.aspnetcore.app.runtime.linux-x64/8.0.24/microsoft.aspnetcore.app.runtime.linux-x64.8.0.24.nupkg.sha512"
"/home/simulation/.nuget/packages/system.xml.xpath.xmldocument/4.3.0/system.xml.xpath.xmldocument.4.3.0.nupkg.sha512"
],
"logs": []
}

View File

@@ -58,16 +58,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -75,11 +65,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/BigGustave/src/BigGustave/BigGustave_NET.csproj": {
@@ -132,16 +117,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -149,11 +124,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/CxxDemangler/CxxDemangler/CxxDemangler_NET.csproj": {
@@ -206,16 +176,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -223,11 +183,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/ELFSharp/ELFSharp/ELFSharp_NET.csproj": {
@@ -280,16 +235,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -297,11 +242,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/FdtSharp/FdtSharp/FdtSharp_NET.csproj": {
@@ -354,16 +294,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -371,11 +301,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/InpliTftpServer/libtftp/libtftp_alt_NET.csproj": {
@@ -428,16 +353,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -445,11 +360,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/Migrant/Migrant/Migrant_NET.csproj": {
@@ -516,16 +426,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -533,11 +433,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/Packet.Net/PacketDotNet/PacketDotNet_NET.csproj": {
@@ -590,16 +485,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -607,11 +492,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/bc-csharp/crypto/crypto_NET.csproj": {
@@ -664,16 +544,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -681,11 +551,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/options-parser/OptionsParser_NET.csproj": {
@@ -756,16 +621,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -773,11 +628,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/termsharp/TermSharp_NET.csproj": {
@@ -840,16 +690,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -857,11 +697,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/termsharp/xwt/Xwt.Gtk/Xwt.Gtk3_NET.csproj": {
@@ -952,16 +787,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -969,11 +794,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/termsharp/xwt/Xwt/Xwt_NET.csproj": {
@@ -1026,16 +846,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -1043,11 +853,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/src/Infrastructure/src/Infrastructure_NET.csproj": {
@@ -1202,16 +1007,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -1219,11 +1014,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/src/Infrastructure/src/Plugins/SampleCommandPlugin/SampleCommandPlugin_NET.csproj": {
@@ -1290,16 +1080,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -1307,11 +1087,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/src/Infrastructure/src/Plugins/TracePlugin/TracePlugin_NET.csproj": {
@@ -1386,16 +1161,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -1403,11 +1168,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/src/Plugins/CoSimulationPlugin/CoSimulationPlugin_NET.csproj": {
@@ -1490,16 +1250,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -1507,11 +1257,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/src/Plugins/SystemCPlugin/SystemCPlugin_NET.csproj": {
@@ -1591,16 +1336,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -1608,11 +1343,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/src/Plugins/WiresharkPlugin/WiresharkPlugin_NET.csproj": {
@@ -1679,16 +1409,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -1696,11 +1416,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/src/Renode/Renode_NET.csproj": {
@@ -1786,12 +1501,6 @@
"net8.0": {
"targetAlias": "net8.0",
"dependencies": {
"Microsoft.NET.ILLink.Tasks": {
"suppressParent": "All",
"target": "Package",
"version": "[8.0.24, )",
"autoReferenced": true
},
"Mono.Posix": {
"target": "Package",
"version": "[7.1.0-final.1.21458.1, )"
@@ -1821,16 +1530,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -1838,11 +1537,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
}
}

View File

@@ -12,13 +12,9 @@
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="/home/simulation/.nuget/packages/" />
</ItemGroup>
<ImportGroup Condition=" '$(TargetFramework)' == 'net8.0' AND '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)microsoft.net.illink.tasks/8.0.24/build/Microsoft.NET.ILLink.Tasks.props" Condition="Exists('$(NuGetPackageRoot)microsoft.net.illink.tasks/8.0.24/build/Microsoft.NET.ILLink.Tasks.props')" />
</ImportGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'net8.0' AND '$(ExcludeRestorePackageImports)' != 'true' ">
<PkgStyleCop_Analyzers Condition=" '$(PkgStyleCop_Analyzers)' == '' ">/home/simulation/.nuget/packages/stylecop.analyzers/1.1.118</PkgStyleCop_Analyzers>
<PkgNewtonsoft_Json Condition=" '$(PkgNewtonsoft_Json)' == '' ">/home/simulation/.nuget/packages/newtonsoft.json/9.0.1</PkgNewtonsoft_Json>
<PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">/home/simulation/.nuget/packages/microsoft.codeanalysis.analyzers/3.0.0</PkgMicrosoft_CodeAnalysis_Analyzers>
<PkgMicrosoft_NET_ILLink_Tasks Condition=" '$(PkgMicrosoft_NET_ILLink_Tasks)' == '' ">/home/simulation/.nuget/packages/microsoft.net.illink.tasks/8.0.24</PkgMicrosoft_NET_ILLink_Tasks>
</PropertyGroup>
</Project>

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"version": 2,
"dgSpecHash": "TSin3qMUgn8=",
"dgSpecHash": "QdXsd8OdAMs=",
"success": true,
"projectFilePath": "/home/simulation/source/renode/src/Renode/Renode_NET.csproj",
"expectedPackageFiles": [
@@ -35,7 +35,6 @@
"/home/simulation/.nuget/packages/microsoft.identitymodel.tokens/6.8.0/microsoft.identitymodel.tokens.6.8.0.nupkg.sha512",
"/home/simulation/.nuget/packages/microsoft.identitymodel.tokens.saml/6.8.0/microsoft.identitymodel.tokens.saml.6.8.0.nupkg.sha512",
"/home/simulation/.nuget/packages/microsoft.identitymodel.xml/6.8.0/microsoft.identitymodel.xml.6.8.0.nupkg.sha512",
"/home/simulation/.nuget/packages/microsoft.net.illink.tasks/8.0.24/microsoft.net.illink.tasks.8.0.24.nupkg.sha512",
"/home/simulation/.nuget/packages/microsoft.net.test.sdk/16.9.1/microsoft.net.test.sdk.16.9.1.nupkg.sha512",
"/home/simulation/.nuget/packages/microsoft.netcore.platforms/5.0.0/microsoft.netcore.platforms.5.0.0.nupkg.sha512",
"/home/simulation/.nuget/packages/microsoft.netcore.targets/1.1.0/microsoft.netcore.targets.1.1.0.nupkg.sha512",
@@ -55,41 +54,9 @@
"/home/simulation/.nuget/packages/nunit/3.13.1/nunit.3.13.1.nupkg.sha512",
"/home/simulation/.nuget/packages/nunit3testadapter/3.17.0/nunit3testadapter.3.17.0.nupkg.sha512",
"/home/simulation/.nuget/packages/pangosharp/3.24.24.95/pangosharp.3.24.24.95.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.collections/4.3.0/runtime.any.system.collections.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.diagnostics.tools/4.3.0/runtime.any.system.diagnostics.tools.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.diagnostics.tracing/4.3.0/runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.globalization/4.3.0/runtime.any.system.globalization.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.io/4.3.0/runtime.any.system.io.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.reflection/4.3.0/runtime.any.system.reflection.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.reflection.extensions/4.3.0/runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.reflection.primitives/4.3.0/runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.resources.resourcemanager/4.3.0/runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.runtime/4.3.0/runtime.any.system.runtime.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.runtime.handles/4.3.0/runtime.any.system.runtime.handles.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.runtime.interopservices/4.3.0/runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.text.encoding/4.3.0/runtime.any.system.text.encoding.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.text.encoding.extensions/4.3.0/runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.threading.tasks/4.3.0/runtime.any.system.threading.tasks.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.native.system/4.3.0/runtime.native.system.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.native.system.security.cryptography.openssl/4.3.0/runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.unix.microsoft.win32.primitives/4.3.0/runtime.unix.microsoft.win32.primitives.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.unix.system.diagnostics.debug/4.3.0/runtime.unix.system.diagnostics.debug.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.unix.system.io.filesystem/4.3.0/runtime.unix.system.io.filesystem.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.unix.system.private.uri/4.3.0/runtime.unix.system.private.uri.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.unix.system.runtime.extensions/4.3.0/runtime.unix.system.runtime.extensions.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/stylecop.analyzers/1.1.118/stylecop.analyzers.1.1.118.nupkg.sha512",
"/home/simulation/.nuget/packages/system.appcontext/4.1.0/system.appcontext.4.1.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.buffers/4.3.0/system.buffers.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.codedom/8.0.0/system.codedom.8.0.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.collections/4.3.0/system.collections.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.collections.immutable/5.0.0/system.collections.immutable.5.0.0.nupkg.sha512",
@@ -102,7 +69,6 @@
"/home/simulation/.nuget/packages/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.diagnostics.process/4.3.0/system.diagnostics.process.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.diagnostics.tools/4.0.1/system.diagnostics.tools.4.0.1.nupkg.sha512",
"/home/simulation/.nuget/packages/system.diagnostics.tracing/4.3.0/system.diagnostics.tracing.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.drawing.common/5.0.3/system.drawing.common.5.0.3.nupkg.sha512",
"/home/simulation/.nuget/packages/system.dynamic.runtime/4.0.11/system.dynamic.runtime.4.0.11.nupkg.sha512",
"/home/simulation/.nuget/packages/system.formats.asn1/6.0.0/system.formats.asn1.6.0.0.nupkg.sha512",
@@ -117,7 +83,6 @@
"/home/simulation/.nuget/packages/system.numerics.vectors/4.5.0/system.numerics.vectors.4.5.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.objectmodel/4.0.12/system.objectmodel.4.0.12.nupkg.sha512",
"/home/simulation/.nuget/packages/system.private.servicemodel/4.8.1/system.private.servicemodel.4.8.1.nupkg.sha512",
"/home/simulation/.nuget/packages/system.private.uri/4.3.0/system.private.uri.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.reflection/4.3.0/system.reflection.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.reflection.dispatchproxy/4.7.1/system.reflection.dispatchproxy.4.7.1.nupkg.sha512",
"/home/simulation/.nuget/packages/system.reflection.emit/4.0.1/system.reflection.emit.4.0.1.nupkg.sha512",
@@ -161,9 +126,7 @@
"/home/simulation/.nuget/packages/system.xml.xdocument/4.0.11/system.xml.xdocument.4.0.11.nupkg.sha512",
"/home/simulation/.nuget/packages/system.xml.xmldocument/4.3.0/system.xml.xmldocument.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.xml.xpath/4.3.0/system.xml.xpath.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.xml.xpath.xmldocument/4.3.0/system.xml.xpath.xmldocument.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/microsoft.netcore.app.runtime.linux-x64/8.0.24/microsoft.netcore.app.runtime.linux-x64.8.0.24.nupkg.sha512",
"/home/simulation/.nuget/packages/microsoft.aspnetcore.app.runtime.linux-x64/8.0.24/microsoft.aspnetcore.app.runtime.linux-x64.8.0.24.nupkg.sha512"
"/home/simulation/.nuget/packages/system.xml.xpath.xmldocument/4.3.0/system.xml.xpath.xmldocument.4.3.0.nupkg.sha512"
],
"logs": []
}

View File

@@ -26,12 +26,12 @@
"Xwt": "1.0.0",
"Xwt.Gtk3": "1.0.0",
"libtftp": "1.0.0",
"AntShell.Reference": "1.0.9585.20808",
"AntShell.Reference": "1.0.9593.26098",
"BigGustave.Reference": "1.0.0.0",
"CookComputing.XmlRpcV2": "2.5.0.0",
"CoSimulationPlugin.Reference": "1.0.0.0",
"crypto.Reference": "1.9.0.0",
"CxxDemangler.Reference": "1.0.9585.20792",
"CxxDemangler.Reference": "1.0.9593.26090",
"ELFSharp.Reference": "0.1.1.0",
"FdtSharp.Reference": "0.1.0.0",
"Infrastructure.Reference": "1.0.0.0",
@@ -1954,10 +1954,10 @@
}
}
},
"AntShell.Reference/1.0.9585.20808": {
"AntShell.Reference/1.0.9593.26098": {
"runtime": {
"AntShell.dll": {
"assemblyVersion": "1.0.9585.20808",
"assemblyVersion": "1.0.9593.26098",
"fileVersion": "0.0.0.0"
}
}
@@ -1994,10 +1994,10 @@
}
}
},
"CxxDemangler.Reference/1.0.9585.20792": {
"CxxDemangler.Reference/1.0.9593.26090": {
"runtime": {
"CxxDemangler.dll": {
"assemblyVersion": "1.0.9585.20792",
"assemblyVersion": "1.0.9593.26090",
"fileVersion": "0.0.0.0"
}
}
@@ -3134,7 +3134,7 @@
"serviceable": false,
"sha512": ""
},
"AntShell.Reference/1.0.9585.20808": {
"AntShell.Reference/1.0.9593.26098": {
"type": "reference",
"serviceable": false,
"sha512": ""
@@ -3159,7 +3159,7 @@
"serviceable": false,
"sha512": ""
},
"CxxDemangler.Reference/1.0.9585.20792": {
"CxxDemangler.Reference/1.0.9593.26090": {
"type": "reference",
"serviceable": false,
"sha512": ""

View File

@@ -16,11 +16,11 @@
"NUnit3TestAdapter": "3.17.0",
"Renode": "1.0.0",
"UnitTests": "1.0.0",
"AntShell.Reference": "1.0.9585.20808",
"AntShell.Reference": "1.0.9593.26098",
"BigGustave.Reference": "1.0.0.0",
"CoSimulationPlugin.Reference": "1.0.0.0",
"crypto.Reference": "1.9.0.0",
"CxxDemangler.Reference": "1.0.9585.20792",
"CxxDemangler.Reference": "1.0.9593.26090",
"ELFSharp.Reference": "0.1.1.0",
"FdtSharp.Reference": "0.1.0.0",
"Infrastructure.Reference": "1.0.0.0",
@@ -28,7 +28,7 @@
"Migrant.Reference": "0.14.0.0",
"OptionsParser.Reference": "0.1.0.0",
"PacketDotNet.Reference": "0.13.0.0",
"Renode.Reference": "1.16.0.20858",
"Renode.Reference": "1.16.0.26159",
"SampleCommandPlugin.Reference": "1.0.0.0",
"Sprache": "2.1.0.0",
"SystemCPlugin.Reference": "1.0.0.0",
@@ -2035,10 +2035,10 @@
}
}
},
"AntShell.Reference/1.0.9585.20808": {
"AntShell.Reference/1.0.9593.26098": {
"runtime": {
"AntShell.dll": {
"assemblyVersion": "1.0.9585.20808",
"assemblyVersion": "1.0.9593.26098",
"fileVersion": "0.0.0.0"
}
}
@@ -2067,10 +2067,10 @@
}
}
},
"CxxDemangler.Reference/1.0.9585.20792": {
"CxxDemangler.Reference/1.0.9593.26090": {
"runtime": {
"CxxDemangler.dll": {
"assemblyVersion": "1.0.9585.20792",
"assemblyVersion": "1.0.9593.26090",
"fileVersion": "0.0.0.0"
}
}
@@ -2131,10 +2131,10 @@
}
}
},
"Renode.Reference/1.16.0.20858": {
"Renode.Reference/1.16.0.26159": {
"runtime": {
"Renode.dll": {
"assemblyVersion": "1.16.0.20858",
"assemblyVersion": "1.16.0.26159",
"fileVersion": "0.0.0.0"
}
}
@@ -3255,7 +3255,7 @@
"serviceable": false,
"sha512": ""
},
"AntShell.Reference/1.0.9585.20808": {
"AntShell.Reference/1.0.9593.26098": {
"type": "reference",
"serviceable": false,
"sha512": ""
@@ -3275,7 +3275,7 @@
"serviceable": false,
"sha512": ""
},
"CxxDemangler.Reference/1.0.9585.20792": {
"CxxDemangler.Reference/1.0.9593.26090": {
"type": "reference",
"serviceable": false,
"sha512": ""
@@ -3315,7 +3315,7 @@
"serviceable": false,
"sha512": ""
},
"Renode.Reference/1.16.0.20858": {
"Renode.Reference/1.16.0.26159": {
"type": "reference",
"serviceable": false,
"sha512": ""

View File

@@ -18,11 +18,11 @@
"NUnit3TestAdapter": "3.17.0",
"Renode": "1.0.0",
"StyleCop.Analyzers": "1.1.118",
"AntShell.Reference": "1.0.9585.20808",
"AntShell.Reference": "1.0.9593.26098",
"BigGustave.Reference": "1.0.0.0",
"CoSimulationPlugin.Reference": "1.0.0.0",
"crypto.Reference": "1.9.0.0",
"CxxDemangler.Reference": "1.0.9585.20792",
"CxxDemangler.Reference": "1.0.9593.26090",
"ELFSharp.Reference": "0.1.1.0",
"FdtSharp.Reference": "0.1.0.0",
"Infrastructure.Reference": "1.0.0.0",
@@ -31,7 +31,7 @@
"Migrant.Reference": "0.14.0.0",
"OptionsParser.Reference": "0.1.0.0",
"PacketDotNet.Reference": "0.13.0.0",
"Renode.Reference": "1.16.0.20858",
"Renode.Reference": "1.16.0.26159",
"SampleCommandPlugin.Reference": "1.0.0.0",
"SystemCPlugin.Reference": "1.0.0.0",
"TermSharp.Reference": "0.0.0.0",
@@ -2018,10 +2018,10 @@
}
}
},
"AntShell.Reference/1.0.9585.20808": {
"AntShell.Reference/1.0.9593.26098": {
"runtime": {
"AntShell.dll": {
"assemblyVersion": "1.0.9585.20808",
"assemblyVersion": "1.0.9593.26098",
"fileVersion": "0.0.0.0"
}
}
@@ -2050,10 +2050,10 @@
}
}
},
"CxxDemangler.Reference/1.0.9585.20792": {
"CxxDemangler.Reference/1.0.9593.26090": {
"runtime": {
"CxxDemangler.dll": {
"assemblyVersion": "1.0.9585.20792",
"assemblyVersion": "1.0.9593.26090",
"fileVersion": "0.0.0.0"
}
}
@@ -2122,10 +2122,10 @@
}
}
},
"Renode.Reference/1.16.0.20858": {
"Renode.Reference/1.16.0.26159": {
"runtime": {
"Renode.dll": {
"assemblyVersion": "1.16.0.20858",
"assemblyVersion": "1.16.0.26159",
"fileVersion": "0.0.0.0"
}
}
@@ -3232,7 +3232,7 @@
"serviceable": false,
"sha512": ""
},
"AntShell.Reference/1.0.9585.20808": {
"AntShell.Reference/1.0.9593.26098": {
"type": "reference",
"serviceable": false,
"sha512": ""
@@ -3252,7 +3252,7 @@
"serviceable": false,
"sha512": ""
},
"CxxDemangler.Reference/1.0.9585.20792": {
"CxxDemangler.Reference/1.0.9593.26090": {
"type": "reference",
"serviceable": false,
"sha512": ""
@@ -3297,7 +3297,7 @@
"serviceable": false,
"sha512": ""
},
"Renode.Reference/1.16.0.20858": {
"Renode.Reference/1.16.0.26159": {
"type": "reference",
"serviceable": false,
"sha512": ""

View File

@@ -26,12 +26,12 @@
"Xwt": "1.0.0",
"Xwt.Gtk3": "1.0.0",
"libtftp": "1.0.0",
"AntShell.Reference": "1.0.9587.27432",
"AntShell.Reference": "1.0.9593.25552",
"BigGustave.Reference": "1.0.0.0",
"CookComputing.XmlRpcV2": "2.5.0.0",
"CoSimulationPlugin.Reference": "1.0.0.0",
"crypto.Reference": "1.9.0.0",
"CxxDemangler.Reference": "1.0.9587.27413",
"CxxDemangler.Reference": "1.0.9593.25537",
"ELFSharp.Reference": "0.1.1.0",
"FdtSharp.Reference": "0.1.0.0",
"Infrastructure.Reference": "1.0.0.0",
@@ -1954,10 +1954,10 @@
}
}
},
"AntShell.Reference/1.0.9587.27432": {
"AntShell.Reference/1.0.9593.25552": {
"runtime": {
"AntShell.dll": {
"assemblyVersion": "1.0.9587.27432",
"assemblyVersion": "1.0.9593.25552",
"fileVersion": "0.0.0.0"
}
}
@@ -1994,10 +1994,10 @@
}
}
},
"CxxDemangler.Reference/1.0.9587.27413": {
"CxxDemangler.Reference/1.0.9593.25537": {
"runtime": {
"CxxDemangler.dll": {
"assemblyVersion": "1.0.9587.27413",
"assemblyVersion": "1.0.9593.25537",
"fileVersion": "0.0.0.0"
}
}
@@ -3134,7 +3134,7 @@
"serviceable": false,
"sha512": ""
},
"AntShell.Reference/1.0.9587.27432": {
"AntShell.Reference/1.0.9593.25552": {
"type": "reference",
"serviceable": false,
"sha512": ""
@@ -3159,7 +3159,7 @@
"serviceable": false,
"sha512": ""
},
"CxxDemangler.Reference/1.0.9587.27413": {
"CxxDemangler.Reference/1.0.9593.25537": {
"type": "reference",
"serviceable": false,
"sha512": ""

View File

@@ -16,11 +16,11 @@
"NUnit3TestAdapter": "3.17.0",
"Renode": "1.0.0",
"UnitTests": "1.0.0",
"AntShell.Reference": "1.0.9587.27432",
"AntShell.Reference": "1.0.9593.25552",
"BigGustave.Reference": "1.0.0.0",
"CoSimulationPlugin.Reference": "1.0.0.0",
"crypto.Reference": "1.9.0.0",
"CxxDemangler.Reference": "1.0.9587.27413",
"CxxDemangler.Reference": "1.0.9593.25537",
"ELFSharp.Reference": "0.1.1.0",
"FdtSharp.Reference": "0.1.0.0",
"Infrastructure.Reference": "1.0.0.0",
@@ -28,7 +28,7 @@
"Migrant.Reference": "0.14.0.0",
"OptionsParser.Reference": "0.1.0.0",
"PacketDotNet.Reference": "0.13.0.0",
"Renode.Reference": "1.16.0.27480",
"Renode.Reference": "1.16.0.25606",
"SampleCommandPlugin.Reference": "1.0.0.0",
"Sprache": "2.1.0.0",
"SystemCPlugin.Reference": "1.0.0.0",
@@ -2035,10 +2035,10 @@
}
}
},
"AntShell.Reference/1.0.9587.27432": {
"AntShell.Reference/1.0.9593.25552": {
"runtime": {
"AntShell.dll": {
"assemblyVersion": "1.0.9587.27432",
"assemblyVersion": "1.0.9593.25552",
"fileVersion": "0.0.0.0"
}
}
@@ -2067,10 +2067,10 @@
}
}
},
"CxxDemangler.Reference/1.0.9587.27413": {
"CxxDemangler.Reference/1.0.9593.25537": {
"runtime": {
"CxxDemangler.dll": {
"assemblyVersion": "1.0.9587.27413",
"assemblyVersion": "1.0.9593.25537",
"fileVersion": "0.0.0.0"
}
}
@@ -2131,10 +2131,10 @@
}
}
},
"Renode.Reference/1.16.0.27480": {
"Renode.Reference/1.16.0.25606": {
"runtime": {
"Renode.dll": {
"assemblyVersion": "1.16.0.27480",
"assemblyVersion": "1.16.0.25606",
"fileVersion": "0.0.0.0"
}
}
@@ -3255,7 +3255,7 @@
"serviceable": false,
"sha512": ""
},
"AntShell.Reference/1.0.9587.27432": {
"AntShell.Reference/1.0.9593.25552": {
"type": "reference",
"serviceable": false,
"sha512": ""
@@ -3275,7 +3275,7 @@
"serviceable": false,
"sha512": ""
},
"CxxDemangler.Reference/1.0.9587.27413": {
"CxxDemangler.Reference/1.0.9593.25537": {
"type": "reference",
"serviceable": false,
"sha512": ""
@@ -3315,7 +3315,7 @@
"serviceable": false,
"sha512": ""
},
"Renode.Reference/1.16.0.27480": {
"Renode.Reference/1.16.0.25606": {
"type": "reference",
"serviceable": false,
"sha512": ""

View File

@@ -18,11 +18,11 @@
"NUnit3TestAdapter": "3.17.0",
"Renode": "1.0.0",
"StyleCop.Analyzers": "1.1.118",
"AntShell.Reference": "1.0.9587.27432",
"AntShell.Reference": "1.0.9593.25552",
"BigGustave.Reference": "1.0.0.0",
"CoSimulationPlugin.Reference": "1.0.0.0",
"crypto.Reference": "1.9.0.0",
"CxxDemangler.Reference": "1.0.9587.27413",
"CxxDemangler.Reference": "1.0.9593.25537",
"ELFSharp.Reference": "0.1.1.0",
"FdtSharp.Reference": "0.1.0.0",
"Infrastructure.Reference": "1.0.0.0",
@@ -31,7 +31,7 @@
"Migrant.Reference": "0.14.0.0",
"OptionsParser.Reference": "0.1.0.0",
"PacketDotNet.Reference": "0.13.0.0",
"Renode.Reference": "1.16.0.27480",
"Renode.Reference": "1.16.0.25606",
"SampleCommandPlugin.Reference": "1.0.0.0",
"SystemCPlugin.Reference": "1.0.0.0",
"TermSharp.Reference": "0.0.0.0",
@@ -2018,10 +2018,10 @@
}
}
},
"AntShell.Reference/1.0.9587.27432": {
"AntShell.Reference/1.0.9593.25552": {
"runtime": {
"AntShell.dll": {
"assemblyVersion": "1.0.9587.27432",
"assemblyVersion": "1.0.9593.25552",
"fileVersion": "0.0.0.0"
}
}
@@ -2050,10 +2050,10 @@
}
}
},
"CxxDemangler.Reference/1.0.9587.27413": {
"CxxDemangler.Reference/1.0.9593.25537": {
"runtime": {
"CxxDemangler.dll": {
"assemblyVersion": "1.0.9587.27413",
"assemblyVersion": "1.0.9593.25537",
"fileVersion": "0.0.0.0"
}
}
@@ -2122,10 +2122,10 @@
}
}
},
"Renode.Reference/1.16.0.27480": {
"Renode.Reference/1.16.0.25606": {
"runtime": {
"Renode.dll": {
"assemblyVersion": "1.16.0.27480",
"assemblyVersion": "1.16.0.25606",
"fileVersion": "0.0.0.0"
}
}
@@ -3232,7 +3232,7 @@
"serviceable": false,
"sha512": ""
},
"AntShell.Reference/1.0.9587.27432": {
"AntShell.Reference/1.0.9593.25552": {
"type": "reference",
"serviceable": false,
"sha512": ""
@@ -3252,7 +3252,7 @@
"serviceable": false,
"sha512": ""
},
"CxxDemangler.Reference/1.0.9587.27413": {
"CxxDemangler.Reference/1.0.9593.25537": {
"type": "reference",
"serviceable": false,
"sha512": ""
@@ -3297,7 +3297,7 @@
"serviceable": false,
"sha512": ""
},
"Renode.Reference/1.16.0.27480": {
"Renode.Reference/1.16.0.25606": {
"type": "reference",
"serviceable": false,
"sha512": ""

View File

@@ -58,16 +58,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -75,11 +65,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/BigGustave/src/BigGustave/BigGustave_NET.csproj": {
@@ -132,16 +117,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -149,11 +124,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/CxxDemangler/CxxDemangler/CxxDemangler_NET.csproj": {
@@ -206,16 +176,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -223,11 +183,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/ELFSharp/ELFSharp/ELFSharp_NET.csproj": {
@@ -280,16 +235,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -297,11 +242,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/FdtSharp/FdtSharp/FdtSharp_NET.csproj": {
@@ -354,16 +294,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -371,11 +301,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/InpliTftpServer/libtftp/libtftp_alt_NET.csproj": {
@@ -428,16 +353,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -445,11 +360,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/Migrant/Migrant/Migrant_NET.csproj": {
@@ -516,16 +426,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -533,11 +433,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/Packet.Net/PacketDotNet/PacketDotNet_NET.csproj": {
@@ -590,16 +485,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -607,11 +492,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/bc-csharp/crypto/crypto_NET.csproj": {
@@ -664,16 +544,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -681,11 +551,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/options-parser/OptionsParser_NET.csproj": {
@@ -756,16 +621,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -773,11 +628,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/termsharp/TermSharp_NET.csproj": {
@@ -840,16 +690,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -857,11 +697,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/termsharp/xwt/Xwt.Gtk/Xwt.Gtk3_NET.csproj": {
@@ -952,16 +787,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -969,11 +794,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/lib/termsharp/xwt/Xwt/Xwt_NET.csproj": {
@@ -1026,16 +846,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -1043,11 +853,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/src/Infrastructure/src/Emulator/Main/Tests/UnitTests/UnitTests_NET.csproj": {
@@ -1140,16 +945,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -1157,11 +952,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/src/Infrastructure/src/Infrastructure_NET.csproj": {
@@ -1316,16 +1106,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -1333,11 +1113,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/src/Infrastructure/src/Plugins/SampleCommandPlugin/SampleCommandPlugin_NET.csproj": {
@@ -1404,16 +1179,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -1421,11 +1186,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/src/Infrastructure/src/Plugins/TracePlugin/TracePlugin_NET.csproj": {
@@ -1500,16 +1260,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -1517,11 +1267,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/src/Plugins/CoSimulationPlugin/CoSimulationPlugin_NET.csproj": {
@@ -1604,16 +1349,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -1621,11 +1356,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/src/Plugins/SystemCPlugin/SystemCPlugin_NET.csproj": {
@@ -1705,16 +1435,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -1722,11 +1442,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/src/Plugins/WiresharkPlugin/WiresharkPlugin_NET.csproj": {
@@ -1793,16 +1508,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -1810,11 +1515,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/src/Renode/Renode_NET.csproj": {
@@ -1900,12 +1600,6 @@
"net8.0": {
"targetAlias": "net8.0",
"dependencies": {
"Microsoft.NET.ILLink.Tasks": {
"suppressParent": "All",
"target": "Package",
"version": "[8.0.24, )",
"autoReferenced": true
},
"Mono.Posix": {
"target": "Package",
"version": "[7.1.0-final.1.21458.1, )"
@@ -1935,16 +1629,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -1952,11 +1636,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
},
"/home/simulation/source/renode/tests/unit-tests/RenodeTests/RenodeTests_NET.csproj": {
@@ -2040,16 +1719,6 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[8.0.24, 8.0.24]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
@@ -2057,11 +1726,6 @@
},
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"version": 2,
"dgSpecHash": "sgZSMtdL1AA=",
"dgSpecHash": "cjue2kKsa50=",
"success": true,
"projectFilePath": "/home/simulation/source/renode/tests/unit-tests/RenodeTests/RenodeTests_NET.csproj",
"expectedPackageFiles": [
@@ -56,40 +56,8 @@
"/home/simulation/.nuget/packages/nunit/3.13.1/nunit.3.13.1.nupkg.sha512",
"/home/simulation/.nuget/packages/nunit3testadapter/3.17.0/nunit3testadapter.3.17.0.nupkg.sha512",
"/home/simulation/.nuget/packages/pangosharp/3.24.24.95/pangosharp.3.24.24.95.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.collections/4.3.0/runtime.any.system.collections.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.diagnostics.tools/4.3.0/runtime.any.system.diagnostics.tools.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.diagnostics.tracing/4.3.0/runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.globalization/4.3.0/runtime.any.system.globalization.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.io/4.3.0/runtime.any.system.io.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.reflection/4.3.0/runtime.any.system.reflection.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.reflection.extensions/4.3.0/runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.reflection.primitives/4.3.0/runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.resources.resourcemanager/4.3.0/runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.runtime/4.3.0/runtime.any.system.runtime.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.runtime.handles/4.3.0/runtime.any.system.runtime.handles.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.runtime.interopservices/4.3.0/runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.text.encoding/4.3.0/runtime.any.system.text.encoding.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.text.encoding.extensions/4.3.0/runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.threading.tasks/4.3.0/runtime.any.system.threading.tasks.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.native.system/4.3.0/runtime.native.system.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.native.system.security.cryptography.openssl/4.3.0/runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.unix.microsoft.win32.primitives/4.3.0/runtime.unix.microsoft.win32.primitives.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.unix.system.diagnostics.debug/4.3.0/runtime.unix.system.diagnostics.debug.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.unix.system.io.filesystem/4.3.0/runtime.unix.system.io.filesystem.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.unix.system.private.uri/4.3.0/runtime.unix.system.private.uri.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.unix.system.runtime.extensions/4.3.0/runtime.unix.system.runtime.extensions.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.appcontext/4.1.0/system.appcontext.4.1.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.buffers/4.3.0/system.buffers.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.codedom/8.0.0/system.codedom.8.0.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.collections/4.3.0/system.collections.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.collections.immutable/5.0.0/system.collections.immutable.5.0.0.nupkg.sha512",
@@ -103,7 +71,6 @@
"/home/simulation/.nuget/packages/system.diagnostics.eventlog/6.0.0/system.diagnostics.eventlog.6.0.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.diagnostics.process/4.3.0/system.diagnostics.process.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.diagnostics.tools/4.0.1/system.diagnostics.tools.4.0.1.nupkg.sha512",
"/home/simulation/.nuget/packages/system.diagnostics.tracing/4.3.0/system.diagnostics.tracing.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.drawing.common/5.0.3/system.drawing.common.5.0.3.nupkg.sha512",
"/home/simulation/.nuget/packages/system.dynamic.runtime/4.0.11/system.dynamic.runtime.4.0.11.nupkg.sha512",
"/home/simulation/.nuget/packages/system.formats.asn1/6.0.0/system.formats.asn1.6.0.0.nupkg.sha512",
@@ -118,7 +85,6 @@
"/home/simulation/.nuget/packages/system.numerics.vectors/4.5.0/system.numerics.vectors.4.5.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.objectmodel/4.0.12/system.objectmodel.4.0.12.nupkg.sha512",
"/home/simulation/.nuget/packages/system.private.servicemodel/4.8.1/system.private.servicemodel.4.8.1.nupkg.sha512",
"/home/simulation/.nuget/packages/system.private.uri/4.3.0/system.private.uri.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.reflection/4.3.0/system.reflection.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.reflection.dispatchproxy/4.7.1/system.reflection.dispatchproxy.4.7.1.nupkg.sha512",
"/home/simulation/.nuget/packages/system.reflection.emit/4.0.1/system.reflection.emit.4.0.1.nupkg.sha512",
@@ -162,9 +128,7 @@
"/home/simulation/.nuget/packages/system.xml.xdocument/4.0.11/system.xml.xdocument.4.0.11.nupkg.sha512",
"/home/simulation/.nuget/packages/system.xml.xmldocument/4.3.0/system.xml.xmldocument.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.xml.xpath/4.3.0/system.xml.xpath.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.xml.xpath.xmldocument/4.3.0/system.xml.xpath.xmldocument.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/microsoft.netcore.app.runtime.linux-x64/8.0.24/microsoft.netcore.app.runtime.linux-x64.8.0.24.nupkg.sha512",
"/home/simulation/.nuget/packages/microsoft.aspnetcore.app.runtime.linux-x64/8.0.24/microsoft.aspnetcore.app.runtime.linux-x64.8.0.24.nupkg.sha512"
"/home/simulation/.nuget/packages/system.xml.xpath.xmldocument/4.3.0/system.xml.xpath.xmldocument.4.3.0.nupkg.sha512"
],
"logs": []
}

View File

@@ -76,11 +76,6 @@
"warn": true,
"runtimeIdentifierGraphPath": "/home/simulation/.dotnet/sdk/8.0.418/RuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"version": 2,
"dgSpecHash": "nslL4JP51R0=",
"dgSpecHash": "DvnTc0n6pZs=",
"success": true,
"projectFilePath": "/home/simulation/source/renode/tools/analyzers/Analyzers.csproj",
"expectedPackageFiles": [
@@ -14,32 +14,6 @@
"/home/simulation/.nuget/packages/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.1.1.0.nupkg.sha512",
"/home/simulation/.nuget/packages/microsoft.netcore.targets/1.1.0/microsoft.netcore.targets.1.1.0.nupkg.sha512",
"/home/simulation/.nuget/packages/netstandard.library/2.0.3/netstandard.library.2.0.3.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.collections/4.3.0/runtime.any.system.collections.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.diagnostics.tools/4.3.0/runtime.any.system.diagnostics.tools.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.globalization/4.3.0/runtime.any.system.globalization.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.io/4.3.0/runtime.any.system.io.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.reflection/4.3.0/runtime.any.system.reflection.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.reflection.extensions/4.3.0/runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.reflection.primitives/4.3.0/runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.resources.resourcemanager/4.3.0/runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.runtime/4.3.0/runtime.any.system.runtime.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.text.encoding/4.3.0/runtime.any.system.text.encoding.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.any.system.threading.tasks/4.3.0/runtime.any.system.threading.tasks.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.native.system/4.3.0/runtime.native.system.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.native.system.security.cryptography.openssl/4.3.0/runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.unix.system.diagnostics.debug/4.3.0/runtime.unix.system.diagnostics.debug.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.unix.system.private.uri/4.3.0/runtime.unix.system.private.uri.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/runtime.unix.system.runtime.extensions/4.3.0/runtime.unix.system.runtime.extensions.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.buffers/4.5.1/system.buffers.4.5.1.nupkg.sha512",
"/home/simulation/.nuget/packages/system.collections/4.3.0/system.collections.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.collections.immutable/5.0.0/system.collections.immutable.5.0.0.nupkg.sha512",
@@ -59,7 +33,6 @@
"/home/simulation/.nuget/packages/system.memory/4.5.4/system.memory.4.5.4.nupkg.sha512",
"/home/simulation/.nuget/packages/system.numerics.vectors/4.4.0/system.numerics.vectors.4.4.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.objectmodel/4.3.0/system.objectmodel.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.private.uri/4.3.0/system.private.uri.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.reflection/4.3.0/system.reflection.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.reflection.emit/4.3.0/system.reflection.emit.4.3.0.nupkg.sha512",
"/home/simulation/.nuget/packages/system.reflection.emit.ilgeneration/4.3.0/system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",