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; using Microsoft.Iris.Debug.Data;
+1 -1
View File
@@ -1,4 +1,4 @@
#if ZUNE5 #if OPENZUNE
using OwlCore.Remoting; using OwlCore.Remoting;
using System; using System;
+1 -1
View File
@@ -23,7 +23,7 @@ namespace Microsoft.Iris.Debug.Data
public override string ToString() public override string ToString()
{ {
var args = var args =
#if ZUNE5 #if OPENZUNE
Arguments; Arguments;
#else #else
Arguments.Select(a => a.ToString()).ToArray(); Arguments.Select(a => a.ToString()).ToArray();
+1 -1
View File
@@ -1,4 +1,4 @@
#if ZUNE5 #if OPENZUNE
using OwlCore.Remoting; using OwlCore.Remoting;
using OwlCore.Remoting.Transfer; using OwlCore.Remoting.Transfer;
+5 -5
View File
@@ -5,21 +5,21 @@
<RootNamespace>Microsoft.Iris.Debug</RootNamespace> <RootNamespace>Microsoft.Iris.Debug</RootNamespace>
<LangVersion>latest</LangVersion> <LangVersion>latest</LangVersion>
<UseZune5>false</UseZune5> <UseOpenZune>false</UseOpenZune>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'net6.0' "> <PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'net6.0' ">
<UseZune5>true</UseZune5> <UseOpenZune>true</UseOpenZune>
</PropertyGroup> </PropertyGroup>
<ItemGroup Condition=" '$(UseZune5)' == 'true' "> <ItemGroup Condition=" '$(UseOpenZune)' == 'true' ">
<PackageReference Include="OwlCore" Version="0.0.67" /> <PackageReference Include="OwlCore" Version="0.0.67" />
<PackageReference Include="Cauldron.BasicInterceptors" Version="3.2.3" /> <PackageReference Include="Cauldron.BasicInterceptors" Version="3.2.3" />
</ItemGroup> </ItemGroup>
<PropertyGroup Condition=" '$(UseZune5)' == 'true' "> <PropertyGroup Condition=" '$(UseOpenZune)' == 'true' ">
<ApplicationVersion>5.0.0.0</ApplicationVersion> <ApplicationVersion>5.0.0.0</ApplicationVersion>
<DefineConstants>$(DefineConstants);ZUNE5</DefineConstants> <DefineConstants>$(DefineConstants);OPENZUNE</DefineConstants>
</PropertyGroup> </PropertyGroup>
</Project> </Project>
+1 -1
View File
@@ -181,7 +181,7 @@ namespace Microsoft.Iris.Queues
/// <param name="message"></param> /// <param name="message"></param>
public static void SendDebugMessage(string message) public static void SendDebugMessage(string message)
{ {
#if ZUNE5 #if OPENZUNE
Application.DebugSettings.Bridge.LogDispatcher(message); Application.DebugSettings.Bridge.LogDispatcher(message);
#else #else
if (Application.DebugSettings.OpenDebugPipe && DebugPipe.IsConnected && DebugPipe.CanWrite) if (Application.DebugSettings.OpenDebugPipe && DebugPipe.IsConnected && DebugPipe.CanWrite)
+4 -4
View File
@@ -13,7 +13,7 @@
<AssemblyOriginatorKeyFile>..\36MSApp1024.snk</AssemblyOriginatorKeyFile> <AssemblyOriginatorKeyFile>..\36MSApp1024.snk</AssemblyOriginatorKeyFile>
<Platforms>AnyCPU;x64;x86</Platforms> <Platforms>AnyCPU;x64;x86</Platforms>
<UseZune5>false</UseZune5> <UseOpenZune>false</UseOpenZune>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
@@ -22,7 +22,7 @@
</ItemGroup> </ItemGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'net6.0' "> <PropertyGroup Condition=" '$(TargetFramework)' == 'net6.0' ">
<UseZune5>true</UseZune5> <UseOpenZune>true</UseOpenZune>
</PropertyGroup> </PropertyGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net35' "> <ItemGroup Condition=" '$(TargetFramework)' == 'net35' ">
@@ -46,8 +46,8 @@
<PackageReference Include="Vanara.PInvoke.Accessibility" Version="3.4.2" /> <PackageReference Include="Vanara.PInvoke.Accessibility" Version="3.4.2" />
</ItemGroup> </ItemGroup>
<PropertyGroup Condition=" '$(UseZune5)' == 'true' "> <PropertyGroup Condition=" '$(UseOpenZune)' == 'true' ">
<ApplicationVersion>5.0.0.0</ApplicationVersion> <ApplicationVersion>5.0.0.0</ApplicationVersion>
<DefineConstants>$(DefineConstants);ZUNE5</DefineConstants> <DefineConstants>$(DefineConstants);OPENZUNE</DefineConstants>
</PropertyGroup> </PropertyGroup>
</Project> </Project>