Added custom UIX debug bridge

This commit is contained in:
Yoshi Askharoun
2022-06-07 01:00:15 -05:00
parent 0999ee69bb
commit 61eef6ff9a
10 changed files with 228 additions and 5 deletions
+13
View File
@@ -0,0 +1,13 @@
using Microsoft.Iris.Debug;
namespace SimpleDebugClient
{
internal class Program
{
static void Main(string[] args)
{
Bridge bridge = new(OwlCore.Remoting.RemotingMode.Client);
while (true) ;
}
}
}
@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\UIX.Debug\UIX.Debug.csproj" />
</ItemGroup>
</Project>