我有一个使用.deps.json文件发布的适用于Linux 64的应用程序:
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v2.0/linux-x64",
"signature": "***************"
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v2.0": {},
".NETCoreApp,Version=v2.0/linux-x64": {
"Program/1.0.0": {
"dependencies": {
"Newtonsoft.Json": "11.0.2",
"System.Threading": "4.3.0",
"System.Threading.Thread": "4.3.0"
},
"runtime": {
"Program.dll": {}
}
},
}
............ more.............
}
............ more.............
}
我可以在Linux中运行该程序。 但是,如何隐藏/编辑此程序以在Windows x64中运行?