/*
Copyright (C) 2014-2019 de4dot@gmail.com
This file is part of dnSpy
dnSpy is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
dnSpy is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with dnSpy. If not, see .
*/
using System;
namespace dnSpy.Contracts.Debugger {
///
/// Predefined GUIDs ()
///
public static class PredefinedDbgRuntimeGuids {
///
/// .NET Framework
///
public const string DotNetFramework = "CD03ACDD-4F3A-4736-8591-4902B4DCC8C1";
///
/// .NET Framework
///
public static readonly Guid DotNetFramework_Guid = new Guid(DotNetFramework);
///
/// .NET
///
public const string DotNet = "E0B4EB52-D1D9-42AB-B130-028CA31CF9F6";
///
/// .NET
///
public static readonly Guid DotNet_Guid = new Guid(DotNet);
///
/// Unity
///
public const string DotNetUnity = "CE8A11EE-73EF-4A51-B5D0-BDA2E665A2B4";
///
/// Unity
///
public static readonly Guid DotNetUnity_Guid = new Guid(DotNetUnity);
///
/// Mono
///
public const string DotNetMono = "7A99738E-9A75-4268-9B74-BBA174764FC7";
///
/// Mono
///
public static readonly Guid DotNetMono_Guid = new Guid(DotNetMono);
}
}