diff --git a/README.md b/README.md index bf4c21142..980241e60 100644 --- a/README.md +++ b/README.md @@ -621,6 +621,20 @@ class _MyAppState extends State { > commandLineArgs.add("--profiler-report") > commandLineArgs.add("--profiler-output-file=" + workingDir + "/build/il2cpp_"+ abi + "_" + configuration + "/il2cpp_conv.traceevents") +### Web GL + +> If you develop and ship Flutter with Unity WebGL then you will first notice, that stacked Widgets over your UnityWidget are not tappable! + +This is actually a Flutter related Issue (See: https://github.com/flutter/flutter/issues/72273). + +To solve this, Flutter-Team already got a solution for this. Use: [PointerInterceptor](https://pub.dev/packages/pointer_interceptor)! + +Example usage: + +![PointerInterceptor](https://github.com/juicycleff/flutter-unity-view-widget/blob/master/files/PointerInterceptor.png?raw=true) + +Note: We already integrated this into our [Examples](/example/lib/screens/) in the `/example` folder. + #### Sponsors diff --git a/example/lib/screens/api_screen.dart b/example/lib/screens/api_screen.dart index 2a1a7991d..c7a74e504 100644 --- a/example/lib/screens/api_screen.dart +++ b/example/lib/screens/api_screen.dart @@ -1,5 +1,6 @@ import 'package:flutter/material.dart'; import 'package:flutter_unity_widget/flutter_unity_widget.dart'; +import 'package:pointer_interceptor/pointer_interceptor.dart'; class ApiScreen extends StatefulWidget { ApiScreen({Key key}) : super(key: key); @@ -47,88 +48,90 @@ class _ApiScreenState extends State { webUrl: 'http://localhost:6080', ), ), - Positioned( - bottom: 20, - left: 20, - right: 20, - child: Card( - elevation: 10, - child: Column( - mainAxisSize: MainAxisSize.min, - children: [ - Padding( - padding: const EdgeInsets.only(top: 20), - child: Text("Rotation speed:"), - ), - Slider( - onChanged: (value) { - setState(() { - _sliderValue = value; - }); - setRotationSpeed(value.toString()); - }, - value: _sliderValue, - min: 0, - max: 20, - ), - FittedBox( - child: Row( - mainAxisAlignment: MainAxisAlignment.spaceBetween, - children: [ - MaterialButton( - onPressed: () { - _unityWidgetController.quit(); - }, - child: Text("Quit"), - ), - MaterialButton( - onPressed: () { - _unityWidgetController.create(); - }, - child: Text("Create"), - ), - MaterialButton( - onPressed: () { - _unityWidgetController.pause(); - }, - child: Text("Pause"), - ), - MaterialButton( - onPressed: () { - _unityWidgetController.resume(); - }, - child: Text("Resume"), - ), - ], + PointerInterceptor( + child: Positioned( + bottom: 20, + left: 20, + right: 20, + child: Card( + elevation: 10, + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + Padding( + padding: const EdgeInsets.only(top: 20), + child: Text("Rotation speed:"), ), - ), - FittedBox( - child: Row( - mainAxisAlignment: MainAxisAlignment.spaceBetween, - children: [ - MaterialButton( - onPressed: () async { - await _unityWidgetController - .openInNativeProcess(); - }, - child: Text("Open Native"), - ), - MaterialButton( - onPressed: () { - _unityWidgetController.unload(); - }, - child: Text("Unload"), - ), - MaterialButton( - onPressed: () { - _unityWidgetController.quit(); - }, - child: Text("Silent Quit"), - ), - ], + Slider( + onChanged: (value) { + setState(() { + _sliderValue = value; + }); + setRotationSpeed(value.toString()); + }, + value: _sliderValue, + min: 0, + max: 20, ), - ), - ], + FittedBox( + child: Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + MaterialButton( + onPressed: () { + _unityWidgetController.quit(); + }, + child: Text("Quit"), + ), + MaterialButton( + onPressed: () { + _unityWidgetController.create(); + }, + child: Text("Create"), + ), + MaterialButton( + onPressed: () { + _unityWidgetController.pause(); + }, + child: Text("Pause"), + ), + MaterialButton( + onPressed: () { + _unityWidgetController.resume(); + }, + child: Text("Resume"), + ), + ], + ), + ), + FittedBox( + child: Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + MaterialButton( + onPressed: () async { + await _unityWidgetController + .openInNativeProcess(); + }, + child: Text("Open Native"), + ), + MaterialButton( + onPressed: () { + _unityWidgetController.unload(); + }, + child: Text("Unload"), + ), + MaterialButton( + onPressed: () { + _unityWidgetController.quit(); + }, + child: Text("Silent Quit"), + ), + ], + ), + ), + ], + ), ), ), ), diff --git a/example/lib/screens/loader_screen.dart b/example/lib/screens/loader_screen.dart index 6f3103a63..23924c394 100644 --- a/example/lib/screens/loader_screen.dart +++ b/example/lib/screens/loader_screen.dart @@ -1,5 +1,6 @@ import 'package:flutter/material.dart'; import 'package:flutter_unity_widget/flutter_unity_widget.dart'; +import 'package:pointer_interceptor/pointer_interceptor.dart'; class LoaderScreen extends StatefulWidget { LoaderScreen({Key key}) : super(key: key); @@ -37,30 +38,32 @@ class _LoaderScreenState extends State { webUrl: 'http://localhost:6080', useAndroidViewSurface: true, ), - Positioned( - bottom: 20, - left: 20, - right: 20, - child: Card( - elevation: 10, - child: Column( - children: [ - Padding( - padding: const EdgeInsets.only(top: 20), - child: Text("Rotation speed:"), - ), - Slider( - onChanged: (value) { - setState(() { - _sliderValue = value; - }); - setRotationSpeed(value.toString()); - }, - value: _sliderValue, - min: 0, - max: 20, - ), - ], + PointerInterceptor( + child: Positioned( + bottom: 20, + left: 20, + right: 20, + child: Card( + elevation: 10, + child: Column( + children: [ + Padding( + padding: const EdgeInsets.only(top: 20), + child: Text("Rotation speed:"), + ), + Slider( + onChanged: (value) { + setState(() { + _sliderValue = value; + }); + setRotationSpeed(value.toString()); + }, + value: _sliderValue, + min: 0, + max: 20, + ), + ], + ), ), ), ), diff --git a/example/lib/screens/no_interaction_screen.dart b/example/lib/screens/no_interaction_screen.dart index 4e67324e5..cf5d2b55a 100644 --- a/example/lib/screens/no_interaction_screen.dart +++ b/example/lib/screens/no_interaction_screen.dart @@ -1,5 +1,6 @@ import 'package:flutter/material.dart'; import 'package:flutter_unity_widget/flutter_unity_widget.dart'; +import 'package:pointer_interceptor/pointer_interceptor.dart'; class NoInteractionScreen extends StatefulWidget { NoInteractionScreen({Key key}) : super(key: key); @@ -48,15 +49,17 @@ class _NoInteractionScreenState extends State { useAndroidViewSurface: true, borderRadius: BorderRadius.all(Radius.circular(70)), ), - Positioned( - bottom: 20, - left: 20, - right: 20, - child: ElevatedButton( - onPressed: () { - Navigator.of(context).pushNamed('/simple'); - }, - child: Text('Switch Flutter Screen'), + PointerInterceptor( + child: Positioned( + bottom: 20, + left: 20, + right: 20, + child: ElevatedButton( + onPressed: () { + Navigator.of(context).pushNamed('/simple'); + }, + child: Text('Switch Flutter Screen'), + ), ), ), ], diff --git a/example/lib/screens/orientation_screen.dart b/example/lib/screens/orientation_screen.dart index 1368c8f19..11671dc91 100644 --- a/example/lib/screens/orientation_screen.dart +++ b/example/lib/screens/orientation_screen.dart @@ -1,6 +1,7 @@ import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:flutter_unity_widget/flutter_unity_widget.dart'; +import 'package:pointer_interceptor/pointer_interceptor.dart'; class OrientationScreen extends StatefulWidget { OrientationScreen({Key key}) : super(key: key); @@ -38,46 +39,48 @@ class _LoaderScreenState extends State { webUrl: 'http://localhost:6080', useAndroidViewSurface: true, ), - Positioned( - bottom: 20, - left: 20, - right: 20, - child: Card( - elevation: 10, - child: Column( - children: [ - ElevatedButton( - onPressed: () { - if (MediaQuery.of(context).orientation == - Orientation.portrait) { - SystemChrome.setPreferredOrientations([ - DeviceOrientation.landscapeLeft, - DeviceOrientation.landscapeRight - ]); - } else if (MediaQuery.of(context).orientation == - Orientation.landscape) { - SystemChrome.setPreferredOrientations( - [DeviceOrientation.portraitUp]); - } - }, - child: Text("Change Orientation"), - ), - Padding( - padding: const EdgeInsets.only(top: 20), - child: Text("Rotation speed:"), - ), - Slider( - onChanged: (value) { - setState(() { - _sliderValue = value; - }); - setRotationSpeed(value.toString()); - }, - value: _sliderValue, - min: 0, - max: 20, - ), - ], + PointerInterceptor( + child: Positioned( + bottom: 20, + left: 20, + right: 20, + child: Card( + elevation: 10, + child: Column( + children: [ + ElevatedButton( + onPressed: () { + if (MediaQuery.of(context).orientation == + Orientation.portrait) { + SystemChrome.setPreferredOrientations([ + DeviceOrientation.landscapeLeft, + DeviceOrientation.landscapeRight + ]); + } else if (MediaQuery.of(context).orientation == + Orientation.landscape) { + SystemChrome.setPreferredOrientations( + [DeviceOrientation.portraitUp]); + } + }, + child: Text("Change Orientation"), + ), + Padding( + padding: const EdgeInsets.only(top: 20), + child: Text("Rotation speed:"), + ), + Slider( + onChanged: (value) { + setState(() { + _sliderValue = value; + }); + setRotationSpeed(value.toString()); + }, + value: _sliderValue, + min: 0, + max: 20, + ), + ], + ), ), ), ), diff --git a/example/lib/screens/simple_screen.dart b/example/lib/screens/simple_screen.dart index b545d42d9..ac9cbf8b7 100644 --- a/example/lib/screens/simple_screen.dart +++ b/example/lib/screens/simple_screen.dart @@ -1,5 +1,6 @@ import 'package:flutter/material.dart'; import 'package:flutter_unity_widget/flutter_unity_widget.dart'; +import 'package:pointer_interceptor/pointer_interceptor.dart'; class SimpleScreen extends StatefulWidget { SimpleScreen({Key key}) : super(key: key); @@ -34,7 +35,7 @@ class _SimpleScreenState extends State { title: Text('Simple Screen'), ), body: Card( - margin: const EdgeInsets.all(8), + margin: const EdgeInsets.all(0), clipBehavior: Clip.antiAlias, shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(20.0), @@ -49,30 +50,32 @@ class _SimpleScreenState extends State { useAndroidViewSurface: true, borderRadius: BorderRadius.all(Radius.circular(70)), ), - Positioned( - bottom: 20, - left: 20, - right: 20, - child: Card( - elevation: 10, - child: Column( - children: [ - Padding( - padding: const EdgeInsets.only(top: 20), - child: Text("Rotation speed:"), - ), - Slider( - onChanged: (value) { - setState(() { - _sliderValue = value; - }); - setRotationSpeed(value.toString()); - }, - value: _sliderValue, - min: 0, - max: 20, - ), - ], + PointerInterceptor( + child: Positioned( + bottom: 0, + left: 0, + right: 0, + child: Card( + elevation: 10, + child: Column( + children: [ + Padding( + padding: const EdgeInsets.only(top: 20), + child: Text("Rotation speed:"), + ), + Slider( + onChanged: (value) { + setState(() { + _sliderValue = value; + }); + setRotationSpeed(value.toString()); + }, + value: _sliderValue, + min: 0.0, + max: 1.0, + ), + ], + ), ), ), ), diff --git a/example/pubspec.yaml b/example/pubspec.yaml index 38271ad50..3419b0e50 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -3,26 +3,18 @@ description: Demonstrates how to use the flutter_unity_widget plugin. # The following line prevents the package from being accidentally published to # pub.dev using `pub publish`. This is preferred for private packages. -publish_to: 'none' # Remove this line if you wish to publish to pub.dev +publish_to: "none" # Remove this line if you wish to publish to pub.dev environment: sdk: ">=2.7.0 <3.0.0" dependencies: + cupertino_icons: ^1.0.0 flutter: sdk: flutter - flutter_unity_widget: - # When depending on this package from a real application you should use: - # flutter_unity_widget: ^x.y.z - # See https://dart.dev/tools/pub/dependencies#version-constraints - # The example app is bundled with the plugin so we use a path dependency on - # the parent directory to use the current plugin's version. path: ../ - - # The following adds the Cupertino Icons font to your application. - # Use with the CupertinoIcons class for iOS style icons. - cupertino_icons: ^1.0.0 + pointer_interceptor: ^0.9.3+2 dev_dependencies: flutter_test: @@ -30,26 +22,20 @@ dev_dependencies: # For information on the generic Dart part of this file, see the # following page: https://dart.dev/tools/pub/pubspec - # The following section is specific to Flutter. flutter: - # The following line ensures that the Material Icons font is # included with your application, so that you can use the icons in # the material Icons class. uses-material-design: true - # To add assets to your application, add an assets section, like this: # assets: # - images/a_dot_burr.jpeg # - images/a_dot_ham.jpeg - # An image asset can refer to one or more resolution-specific "variants", see # https://flutter.dev/assets-and-images/#resolution-aware. - # For details regarding adding assets from package dependencies, see # https://flutter.dev/assets-and-images/#from-packages - # To add custom fonts to your application, add a fonts section here, # in this "flutter" section. Each entry in this list should have a # "family" key with the font family name, and a "fonts" key with a diff --git a/example/unity/DemoApp/.vs/DemoApp/xs/UserPrefs.xml b/example/unity/DemoApp/.vs/DemoApp/xs/UserPrefs.xml index 6bbb3655e..21ccdd00b 100644 --- a/example/unity/DemoApp/.vs/DemoApp/xs/UserPrefs.xml +++ b/example/unity/DemoApp/.vs/DemoApp/xs/UserPrefs.xml @@ -7,7 +7,7 @@ - + @@ -15,11 +15,10 @@ - + - @@ -29,7 +28,7 @@ - + diff --git a/example/unity/DemoApp/.vs/DemoApp/xs/project-cache/Assembly-CSharp-Debug.json b/example/unity/DemoApp/.vs/DemoApp/xs/project-cache/Assembly-CSharp-Debug.json index ed9631fc4..67fdf027a 100644 --- a/example/unity/DemoApp/.vs/DemoApp/xs/project-cache/Assembly-CSharp-Debug.json +++ b/example/unity/DemoApp/.vs/DemoApp/xs/project-cache/Assembly-CSharp-Debug.json @@ -1 +1 @@ -{"Format":1,"ProjectReferences":[{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/UnityEditor.UI.csproj","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/UnityEngine.UI.csproj","Aliases":[],"Framework":null}],"MetadataReferences":[{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/JsonDotNet/Assemblies/Standalone/Newtonsoft.Json.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.Rider.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.Subsystem.Registration.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.TextMeshPro.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.Timeline.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.Timeline.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.VSCode.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARCore.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARCore.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARKit.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARKit.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARSubsystems.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARSubsystems.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.Management.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.Management.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEditor.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEditor.SpatialTracking.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEditor.XR.LegacyInputHelpers.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEngine.SpatialTracking.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEngine.XR.LegacyInputHelpers.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll","Aliases":[],"Framework":null}],"Files":["/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/Demo/GameManager.cs","/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/Demo/Rotate.cs","/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/Demo/SceneLoader.cs","/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/NativeAPI.cs","/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/SingletonMonoBehaviour.cs","/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/UnityMessageManager.cs","/Applications/Visual Studio.app/Contents/Resources/lib/monodevelop/AddIns/MonoDevelop.Unity/Analyzers/Microsoft.Unity.Analyzers.dll","/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/JsonDotNet/link.xml","/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/README.txt","/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/link.xml"],"BuildActions":["Compile","Compile","Compile","Compile","Compile","Compile","Analyzer","None","None","None"],"Analyzers":["/Applications/Visual Studio.app/Contents/Resources/lib/monodevelop/AddIns/MonoDevelop.Unity/Analyzers/Microsoft.Unity.Analyzers.dll"],"AdditionalFiles":[],"EditorConfigFiles":[]} \ No newline at end of file +{"Format":1,"ProjectReferences":[],"MetadataReferences":[{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/Microsoft.Win32.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/mscorlib.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/ref/2.1.0/netstandard.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/PackageCache/com.unity.nuget.newtonsoft-json@3.0.2/Runtime/Newtonsoft.Json.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.AppContext.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Buffers.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Concurrent.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.NonGeneric.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Specialized.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.ComponentModel.Composition.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.TypeConverter.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Console.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Core.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Data.Common.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Data.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Contracts.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Debug.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Process.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.StackTrace.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tools.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TraceSource.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tracing.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Drawing.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Drawing.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Dynamic.Runtime.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Calendars.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.IO.Compression.FileSystem.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.ZipFile.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Watcher.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.IsolatedStorage.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.MemoryMappedFiles.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Pipes.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Expressions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Parallel.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Queryable.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Memory.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Net.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Http.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NameResolution.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NetworkInformation.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Ping.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Requests.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Security.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Sockets.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebHeaderCollection.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.Client.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Numerics.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Numerics.Vectors.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.ObjectModel.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.DispatchProxy.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.ILGeneration.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.Lightweight.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Reader.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.ResourceManager.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Writer.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Handles.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Numerics.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Runtime.Serialization.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Json.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Xml.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Claims.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Csp.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Encoding.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Principal.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.SecureString.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.ServiceModel.Web.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Text.RegularExpressions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Overlapped.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Parallel.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Thread.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.ThreadPool.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Timer.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Transactions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.ValueTuple.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Web.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Windows.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Xml.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Linq.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.ReaderWriter.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Serialization.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XDocument.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlDocument.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlSerializer.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.XDocument.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.EditorCoroutines.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.Rider.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.Services.Core.Analytics.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.Services.Core.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.Services.Core.Environments.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.Subsystem.Registration.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.TextMeshPro.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.Timeline.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.Timeline.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.VSCode.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARCore.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARCore.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARFoundation.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARFoundation.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARKit.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARKit.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARSubsystems.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARSubsystems.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.Management.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.Management.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.CoreModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.PackageManagerUIModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEditor.SpatialTracking.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEditor.UI.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UIServiceModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEditor.XR.LegacyInputHelpers.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GIModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEngine.SpatialTracking.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEngine.UI.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsNativeModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/PlaybackEngines/WebGLSupport/Managed/UnityEngine.WebGLModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEngine.XR.LegacyInputHelpers.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll","Aliases":[],"Framework":null}],"Files":["/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/NativeAPI.cs","/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/Demo/Rotate.cs","/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/Demo/SceneLoader.cs","/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/Demo/GameManager.cs","/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/UnityMessageManager.cs","/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/SingletonMonoBehaviour.cs","/Applications/Visual Studio.app/Contents/Resources/lib/monodevelop/AddIns/MonoDevelop.Unity/Analyzers/Microsoft.Unity.Analyzers.dll","/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/JsonDotNet/link.xml","/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/JsonDotNet/Assemblies/AOT/Newtonsoft.Json.dll.txt","/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/README.txt","/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/JsonDotNet/Assemblies/Standalone/Newtonsoft.Json.dll.txt","/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/JsonDotNet/Assemblies/Standalone/Newtonsoft.Json.XML","/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/JsonDotNet/Assemblies/AOT/Newtonsoft.Json.XML","/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/JsonDotNet/Assemblies/Windows/Newtonsoft.Json.XML","/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/JsonDotNet/Assemblies/Windows/Newtonsoft.Json.dll.txt","/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/link.xml"],"BuildActions":["Compile","Compile","Compile","Compile","Compile","Compile","Analyzer","None","None","None","None","None","None","None","None","None"],"Analyzers":["/Applications/Visual Studio.app/Contents/Resources/lib/monodevelop/AddIns/MonoDevelop.Unity/Analyzers/Microsoft.Unity.Analyzers.dll"],"AdditionalFiles":[],"EditorConfigFiles":[]} \ No newline at end of file diff --git a/example/unity/DemoApp/.vs/DemoApp/xs/project-cache/Assembly-CSharp-Editor-Debug.json b/example/unity/DemoApp/.vs/DemoApp/xs/project-cache/Assembly-CSharp-Editor-Debug.json index 44c8ee769..ed416e8c5 100644 --- a/example/unity/DemoApp/.vs/DemoApp/xs/project-cache/Assembly-CSharp-Editor-Debug.json +++ b/example/unity/DemoApp/.vs/DemoApp/xs/project-cache/Assembly-CSharp-Editor-Debug.json @@ -1 +1 @@ -{"Format":1,"ProjectReferences":[{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Assembly-CSharp.csproj","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/UnityEditor.UI.csproj","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/UnityEngine.UI.csproj","Aliases":[],"Framework":null}],"MetadataReferences":[{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Assets/AssetStoreTools/Editor/AssetStoreTools.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/JsonDotNet/Assemblies/Standalone/Newtonsoft.Json.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Visual Studio.app/Contents/Resources/lib/monodevelop/AddIns/MonoDevelop.Unity/Editor/SyntaxTree.VisualStudio.Unity.Bridge.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.Rider.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.Subsystem.Registration.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.TextMeshPro.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.Timeline.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.Timeline.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.VSCode.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARCore.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARCore.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARKit.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARKit.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARSubsystems.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARSubsystems.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.Management.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.Management.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEditor.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEditor.SpatialTracking.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEditor.TestRunner.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEditor.XR.LegacyInputHelpers.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEngine.SpatialTracking.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEngine.TestRunner.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEngine.XR.LegacyInputHelpers.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2019.4.3f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll","Aliases":[],"Framework":null}],"Files":["/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/Editor/Build.cs","/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/Editor/SweetShellHelper.cs","/Users/rex/work/oss/packages/flutter_unity_widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/Editor/XCodePostBuild.cs","/Applications/Visual Studio.app/Contents/Resources/lib/monodevelop/AddIns/MonoDevelop.Unity/Analyzers/Microsoft.Unity.Analyzers.dll"],"BuildActions":["Compile","Compile","Compile","Analyzer"],"Analyzers":["/Applications/Visual Studio.app/Contents/Resources/lib/monodevelop/AddIns/MonoDevelop.Unity/Analyzers/Microsoft.Unity.Analyzers.dll"],"AdditionalFiles":[],"EditorConfigFiles":[]} \ No newline at end of file +{"Format":1,"ProjectReferences":[{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Assembly-CSharp.csproj","Aliases":[],"Framework":null}],"MetadataReferences":[{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Assets/AssetStoreTools/Editor/AssetStoreTools.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/PackageCache/com.unity.collab-proxy@1.15.16/Lib/Editor/PlasticSCM/log4netPlastic.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/PackageCache/com.unity.nuget.newtonsoft-json@3.0.2/Runtime/Newtonsoft.Json.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/PackageCache/com.unity.ext.nunit@1.0.6/net35/unity-custom/nunit.framework.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.EditorCoroutines.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/PackageCache/com.unity.collab-proxy@1.15.16/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/PackageCache/com.unity.collab-proxy@1.15.16/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.Rider.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.Services.Core.Analytics.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.Services.Core.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.Services.Core.Environments.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.Subsystem.Registration.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.TextMeshPro.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.Timeline.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.Timeline.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.VSCode.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARCore.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARCore.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARFoundation.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARFoundation.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARKit.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARKit.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARSubsystems.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARSubsystems.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.Management.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.Management.Editor.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.CoreModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.PackageManagerUIModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEditor.SpatialTracking.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEditor.TestRunner.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEditor.UI.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UIServiceModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEditor.XR.LegacyInputHelpers.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GIModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEngine.SpatialTracking.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEngine.TestRunner.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEngine.UI.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsNativeModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/PlaybackEngines/WebGLSupport/Managed/UnityEngine.WebGLModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEngine.XR.LegacyInputHelpers.dll","Aliases":[],"Framework":null},{"FilePath":"/Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll","Aliases":[],"Framework":null},{"FilePath":"/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Library/PackageCache/com.unity.collab-proxy@1.15.16/Lib/Editor/PlasticSCM/unityplastic.dll","Aliases":[],"Framework":null}],"Files":["/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/Editor/Build.cs","/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/Editor/XCodePostBuild.cs","/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Assets/FlutterUnityIntegration/Editor/SweetShellHelper.cs","/Applications/Visual Studio.app/Contents/Resources/lib/monodevelop/AddIns/MonoDevelop.Unity/Analyzers/Microsoft.Unity.Analyzers.dll","/Users/rebar/Development/flutter-unity-view-widget/example/unity/DemoApp/Assets/AssetStoreTools/Editor/AssetStoreTools.dll"],"BuildActions":["Compile","Compile","Compile","Analyzer","None"],"Analyzers":["/Applications/Visual Studio.app/Contents/Resources/lib/monodevelop/AddIns/MonoDevelop.Unity/Analyzers/Microsoft.Unity.Analyzers.dll"],"AdditionalFiles":[],"EditorConfigFiles":[]} \ No newline at end of file diff --git a/example/unity/DemoApp/Assembly-CSharp-Editor.csproj b/example/unity/DemoApp/Assembly-CSharp-Editor.csproj index cd2dd22bb..961b33580 100644 --- a/example/unity/DemoApp/Assembly-CSharp-Editor.csproj +++ b/example/unity/DemoApp/Assembly-CSharp-Editor.csproj @@ -1,1043 +1,851 @@ - - - - 9.0 - <_TargetFrameworkDirectories>non_empty_path_generated_by_unity.rider.package - <_FullFrameworkReferenceAssemblyPaths>non_empty_path_generated_by_unity.rider.package - true - - - Debug - AnyCPU - 10.0.20506 - 2.0 - - {47b96efc-de28-8583-8fac-5c1621986b03} - {E097FAD1-6243-4DAD-9C02-E9B9EFC3FFC1};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Library - Properties - Assembly-CSharp-Editor - v4.7.1 - 512 - . - - - true - full - false - Temp\Bin\Debug\Assembly-CSharp-Editor\ - UNITY_2022_1_0;UNITY_2022_1;UNITY_2022;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2022_1_OR_NEWER;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;USE_SEARCH_TABLE;USE_SEARCH_MODULE;USE_PROPERTY_DATABASE;USE_QUERY_BUILDER;USE_SEARCH_EXTENSION_API;SCENE_TEMPLATE_MODULE;ENABLE_AUDIO;ENABLE_CLOTH;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_EDITOR_GAME_SERVICES;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;PLATFORM_WEBGL;TEXTCORE_1_0_OR_NEWER;UNITY_WEBGL;UNITY_WEBGL_API;UNITY_DISABLE_WEB_VERIFICATION;UNITY_GFX_USE_PLATFORM_VSYNC;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_SPATIALTRACKING;ENABLE_MONO;NET_4_6;NET_UNITY_4_8;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_OSX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;UNITY_PRO_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER - prompt - 4 - 0169,0649 - False - False - - - true - true - false - false - false - - - - - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GIModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsNativeModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/PlaybackEngines/WebGLSupport/Managed/UnityEngine.WebGLModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.CoreModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.GraphViewModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.PackageManagerUIModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UIElementsModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UIServiceModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEditor.Graphs.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/PackageCache/com.unity.collab-proxy@1.15.16/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/PackageCache/com.unity.collab-proxy@1.15.16/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/PackageCache/com.unity.collab-proxy@1.15.16/Lib/Editor/PlasticSCM/unityplastic.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Assets/AssetStoreTools/Editor/AssetStoreTools.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/PackageCache/com.unity.collab-proxy@1.15.16/Lib/Editor/PlasticSCM/log4netPlastic.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/PackageCache/com.unity.ext.nunit@1.0.6/net35/unity-custom/nunit.framework.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.DataAnnotations.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Configuration.Install.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Configuration.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Data.Entity.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Data.Linq.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Data.OracleClient.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Data.Services.Client.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Data.Services.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Deployment.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Design.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Diagnostics.Tracing.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.DirectoryServices.Protocols.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.DirectoryServices.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.Design.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Dynamic.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.EnterpriseServices.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.IdentityModel.Selectors.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.IdentityModel.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Json.Microsoft.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Json.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Management.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Messaging.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.Formatting.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.WebRequest.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Net.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Reactive.Core.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Reactive.Debugger.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Reactive.Experimental.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Reactive.Interfaces.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Reactive.Linq.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Reactive.Observable.Aliases.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Reactive.PlatformServices.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Reactive.Providers.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Reactive.Runtime.Remoting.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Reactive.Windows.Forms.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Reactive.Windows.Threading.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Reflection.Context.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Caching.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.DurableInstancing.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Remoting.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.Formatters.Soap.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Security.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.ServiceModel.Activation.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.ServiceModel.Discovery.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.ServiceModel.Routing.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.ServiceModel.Web.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.ServiceModel.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.ServiceProcess.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Threading.Tasks.Dataflow.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Web.Abstractions.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Web.ApplicationServices.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Web.DynamicData.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Web.Extensions.Design.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Web.Extensions.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Web.Http.SelfHost.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Web.Http.WebHost.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Web.Http.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Web.Mobile.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Web.Mvc.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Web.Razor.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Web.RegularExpressions.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Web.Routing.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Web.Services.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Web.WebPages.Deployment.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Web.WebPages.Razor.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Web.WebPages.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Web.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Windows.Forms.DataVisualization.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Windows.Forms.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Windows.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Workflow.Activities.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Workflow.ComponentModel.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Workflow.Runtime.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Xaml.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Serialization.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEngine.TestRunner.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEditor.TestRunner.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARKit.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.VSCode.Editor.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.Management.Editor.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.Timeline.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.TextMeshPro.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARCore.Editor.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARKit.Editor.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.Subsystem.Registration.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEditor.UI.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.Rider.Editor.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEngine.UI.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEngine.SpatialTracking.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.EditorCoroutines.Editor.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEngine.XR.LegacyInputHelpers.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.Timeline.Editor.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARSubsystems.Editor.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEditor.XR.LegacyInputHelpers.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.Management.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARCore.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARSubsystems.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARFoundation.Editor.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEditor.SpatialTracking.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARFoundation.dll - - - - - {e8a35484-6fcd-29e2-b101-0aff15d18447} - Assembly-CSharp - - - - - + + + + 9.0 + + + Debug + AnyCPU + 10.0.20506 + 2.0 + + {FC6EB947-28DE-8385-8FAC-5C1621986B03} + Library + Properties + Assembly-CSharp-Editor + v4.7.1 + 512 + . + + + true + full + false + Temp\Bin\Debug\ + UNITY_2022_1_1;UNITY_2022_1;UNITY_2022;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2021_3_OR_NEWER;UNITY_2022_1_OR_NEWER;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;USE_SEARCH_TABLE;USE_SEARCH_MODULE;USE_PROPERTY_DATABASE;USE_QUERY_BUILDER;USE_SEARCH_EXTENSION_API;SCENE_TEMPLATE_MODULE;ENABLE_AUDIO;ENABLE_CLOTH;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_EDITOR_GAME_SERVICES;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;PLATFORM_WEBGL;TEXTCORE_1_0_OR_NEWER;UNITY_WEBGL;UNITY_WEBGL_API;UNITY_DISABLE_WEB_VERIFICATION;UNITY_GFX_USE_PLATFORM_VSYNC;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_SPATIALTRACKING;ENABLE_MONO;NET_4_6;NET_UNITY_4_8;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_OSX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;UNITY_PRO_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER + prompt + 4 + 0169 + False + + + pdbonly + true + Temp\bin\Release\ + prompt + 4 + 0169 + False + + + true + true + false + false + false + + + {E097FAD1-6243-4DAD-9C02-E9B9EFC3FFC1};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + Package + 2.0.15 + Editor:5 + WebGL:20 + 2022.1.1f1 + + + + + + + + + + + + + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GIModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsNativeModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/PlaybackEngines/WebGLSupport/Managed/UnityEngine.WebGLModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.CoreModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.GraphViewModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.PackageManagerUIModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UIElementsModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UIServiceModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll + + + Library/PackageCache/com.unity.collab-proxy@1.15.16/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll + + + Library/PackageCache/com.unity.collab-proxy@1.15.16/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll + + + Assets/AssetStoreTools/Editor/AssetStoreTools.dll + + + Library/PackageCache/com.unity.collab-proxy@1.15.16/Lib/Editor/PlasticSCM/log4netPlastic.dll + + + Library/PackageCache/com.unity.nuget.newtonsoft-json@3.0.2/Runtime/Newtonsoft.Json.dll + + + Library/PackageCache/com.unity.collab-proxy@1.15.16/Lib/Editor/PlasticSCM/unityplastic.dll + + + Library/PackageCache/com.unity.ext.nunit@1.0.6/net35/unity-custom/nunit.framework.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll + + + Library/ScriptAssemblies/UnityEngine.TestRunner.dll + + + Library/ScriptAssemblies/UnityEditor.TestRunner.dll + + + Library/ScriptAssemblies/Unity.XR.ARKit.dll + + + Library/ScriptAssemblies/Unity.VSCode.Editor.dll + + + Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll + + + Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll + + + Library/ScriptAssemblies/Unity.XR.Management.Editor.dll + + + Library/ScriptAssemblies/Unity.Timeline.dll + + + Library/ScriptAssemblies/Unity.TextMeshPro.dll + + + Library/ScriptAssemblies/Unity.XR.ARCore.Editor.dll + + + Library/ScriptAssemblies/Unity.XR.ARKit.Editor.dll + + + Library/ScriptAssemblies/Unity.Subsystem.Registration.dll + + + Library/ScriptAssemblies/UnityEditor.UI.dll + + + Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll + + + Library/ScriptAssemblies/Unity.Rider.Editor.dll + + + Library/ScriptAssemblies/UnityEngine.SpatialTracking.dll + + + Library/ScriptAssemblies/UnityEngine.UI.dll + + + Library/ScriptAssemblies/Unity.Services.Core.dll + + + Library/ScriptAssemblies/Unity.EditorCoroutines.Editor.dll + + + Library/ScriptAssemblies/Unity.Services.Core.Analytics.dll + + + Library/ScriptAssemblies/UnityEngine.XR.LegacyInputHelpers.dll + + + Library/ScriptAssemblies/Unity.Services.Core.Environments.dll + + + Library/ScriptAssemblies/Unity.Timeline.Editor.dll + + + Library/ScriptAssemblies/Unity.XR.ARSubsystems.Editor.dll + + + Library/ScriptAssemblies/UnityEditor.XR.LegacyInputHelpers.dll + + + Library/ScriptAssemblies/Unity.XR.Management.dll + + + Library/ScriptAssemblies/Unity.XR.ARCore.dll + + + Library/ScriptAssemblies/Unity.XR.ARSubsystems.dll + + + Library/ScriptAssemblies/Unity.XR.ARFoundation.Editor.dll + + + Library/ScriptAssemblies/UnityEditor.SpatialTracking.dll + + + Library/ScriptAssemblies/Unity.XR.ARFoundation.dll + + + + + {8454A3E8-CD6F-E229-B101-0AFF15D18447} + Assembly-CSharp + + + + + + diff --git a/example/unity/DemoApp/Assembly-CSharp.csproj b/example/unity/DemoApp/Assembly-CSharp.csproj index e5fa158a9..2f837e77d 100644 --- a/example/unity/DemoApp/Assembly-CSharp.csproj +++ b/example/unity/DemoApp/Assembly-CSharp.csproj @@ -1,760 +1,795 @@ - - - - 9.0 - <_TargetFrameworkDirectories>non_empty_path_generated_by_unity.rider.package - <_FullFrameworkReferenceAssemblyPaths>non_empty_path_generated_by_unity.rider.package - true - - - Debug - AnyCPU - 10.0.20506 - 2.0 - - {e8a35484-6fcd-29e2-b101-0aff15d18447} - {E097FAD1-6243-4DAD-9C02-E9B9EFC3FFC1};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Library - Properties - Assembly-CSharp - v4.7.1 - 512 - . - - - true - full - false - Temp\Bin\Debug\Assembly-CSharp\ - UNITY_2022_1_0;UNITY_2022_1;UNITY_2022;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2022_1_OR_NEWER;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;USE_SEARCH_TABLE;USE_SEARCH_MODULE;USE_PROPERTY_DATABASE;USE_QUERY_BUILDER;USE_SEARCH_EXTENSION_API;SCENE_TEMPLATE_MODULE;ENABLE_AUDIO;ENABLE_CLOTH;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_EDITOR_GAME_SERVICES;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;PLATFORM_WEBGL;TEXTCORE_1_0_OR_NEWER;UNITY_WEBGL;UNITY_WEBGL_API;UNITY_DISABLE_WEB_VERIFICATION;UNITY_GFX_USE_PLATFORM_VSYNC;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_SPATIALTRACKING;ENABLE_MONO;NET_STANDARD_2_0;NET_STANDARD;NET_STANDARD_2_1;NETSTANDARD;NETSTANDARD2_1;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_OSX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;UNITY_PRO_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER - prompt - 4 - 0169,0649 - False - False - - - true - true - false - false - false - - - - - - - - - - - - - - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GIModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsNativeModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/PlaybackEngines/WebGLSupport/Managed/UnityEngine.WebGLModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.CoreModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.GraphViewModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.PackageManagerUIModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UIElementsModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UIServiceModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/ref/2.1.0/netstandard.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/Microsoft.Win32.Primitives.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.AppContext.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Buffers.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Concurrent.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.NonGeneric.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Specialized.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.Primitives.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.TypeConverter.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Console.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Data.Common.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Contracts.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Debug.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Process.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.StackTrace.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tools.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TraceSource.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tracing.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Drawing.Primitives.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Dynamic.Runtime.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Calendars.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Extensions.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.ZipFile.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Primitives.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Watcher.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.IsolatedStorage.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.MemoryMappedFiles.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Pipes.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Expressions.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Parallel.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Queryable.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Memory.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Http.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NameResolution.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NetworkInformation.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Ping.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Primitives.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Requests.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Security.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Sockets.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebHeaderCollection.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.Client.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Numerics.Vectors.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.ObjectModel.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.DispatchProxy.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.ILGeneration.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.Lightweight.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Extensions.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Primitives.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Reader.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.ResourceManager.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Writer.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Extensions.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Handles.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Numerics.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Json.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Xml.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Claims.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Csp.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Encoding.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Primitives.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Principal.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.SecureString.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.Extensions.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Text.RegularExpressions.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Overlapped.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Extensions.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Parallel.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Thread.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.ThreadPool.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Timer.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.ValueTuple.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.ReaderWriter.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XDocument.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.XDocument.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlDocument.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlSerializer.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.ComponentModel.Composition.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Core.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Data.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Drawing.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.IO.Compression.FileSystem.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Net.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Numerics.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Runtime.Serialization.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.ServiceModel.Web.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Transactions.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Web.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Windows.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Linq.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Serialization.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Xml.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.dll - - - /Applications/Unity/Hub/Editor/2022.1.0b16/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/mscorlib.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARKit.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.VSCode.Editor.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.Management.Editor.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.Timeline.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.TextMeshPro.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARCore.Editor.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARKit.Editor.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.Subsystem.Registration.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEditor.UI.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.Rider.Editor.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEngine.UI.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEngine.SpatialTracking.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.EditorCoroutines.Editor.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEngine.XR.LegacyInputHelpers.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.Timeline.Editor.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARSubsystems.Editor.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEditor.XR.LegacyInputHelpers.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.Management.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARCore.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARSubsystems.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARFoundation.Editor.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/UnityEditor.SpatialTracking.dll - - - /Users/rexraphael/Work/personal/flutter-unity-view-widget/example/unity/DemoApp/Library/ScriptAssemblies/Unity.XR.ARFoundation.dll - - - - - - - + + + + 9.0 + + + Debug + AnyCPU + 10.0.20506 + 2.0 + + {8454A3E8-CD6F-E229-B101-0AFF15D18447} + Library + Properties + Assembly-CSharp + v4.7.1 + 512 + . + + + true + full + false + Temp\Bin\Debug\ + UNITY_2022_1_1;UNITY_2022_1;UNITY_2022;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2021_3_OR_NEWER;UNITY_2022_1_OR_NEWER;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;USE_SEARCH_TABLE;USE_SEARCH_MODULE;USE_PROPERTY_DATABASE;USE_QUERY_BUILDER;USE_SEARCH_EXTENSION_API;SCENE_TEMPLATE_MODULE;ENABLE_AUDIO;ENABLE_CLOTH;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_EDITOR_GAME_SERVICES;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;PLATFORM_WEBGL;TEXTCORE_1_0_OR_NEWER;UNITY_WEBGL;UNITY_WEBGL_API;UNITY_DISABLE_WEB_VERIFICATION;UNITY_GFX_USE_PLATFORM_VSYNC;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_SPATIALTRACKING;ENABLE_MONO;NET_STANDARD_2_0;NET_STANDARD;NET_STANDARD_2_1;NETSTANDARD;NETSTANDARD2_1;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_OSX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;UNITY_PRO_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER + prompt + 4 + 0169 + False + + + pdbonly + true + Temp\bin\Release\ + prompt + 4 + 0169 + False + + + true + true + false + false + false + + + {E097FAD1-6243-4DAD-9C02-E9B9EFC3FFC1};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + Package + 2.0.15 + Game:1 + WebGL:20 + 2022.1.1f1 + + + + + + + + + + + + + + + + + + + + + + + + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GIModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsNativeModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/PlaybackEngines/WebGLSupport/Managed/UnityEngine.WebGLModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.CoreModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.GraphViewModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.PackageManagerUIModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UIElementsModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UIServiceModule.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll + + + Library/PackageCache/com.unity.nuget.newtonsoft-json@3.0.2/Runtime/Newtonsoft.Json.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/ref/2.1.0/netstandard.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/Microsoft.Win32.Primitives.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.AppContext.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Buffers.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Concurrent.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.NonGeneric.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Specialized.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.Primitives.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.TypeConverter.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Console.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Data.Common.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Contracts.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Debug.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Process.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.StackTrace.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tools.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TraceSource.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tracing.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Drawing.Primitives.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Dynamic.Runtime.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Calendars.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Extensions.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.ZipFile.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Primitives.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Watcher.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.IsolatedStorage.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.MemoryMappedFiles.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Pipes.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Expressions.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Parallel.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Queryable.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Memory.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Http.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NameResolution.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NetworkInformation.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Ping.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Primitives.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Requests.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Security.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Sockets.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebHeaderCollection.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.Client.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Numerics.Vectors.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.ObjectModel.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.DispatchProxy.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.ILGeneration.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.Lightweight.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Extensions.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Primitives.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Reader.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.ResourceManager.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Writer.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Extensions.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Handles.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Numerics.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Json.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Xml.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Claims.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Csp.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Encoding.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Primitives.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Principal.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.SecureString.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.Extensions.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Text.RegularExpressions.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Overlapped.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Extensions.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Parallel.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Thread.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.ThreadPool.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Timer.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.ValueTuple.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.ReaderWriter.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XDocument.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.XDocument.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlDocument.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlSerializer.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.ComponentModel.Composition.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Core.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Data.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Drawing.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.IO.Compression.FileSystem.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Net.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Numerics.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Runtime.Serialization.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.ServiceModel.Web.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Transactions.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Web.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Windows.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Linq.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Serialization.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Xml.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.dll + + + /Applications/Unity/Hub/Editor/2022.1.1f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/mscorlib.dll + + + Library/ScriptAssemblies/Unity.XR.ARKit.dll + + + Library/ScriptAssemblies/Unity.VSCode.Editor.dll + + + Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll + + + Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll + + + Library/ScriptAssemblies/Unity.XR.Management.Editor.dll + + + Library/ScriptAssemblies/Unity.Timeline.dll + + + Library/ScriptAssemblies/Unity.TextMeshPro.dll + + + Library/ScriptAssemblies/Unity.XR.ARCore.Editor.dll + + + Library/ScriptAssemblies/Unity.XR.ARKit.Editor.dll + + + Library/ScriptAssemblies/Unity.Subsystem.Registration.dll + + + Library/ScriptAssemblies/UnityEditor.UI.dll + + + Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll + + + Library/ScriptAssemblies/Unity.Rider.Editor.dll + + + Library/ScriptAssemblies/UnityEngine.SpatialTracking.dll + + + Library/ScriptAssemblies/UnityEngine.UI.dll + + + Library/ScriptAssemblies/Unity.Services.Core.dll + + + Library/ScriptAssemblies/Unity.EditorCoroutines.Editor.dll + + + Library/ScriptAssemblies/Unity.Services.Core.Analytics.dll + + + Library/ScriptAssemblies/UnityEngine.XR.LegacyInputHelpers.dll + + + Library/ScriptAssemblies/Unity.Services.Core.Environments.dll + + + Library/ScriptAssemblies/Unity.Timeline.Editor.dll + + + Library/ScriptAssemblies/Unity.XR.ARSubsystems.Editor.dll + + + Library/ScriptAssemblies/UnityEditor.XR.LegacyInputHelpers.dll + + + Library/ScriptAssemblies/Unity.XR.Management.dll + + + Library/ScriptAssemblies/Unity.XR.ARCore.dll + + + Library/ScriptAssemblies/Unity.XR.ARSubsystems.dll + + + Library/ScriptAssemblies/Unity.XR.ARFoundation.Editor.dll + + + Library/ScriptAssemblies/UnityEditor.SpatialTracking.dll + + + Library/ScriptAssemblies/Unity.XR.ARFoundation.dll + + + + + + + + diff --git a/example/unity/DemoApp/Assets/FlutterUnityIntegration/Editor/Build.cs b/example/unity/DemoApp/Assets/FlutterUnityIntegration/Editor/Build.cs index d16c958d5..52520fdcd 100644 --- a/example/unity/DemoApp/Assets/FlutterUnityIntegration/Editor/Build.cs +++ b/example/unity/DemoApp/Assets/FlutterUnityIntegration/Editor/Build.cs @@ -134,6 +134,8 @@ private static void BuildWindowsOS(String path) if (report.summary.result != BuildResult.Succeeded) throw new Exception("Build failed"); + + Debug.Log("-- Windows Build: SUCCESSFUL --"); } private static void BuildWebGL(String path) @@ -165,6 +167,8 @@ private static void BuildWebGL(String path) // Copy(path, WebExportPath); ModifyWebGLExport(); + + Debug.Log("-- WebGL Build: SUCCESSFUL --"); } private static void DoBuildAndroid(String buildPath, bool isPlugin) @@ -208,6 +212,8 @@ private static void DoBuildAndroid(String buildPath, bool isPlugin) { SetupAndroidProject(); } + + Debug.Log("-- Android Build: SUCCESSFUL --"); } private static void ModifyWebGLExport() @@ -217,44 +223,70 @@ private static void ModifyWebGLExport() var indexHtmlText = File.ReadAllText(indexFile); indexHtmlText = indexHtmlText.Replace("