This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#if CS | |
using System.Runtime.InteropServices; | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Console.WriteLine("Managed"); | |
var r = Compute(12, 12); |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Program | |
{ | |
static void F_0(int a) {} | |
static void F_1(int a) {} | |
static void F_2(int a) {} | |
static void F_3(int a) {} | |
static void F_4(int a) {} | |
static void F_5(int a) {} | |
static void F_6(int a) {} | |
static void F_7(int a) {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Net; | |
using Mono.Debugger.Soft; | |
using static System.Console; | |
static int PidToPort(int pid) => 56000 + (pid % 1000); | |
var pid = 49149; // process ID of the Unity Editor or the IL2CPP Game | |
var ip = IPAddress.Loopback; // IP where the Unity Editor/Game is running |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.IO; | |
using System.Linq; | |
using System.Xml.Linq; | |
namespace UnityProjectExtractor | |
{ | |
internal readonly struct PathMap | |
{ | |
private readonly string _projectDirectory; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.IO; | |
using System.Linq; | |
using System.Text; | |
using System.Xml.Linq; | |
using UnityEngine; | |
using UnityEditor; | |
#if ENABLE_VSTU |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.IO; | |
using System.Linq; | |
using System.Text; | |
using System.Xml.Linq; | |
using UnityEngine; | |
using UnityEditor; | |
#if ENABLE_VSTU |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs b/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs | |
index e09132e2798..aa109ebd70d 100644 | |
--- a/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs | |
+++ b/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs | |
@@ -1786,6 +1786,11 @@ namespace Mono.Debugger.Soft | |
Send (CommandSet.VM, (int)CmdVM.STOP_BUFFERING); | |
} | |
+ internal VersionInfo VM_IsDeferred () { | |
+ var res = SendReceive (CommandSet.VM, (int)CmdVM.DEFERRED, null); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/symbols/mdb/Mono.Cecil.Mdb/MdbReader.cs b/symbols/mdb/Mono.Cecil.Mdb/MdbReader.cs | |
index 05ab3fb..e55109f 100644 | |
--- a/symbols/mdb/Mono.Cecil.Mdb/MdbReader.cs | |
+++ b/symbols/mdb/Mono.Cecil.Mdb/MdbReader.cs | |
@@ -94,7 +94,6 @@ static void ReadLocalVariables (MethodEntry entry, MethodBody body, Scope [] sco | |
void ReadLineNumbers (MethodEntry entry, InstructionMapper mapper) | |
{ | |
- Document document = null; | |
var table = entry.GetLineNumberTable (); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
struct Vector3 | |
{ | |
public float X, Y, Z; | |
public static bool operator true(Vector3 v) | |
{ | |
return v.X != 0 && v.Y != 0 && v.Z != 0; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/OmniSharp.MSBuild/MSBuildProjectSystem.cs b/src/OmniSharp.MSBuild/MSBuildProjectSystem.cs | |
index 3ebdeb9..66c8236 100644 | |
--- a/src/OmniSharp.MSBuild/MSBuildProjectSystem.cs | |
+++ b/src/OmniSharp.MSBuild/MSBuildProjectSystem.cs | |
@@ -134,6 +134,12 @@ public void Initalize(IConfiguration configuration) | |
compilationOptions = compilationOptions.WithAllowUnsafe(true); | |
} | |
+ if (projectFileInfo.SignAssembly && !string.IsNullOrEmpty(projectFileInfo.AssemblyOriginatorKeyFile)) | |
+ { |
NewerOlder