From: Alistair Leslie-Hughes Subject: mscoree: Redirect .NET 1.0 to .NET 2.0 Message-Id: <520B1DB3.8010908@hotmail.com> Date: Wed, 14 Aug 2013 16:03:31 +1000 Hi, Changelog: mscoree: Redirect .NET 1.0 to .NET 2.0 Best Regards Alistair Leslie-Hughes From dc0214da5d0a4406ccba140c8c42d64c0f172ef2 Mon Sep 17 00:00:00 2001 From: Alistair Leslie-Hughes Date: Wed, 14 Aug 2013 14:08:31 +1000 Subject: [PATCH] Redirect .NET 1.0 to .NET 2.0 To: wine-patches --- dlls/mscoree/metahost.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/mscoree/metahost.c b/dlls/mscoree/metahost.c index eabdcf5..a12fdfc 100644 --- a/dlls/mscoree/metahost.c +++ b/dlls/mscoree/metahost.c @@ -50,9 +50,10 @@ static const WCHAR net_40_subdir[] = {'4','.','0',0}; static const struct ICLRRuntimeInfoVtbl CLRRuntimeInfoVtbl; -#define NUM_RUNTIMES 3 +#define NUM_RUNTIMES 4 static struct CLRRuntimeInfo runtimes[NUM_RUNTIMES] = { + {{&CLRRuntimeInfoVtbl}, net_20_subdir, 1, 0, 3705, 0}, {{&CLRRuntimeInfoVtbl}, net_20_subdir, 1, 1, 4322, 0}, {{&CLRRuntimeInfoVtbl}, net_20_subdir, 2, 0, 50727, 0}, {{&CLRRuntimeInfoVtbl}, net_40_subdir, 4, 0, 30319, 0} -- 1.8.1.2