com.wallstop-studios.dxmessaging 2.0.0-rc19 → 2.0.0-rc21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,33 @@
1
+ fileFormatVersion: 2
2
+ guid: 390bb9381fa79fd458906a865ace0e80
3
+ PluginImporter:
4
+ externalObjects: {}
5
+ serializedVersion: 2
6
+ iconMap: {}
7
+ executionOrder: {}
8
+ defineConstraints: []
9
+ isPreloaded: 0
10
+ isOverridable: 1
11
+ isExplicitlyReferenced: 0
12
+ validateReferences: 1
13
+ platformData:
14
+ - first:
15
+ Any:
16
+ second:
17
+ enabled: 0
18
+ settings: {}
19
+ - first:
20
+ Editor: Editor
21
+ second:
22
+ enabled: 1
23
+ settings:
24
+ DefaultValueInitialized: true
25
+ - first:
26
+ Windows Store Apps: WindowsStoreApps
27
+ second:
28
+ enabled: 0
29
+ settings:
30
+ CPU: AnyCPU
31
+ userData:
32
+ assetBundleName:
33
+ assetBundleVariant:
@@ -36,6 +36,7 @@ namespace DxMessaging.Editor
36
36
  "Microsoft.CodeAnalysis.CSharp.dll",
37
37
  "System.Reflection.Metadata.dll",
38
38
  "System.Runtime.CompilerServices.Unsafe.dll",
39
+ "System.Collections.Immutable.dll",
39
40
  };
40
41
 
41
42
  private static readonly string LibraryArgument = $"-a:\"{LibraryPathRelative}\"";
@@ -3,7 +3,6 @@
3
3
  using System;
4
4
  using System.Runtime.CompilerServices;
5
5
  using System.Runtime.Serialization;
6
- using System.Text.Json.Serialization;
7
6
 
8
7
  /// <summary>
9
8
  /// A light abstraction layer over Unity's InstanceId. Meant to uniquely identify a game object.
@@ -14,12 +13,9 @@
14
13
  {
15
14
  public static readonly InstanceId EmptyId = new(0);
16
15
 
17
- [JsonInclude]
18
- [JsonPropertyName("id")]
19
16
  [DataMember(Name = "id")]
20
17
  public int Id => _id;
21
18
 
22
- [JsonIgnore]
23
19
  private readonly int _id;
24
20
 
25
21
  #if UNITY_2017_1_OR_NEWER
@@ -27,7 +23,6 @@
27
23
  public readonly UnityEngine.Object Object;
28
24
  #endif
29
25
 
30
- [JsonConstructor]
31
26
  public InstanceId(int id)
32
27
  {
33
28
  _id = id;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "com.wallstop-studios.dxmessaging",
3
- "version": "2.0.0-rc19",
3
+ "version": "2.0.0-rc21",
4
4
  "displayName": "DxMessaging",
5
5
  "description": "Synchronous Event Bus for Unity",
6
6
  "unity": "2021.3",