Navigation Menu

Skip to content
This repository has been archived by the owner on Feb 16, 2024. It is now read-only.

Commit

Permalink
remove ObsoleteComponent, fix for UWP
Browse files Browse the repository at this point in the history
  • Loading branch information
neuecc committed Jul 9, 2018
1 parent 87085b6 commit 7e397dd
Show file tree
Hide file tree
Showing 40 changed files with 19,831 additions and 2,316 deletions.
1,052 changes: 1,052 additions & 0 deletions Assembly-CSharp-firstpass.Player.csproj

Large diffs are not rendered by default.

393 changes: 193 additions & 200 deletions Assembly-CSharp-firstpass.csproj

Large diffs are not rendered by default.

821 changes: 821 additions & 0 deletions Assembly-CSharp.Player.csproj

Large diffs are not rendered by default.

389 changes: 196 additions & 193 deletions Assembly-CSharp.csproj

Large diffs are not rendered by default.

@@ -1,4 +1,4 @@
#if CSHARP_7_OR_LATER
#if UNITY_2018_1_OR_NEWER

using System;
using System.Collections.Generic;
Expand Down
Expand Up @@ -3,7 +3,7 @@

// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.

#if (NET_4_6)
#if (NETFX_CORE || NET_4_6 || UNITY_WSA_10_0)

using System;
using System.Threading;
Expand Down
114 changes: 0 additions & 114 deletions Assets/Plugins/UniRx/Scripts/InternalUtil/ReflectionAccessor.cs

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion Assets/Plugins/UniRx/Scripts/System/IObservable.cs
Expand Up @@ -2,7 +2,7 @@

using System;

#if !(NETFX_CORE || NET_4_6)
#if !(NETFX_CORE || NET_4_6 || UNITY_WSA_10_0)

namespace UniRx
{
Expand Down
2 changes: 1 addition & 1 deletion Assets/Plugins/UniRx/Scripts/System/IObserver.cs
@@ -1,6 +1,6 @@
// defined from .NET Framework 4.0 and NETFX_CORE

#if !(NETFX_CORE || NET_4_6)
#if !(NETFX_CORE || NET_4_6 || UNITY_WSA_10_0)

using System;

Expand Down
2 changes: 1 addition & 1 deletion Assets/Plugins/UniRx/Scripts/System/IProgress.cs
@@ -1,6 +1,6 @@
// defined from .NET Framework 4.5 and NETFX_CORE

#if !(NETFX_CORE || NET_4_6)
#if !(NETFX_CORE || NET_4_6 || UNITY_WSA_10_0)

using System;

Expand Down
2 changes: 1 addition & 1 deletion Assets/Plugins/UniRx/Scripts/System/Tuple.cs
Expand Up @@ -4,7 +4,7 @@
// 2. implements IEquatable<T1, T2,...>

// note, we need to create ValueTuple or UniRxTuple...
#if !(NETFX_CORE || NET_4_6)
#if !(NETFX_CORE || NET_4_6 || UNITY_WSA_10_0)

using System;
using System.Collections;
Expand Down

This file was deleted.

This file was deleted.

@@ -1,4 +1,4 @@
#if !(NET_4_6)
#if !(NETFX_CORE || NET_4_6 || UNITY_WSA_10_0)

using System;

Expand Down
143 changes: 0 additions & 143 deletions Assets/Plugins/UniRx/Scripts/UnityEngineBridge/LazyTask.cs

This file was deleted.

12 changes: 0 additions & 12 deletions Assets/Plugins/UniRx/Scripts/UnityEngineBridge/LazyTask.cs.meta

This file was deleted.

Expand Up @@ -482,13 +482,6 @@ void Awake()
mainThreadToken = new object();
initialized = true;

#if (NET_4_6)
if (UniRxSynchronizationContext.AutoInstall)
{
SynchronizationContext.SetSynchronizationContext(new UniRxSynchronizationContext());
}
#endif

updateMicroCoroutine = new MicroCoroutine(ex => unhandledExceptionCallback(ex));
fixedUpdateMicroCoroutine = new MicroCoroutine(ex => unhandledExceptionCallback(ex));
endOfFrameMicroCoroutine = new MicroCoroutine(ex => unhandledExceptionCallback(ex));
Expand Down

0 comments on commit 7e397dd

Please sign in to comment.