mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
Renamed Zune5 to OpenZune
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
#if !ZUNE5
|
||||
#if !OPENZUNE
|
||||
|
||||
using Microsoft.Iris.Debug.Data;
|
||||
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
#if ZUNE5
|
||||
#if OPENZUNE
|
||||
|
||||
using OwlCore.Remoting;
|
||||
using System;
|
||||
|
||||
@@ -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,4 +1,4 @@
|
||||
#if ZUNE5
|
||||
#if OPENZUNE
|
||||
|
||||
using OwlCore.Remoting;
|
||||
using OwlCore.Remoting.Transfer;
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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
@@ -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>
|
||||
Reference in New Issue
Block a user