Renamed Zune5 to OpenZune

This commit is contained in:
Yoshi Askharoun
2022-06-09 19:03:40 -05:00
parent d2cd58fa39
commit 715088e634
7 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
#if !ZUNE5
#if !OPENZUNE
using Microsoft.Iris.Debug.Data;
+1 -1
View File
@@ -1,4 +1,4 @@
#if ZUNE5
#if OPENZUNE
using OwlCore.Remoting;
using System;
+1 -1
View File
@@ -23,7 +23,7 @@ namespace Microsoft.Iris.Debug.Data
public override string ToString()
{
var args =
#if ZUNE5
#if OPENZUNE
Arguments;
#else
Arguments.Select(a => a.ToString()).ToArray();
+1 -1
View File
@@ -1,4 +1,4 @@
#if ZUNE5
#if OPENZUNE
using OwlCore.Remoting;
using OwlCore.Remoting.Transfer;
+5 -5
View File
@@ -5,21 +5,21 @@
<RootNamespace>Microsoft.Iris.Debug</RootNamespace>
<LangVersion>latest</LangVersion>
<UseZune5>false</UseZune5>
<UseOpenZune>false</UseOpenZune>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'net6.0' ">
<UseZune5>true</UseZune5>
<UseOpenZune>true</UseOpenZune>
</PropertyGroup>
<ItemGroup Condition=" '$(UseZune5)' == 'true' ">
<ItemGroup Condition=" '$(UseOpenZune)' == 'true' ">
<PackageReference Include="OwlCore" Version="0.0.67" />
<PackageReference Include="Cauldron.BasicInterceptors" Version="3.2.3" />
</ItemGroup>
<PropertyGroup Condition=" '$(UseZune5)' == 'true' ">
<PropertyGroup Condition=" '$(UseOpenZune)' == 'true' ">
<ApplicationVersion>5.0.0.0</ApplicationVersion>
<DefineConstants>$(DefineConstants);ZUNE5</DefineConstants>
<DefineConstants>$(DefineConstants);OPENZUNE</DefineConstants>
</PropertyGroup>
</Project>
+1 -1
View File
@@ -181,7 +181,7 @@ namespace Microsoft.Iris.Queues
/// <param name="message"></param>
public static void SendDebugMessage(string message)
{
#if ZUNE5
#if OPENZUNE
Application.DebugSettings.Bridge.LogDispatcher(message);
#else
if (Application.DebugSettings.OpenDebugPipe && DebugPipe.IsConnected && DebugPipe.CanWrite)
+4 -4
View File
@@ -13,7 +13,7 @@
<AssemblyOriginatorKeyFile>..\36MSApp1024.snk</AssemblyOriginatorKeyFile>
<Platforms>AnyCPU;x64;x86</Platforms>
<UseZune5>false</UseZune5>
<UseOpenZune>false</UseOpenZune>
</PropertyGroup>
<ItemGroup>
@@ -22,7 +22,7 @@
</ItemGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'net6.0' ">
<UseZune5>true</UseZune5>
<UseOpenZune>true</UseOpenZune>
</PropertyGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net35' ">
@@ -46,8 +46,8 @@
<PackageReference Include="Vanara.PInvoke.Accessibility" Version="3.4.2" />
</ItemGroup>
<PropertyGroup Condition=" '$(UseZune5)' == 'true' ">
<PropertyGroup Condition=" '$(UseOpenZune)' == 'true' ">
<ApplicationVersion>5.0.0.0</ApplicationVersion>
<DefineConstants>$(DefineConstants);ZUNE5</DefineConstants>
<DefineConstants>$(DefineConstants);OPENZUNE</DefineConstants>
</PropertyGroup>
</Project>