feat: updates to use core 2.0.2

This commit is contained in:
Matteo Cominetti 2021-02-09 18:12:08 +00:00
Родитель a4e0f06013
Коммит 6c8e2d3635
33 изменённых файлов: 89 добавлений и 1977 удалений

Просмотреть файл

@ -16,13 +16,6 @@
<e p="ConverterUnity.cs" t="Include" />
<e p="ConverterUnity.Geometry.cs" t="Include" />
<e p="ConverterUnity.Units.cs" t="Include" />
<e p="Core" t="Include">
<e p="GraphQL.Client.Abstractions.Websocket.xml" t="Include" />
<e p="GraphQL.Client.Abstractions.xml" t="Include" />
<e p="GraphQL.Client.xml" t="Include" />
<e p="GraphQL.Primitives.xml" t="Include" />
<e p="LICENSE.txt" t="Include" />
</e>
<e p="Dispatcher.cs" t="Include" />
<e p="Receiver.cs" t="Include" />
<e p="Sender.cs" t="Include" />

Просмотреть файл

@ -1,3 +1,8 @@
fileFormatVersion: 2
fileFormatVersion: 2
guid: 20fa550ba5944159a7676339936db5dd
timeCreated: 1609762387
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

Просмотреть файл

@ -1,182 +0,0 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>GraphQL.Client.Abstractions.Websocket</name>
</assembly>
<members>
<member name="F:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketMessageType.GQL_CONNECTION_INIT">
<summary>
Client sends this message after plain websocket connection to start the communication with the server
The server will response only with GQL_CONNECTION_ACK + GQL_CONNECTION_KEEP_ALIVE(if used) or GQL_CONNECTION_ERROR
to this message.
payload: Object : optional parameters that the client specifies in connectionParams
</summary>
</member>
<member name="F:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketMessageType.GQL_CONNECTION_ACK">
<summary>
The server may responses with this message to the GQL_CONNECTION_INIT from client, indicates the server accepted
the connection.
</summary>
</member>
<member name="F:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketMessageType.GQL_CONNECTION_ERROR">
<summary>
The server may responses with this message to the GQL_CONNECTION_INIT from client, indicates the server rejected
the connection.
It server also respond with this message in case of a parsing errors of the message (which does not disconnect the
client, just ignore the message).
payload: Object: the server side error
</summary>
</member>
<member name="F:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketMessageType.GQL_CONNECTION_KEEP_ALIVE">
<summary>
Server message that should be sent right after each GQL_CONNECTION_ACK processed and then periodically to keep the
client connection alive.
The client starts to consider the keep alive message only upon the first received keep alive message from the
server.
<remarks>
NOTE: This one here don't follow the standard due to connection optimization
</remarks>
</summary>
</member>
<member name="F:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketMessageType.GQL_CONNECTION_TERMINATE">
<summary>
Client sends this message to terminate the connection.
</summary>
</member>
<member name="F:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketMessageType.GQL_START">
<summary>
Client sends this message to execute GraphQL operation
id: string : The id of the GraphQL operation to start
payload: Object:
query: string : GraphQL operation as string or parsed GraphQL document node
variables?: Object : Object with GraphQL variables
operationName?: string : GraphQL operation name
</summary>
</member>
<member name="F:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketMessageType.GQL_DATA">
<summary>
The server sends this message to transfer the GraphQL execution result from the server to the client, this message
is a response for GQL_START message.
For each GraphQL operation send with GQL_START, the server will respond with at least one GQL_DATA message.
id: string : ID of the operation that was successfully set up
payload: Object :
data: any: Execution result
errors?: Error[] : Array of resolvers errors
</summary>
</member>
<member name="F:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketMessageType.GQL_ERROR">
<summary>
Server sends this message upon a failing operation, before the GraphQL execution, usually due to GraphQL validation
errors (resolver errors are part of GQL_DATA message, and will be added as errors array)
payload: Error : payload with the error attributed to the operation failing on the server
id: string : operation ID of the operation that failed on the server
</summary>
</member>
<member name="F:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketMessageType.GQL_COMPLETE">
<summary>
Server sends this message to indicate that a GraphQL operation is done, and no more data will arrive for the
specific operation.
id: string : operation ID of the operation that completed
</summary>
</member>
<member name="F:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketMessageType.GQL_STOP">
<summary>
Client sends this message in order to stop a running GraphQL operation execution (for example: unsubscribe)
id: string : operation id
</summary>
</member>
<member name="T:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketRequest">
<summary>
A Subscription Request
</summary>
</member>
<member name="P:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketRequest.Id">
<summary>
The Identifier of the request
</summary>
</member>
<member name="P:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketRequest.Type">
<summary>
The Type of the Request
</summary>
</member>
<member name="P:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketRequest.Payload">
<summary>
The payload of the websocket request
</summary>
</member>
<member name="M:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketRequest.SendTask">
<summary>
Task used to await the actual send operation and to convey potential exceptions
</summary>
<returns></returns>
</member>
<member name="M:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketRequest.SendCompleted">
<summary>
gets called when the send operation for this request has completed successfully
</summary>
</member>
<member name="M:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketRequest.SendFailed(System.Exception)">
<summary>
gets called when an exception occurs during the send operation
</summary>
<param name="e"></param>
</member>
<member name="M:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketRequest.SendCanceled">
<summary>
gets called when the GraphQLHttpWebSocket has been disposed before the send operation for this request has started
</summary>
</member>
<member name="M:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketRequest.Equals(System.Object)">
<inheritdoc />
</member>
<member name="M:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketRequest.Equals(GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketRequest)">
<inheritdoc />
</member>
<member name="M:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketRequest.GetHashCode">
<inheritdoc />
</member>
<member name="M:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketRequest.op_Equality(GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketRequest,GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketRequest)">
<inheritdoc />
</member>
<member name="M:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketRequest.op_Inequality(GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketRequest,GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketRequest)">
<inheritdoc />
</member>
<member name="T:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketResponse">
<summary>
A Subscription Response
</summary>
</member>
<member name="P:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketResponse.Id">
<summary>
The Identifier of the Response
</summary>
</member>
<member name="P:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketResponse.Type">
<summary>
The Type of the Response
</summary>
</member>
<member name="M:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketResponse.Equals(System.Object)">
<inheritdoc />
</member>
<member name="M:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketResponse.Equals(GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketResponse)">
<inheritdoc />
</member>
<member name="M:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketResponse.GetHashCode">
<inheritdoc />
</member>
<member name="M:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketResponse.op_Equality(GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketResponse,GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketResponse)">
<inheritdoc />
</member>
<member name="M:GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketResponse.op_Inequality(GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketResponse,GraphQL.Client.Abstractions.Websocket.GraphQLWebSocketResponse)">
<inheritdoc />
</member>
<member name="T:GraphQL.Client.Abstractions.Websocket.IGraphQLWebsocketJsonSerializer">
<summary>
The json serializer interface for the graphql-dotnet http client.
Implementations should provide a parameterless constructor for convenient usage
</summary>
</member>
</members>
</doc>

Просмотреть файл

@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 8543641f1002cfa4a966e4073c3bd4ed
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

Просмотреть файл

@ -1,185 +0,0 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>GraphQL.Client.Abstractions</name>
</assembly>
<members>
<member name="M:GraphQL.Client.Abstractions.IGraphQLClient.CreateSubscriptionStream``1(GraphQL.GraphQLRequest)">
<summary>
Creates a subscription to a GraphQL server. The connection is not established until the first actual subscription is made.<br/>
All subscriptions made to this stream share the same hot observable.<br/>
The stream must be recreated completely after an error has occured within its logic (i.e. a <see cref="T:System.Net.WebSockets.WebSocketException"/>)
</summary>
<param name="request">the GraphQL request for this subscription</param>
<returns>an observable stream for the specified subscription</returns>
</member>
<member name="M:GraphQL.Client.Abstractions.IGraphQLClient.CreateSubscriptionStream``1(GraphQL.GraphQLRequest,System.Action{System.Exception})">
<summary>
Creates a subscription to a GraphQL server. The connection is not established until the first actual subscription is made.<br/>
All subscriptions made to this stream share the same hot observable.<br/>
All <see cref="T:System.Exception"/>s are passed to the <paramref name="exceptionHandler"/> to be handled externally.<br/>
If the <paramref name="exceptionHandler"/> completes normally, the subscription is recreated with a new connection attempt.<br/>
Any exception thrown by <paramref name="exceptionHandler"/> will cause the sequence to fail.
</summary>
<param name="request">the GraphQL request for this subscription</param>
<param name="exceptionHandler">an external handler for all <see cref="T:System.Exception"/>s occurring within the sequence</param>
<returns>an observable stream for the specified subscription</returns>
</member>
<member name="T:GraphQL.Client.Abstractions.Utilities.StringExtensions">
<summary>
Copied from https://github.com/jquense/StringUtils
</summary>
</member>
<member name="T:GraphQL.Client.Abstractions.Utilities.StringUtils">
<summary>
Copied from https://github.com/jquense/StringUtils
</summary>
</member>
<member name="M:GraphQL.Client.Abstractions.Utilities.StringUtils.StripIndent(System.String)">
<summary>
Removes the leading indent from a multi-line string
</summary>
<param name="str">String</param>
<returns></returns>
</member>
<member name="M:GraphQL.Client.Abstractions.Utilities.StringUtils.ToWords(System.String)">
<summary>
Split a cased string into a series of "words" excluding the seperator.
</summary>
<param name="str"></param>
<returns></returns>
</member>
<member name="M:GraphQL.Client.Abstractions.Utilities.StringUtils.ToUpperFirst(System.String)">
<summary>
Uppercase the first character in a string, leaving the rest of the string as is
</summary>
<param name="str"></param>
<returns>a string with the first character uppercased</returns>
</member>
<member name="M:GraphQL.Client.Abstractions.Utilities.StringUtils.ToLowerFirst(System.String)">
<summary>
Lowercase the first character in a string, leaving the rest of the string as is
</summary>
<param name="str"></param>
<returns>a string with the first character lowercased</returns>
</member>
<member name="M:GraphQL.Client.Abstractions.Utilities.StringUtils.Capitalize(System.String)">
<summary>
Capitalizes a string, lowercasing the entire string and uppercasing the first character
</summary>
<param name="str"></param>
<returns>a capitalized string</returns>
</member>
<member name="M:GraphQL.Client.Abstractions.Utilities.StringUtils.ToCamelCase(System.String)">
<summary>
Converts a string to camelCase.
</summary>
<example>
<code>StringUtils.ToCamelCase("FOOBAR") // "foobar"</code>
<code>StringUtils.ToCamelCase("FOO_BAR") // "fooBar"</code>
<code>StringUtils.ToCamelCase("FooBar") // "fooBar"</code>
<code>StringUtils.ToCamelCase("foo bar") // "fooBar"</code>
</example>
<param name="str"></param>
<returns></returns>
</member>
<member name="M:GraphQL.Client.Abstractions.Utilities.StringUtils.ToConstantCase(System.String)">
<summary>
Convert a string to CONSTANT_CASE
</summary>
<example>
<code>StringUtils.ToConstantCase("fOo BaR") // "FOO_BAR"</code>
<code>StringUtils.ToConstantCase("FooBar") // "FOO_BAR"</code>
<code>StringUtils.ToConstantCase("Foo Bar") // "FOO_BAR"</code>
</example>
<param name="str"></param>
<returns></returns>
</member>
<member name="M:GraphQL.Client.Abstractions.Utilities.StringUtils.ToUpperCase(System.String)">
<summary>
Convert a string to UPPERCASE
</summary>
<example>
<code>StringUtils.ToUpperCase("foobar") // "FOOBAR"</code>
<code>StringUtils.ToUpperCase("FOO_BAR") // "FOO BAR"</code>
<code>StringUtils.ToUpperCase("FooBar") // "FOO BAR"</code>
<code>StringUtils.ToUpperCase("Foo Bar") // "FOO BAR"</code>
</example>
<param name="str"></param>
<returns></returns>
</member>
<member name="M:GraphQL.Client.Abstractions.Utilities.StringUtils.ToLowerCase(System.String)">
<summary>
Convert a string to lowercase
</summary>
<example>
<code>StringUtils.ToLowerCase("FOOBAR") // "foobar"</code>
<code>StringUtils.ToLowerCase("FOO_BAR") // "foo bar"</code>
<code>StringUtils.ToLowerCase("FooBar") // "foo bar"</code>
<code>StringUtils.ToLowerCase("Foo Bar") // "foo bar"</code>
</example>
<param name="str"></param>
<returns></returns>
</member>
<member name="M:GraphQL.Client.Abstractions.Utilities.StringUtils.ToPascalCase(System.String)">
<summary>
convert a string to PascalCase
</summary>
<example>
<code>StringUtils.ToPascalCase("FOOBAR") // "FooBar"</code>
<code>StringUtils.ToPascalCase("FOO_BAR") // "FooBar"</code>
<code>StringUtils.ToPascalCase("fooBar") // "FooBar"</code>
<code>StringUtils.ToPascalCase("Foo Bar") // "FooBar"</code>
</example>
<param name="str"></param>
<returns></returns>
</member>
<member name="M:GraphQL.Client.Abstractions.Utilities.StringUtils.ToKebabCase(System.String)">
<summary>
convert a string to kebab-case
</summary>
<example>
<code>StringUtils.ToKebabCase("FOOBAR") // "foo-bar"</code>
<code>StringUtils.ToKebabCase("FOO_BAR") // "foo-bar"</code>
<code>StringUtils.ToKebabCase("fooBar") // "foo-bar"</code>
<code>StringUtils.ToKebabCase("Foo Bar") // "foo-bar"</code>
</example>
<param name="str"></param>
<returns></returns>
</member>
<member name="M:GraphQL.Client.Abstractions.Utilities.StringUtils.ToSnakeCase(System.String)">
<summary>
convert a string to snake_case
</summary>
<example>
<code>StringUtils.ToSnakeCase("FOOBAR") // "foo_bar"</code>
<code>StringUtils.ToSnakeCase("FOO_BAR") // "foo_bar"</code>
<code>StringUtils.ToSnakeCase("fooBar") // "foo_bar"</code>
<code>StringUtils.ToSnakeCase("Foo Bar") // "foo_bar"</code>
</example>
<param name="str"></param>
<returns></returns>
</member>
<member name="M:GraphQL.Client.Abstractions.Utilities.StringUtils.ChangeCase(System.String,System.String,System.Func{System.String,System.Int32,System.String})">
<summary>
Convert a string to a new case
</summary>
<example>
Convert a string to inverse camelCase: CAMELcASE
<code>
StringUtils.ChangeCase("my string", "", (word, index) => {
word = word.ToUpperInvariant();
if (index > 0)
word = StringUtils.toLowerFirst(word);
return word
});
// "MYsTRING"
</code>
</example>
<param name="str">an input string </param>
<param name="sep">a seperator string used between "words" in the string</param>
<param name="composer">a function that converts individual words to a new case</param>
<returns></returns>
</member>
</members>
</doc>

Просмотреть файл

@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: d5341fed71bb3554fa6be37b4e38ad16
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

Двоичный файл не отображается.

Просмотреть файл

@ -1,186 +0,0 @@
{
"runtimeTarget": {
"name": ".NETStandard,Version=v2.0/",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETStandard,Version=v2.0": {},
".NETStandard,Version=v2.0/": {
"GraphQL.Client/1.0.0": {
"dependencies": {
"GraphQL.Client.Abstractions": "1.0.0",
"GraphQL.Client.Abstractions.Websocket": "1.0.0",
"Microsoft.NETFramework.ReferenceAssemblies": "1.0.0",
"NETStandard.Library": "2.0.3"
},
"runtime": {
"GraphQL.Client.dll": {}
}
},
"Microsoft.NETCore.Platforms/1.1.0": {},
"Microsoft.NETCore.Targets/1.1.0": {},
"Microsoft.NETFramework.ReferenceAssemblies/1.0.0": {},
"NETStandard.Library/2.0.3": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0"
}
},
"System.Reactive/4.3.2": {
"dependencies": {
"System.Runtime.InteropServices.WindowsRuntime": "4.3.0",
"System.Threading.Tasks.Extensions": "4.5.3"
},
"runtime": {
"lib/netstandard2.0/System.Reactive.dll": {
"assemblyVersion": "4.3.0.0",
"fileVersion": "4.3.2.55399"
}
}
},
"System.Runtime/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"System.Runtime.CompilerServices.Unsafe/4.5.2": {
"runtime": {
"lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {
"assemblyVersion": "4.0.4.1",
"fileVersion": "4.6.26919.2"
}
}
},
"System.Runtime.InteropServices.WindowsRuntime/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0"
},
"runtime": {
"lib/netstandard1.3/System.Runtime.InteropServices.WindowsRuntime.dll": {
"assemblyVersion": "4.0.2.0",
"fileVersion": "4.6.24705.1"
}
}
},
"System.Threading.Tasks.Extensions/4.5.3": {
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "4.5.2"
},
"runtime": {
"lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": {
"assemblyVersion": "4.2.0.1",
"fileVersion": "4.6.27818.1"
}
}
},
"GraphQL.Client.Abstractions/1.0.0": {
"dependencies": {
"GraphQL.Primitives": "1.0.0",
"System.Reactive": "4.3.2"
},
"runtime": {
"GraphQL.Client.Abstractions.dll": {}
}
},
"GraphQL.Client.Abstractions.Websocket/1.0.0": {
"dependencies": {
"GraphQL.Client.Abstractions": "1.0.0"
},
"runtime": {
"GraphQL.Client.Abstractions.Websocket.dll": {}
}
},
"GraphQL.Primitives/1.0.0": {
"runtime": {
"GraphQL.Primitives.dll": {}
}
}
}
},
"libraries": {
"GraphQL.Client/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Microsoft.NETCore.Platforms/1.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
"path": "microsoft.netcore.platforms/1.1.0",
"hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
},
"Microsoft.NETCore.Targets/1.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
"path": "microsoft.netcore.targets/1.1.0",
"hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
},
"Microsoft.NETFramework.ReferenceAssemblies/1.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-7D2TMufjGiowmt0E941kVoTIS+GTNzaPopuzM1/1LSaJAdJdBrVP0SkZW7AgDd0a2U1DjsIeaKG1wxGVBNLDMw==",
"path": "microsoft.netframework.referenceassemblies/1.0.0",
"hashPath": "microsoft.netframework.referenceassemblies.1.0.0.nupkg.sha512"
},
"NETStandard.Library/2.0.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
"path": "netstandard.library/2.0.3",
"hashPath": "netstandard.library.2.0.3.nupkg.sha512"
},
"System.Reactive/4.3.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-WhGkScPWxw2pp7UwRW8M1OvYZ3WUDPC2wJ0aiuaB4KRD3bt4wLkgHgYnOUu87WRhsurvv5LN0E63iWOEza2o8g==",
"path": "system.reactive/4.3.2",
"hashPath": "system.reactive.4.3.2.nupkg.sha512"
},
"System.Runtime/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
"path": "system.runtime/4.3.0",
"hashPath": "system.runtime.4.3.0.nupkg.sha512"
},
"System.Runtime.CompilerServices.Unsafe/4.5.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-wprSFgext8cwqymChhrBLu62LMg/1u92bU+VOwyfBimSPVFXtsNqEWC92Pf9ofzJFlk4IHmJA75EDJn1b2goAQ==",
"path": "system.runtime.compilerservices.unsafe/4.5.2",
"hashPath": "system.runtime.compilerservices.unsafe.4.5.2.nupkg.sha512"
},
"System.Runtime.InteropServices.WindowsRuntime/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-J4GUi3xZQLUBasNwZnjrffN8i5wpHrBtZoLG+OhRyGo/+YunMRWWtwoMDlUAIdmX0uRfpHIBDSV6zyr3yf00TA==",
"path": "system.runtime.interopservices.windowsruntime/4.3.0",
"hashPath": "system.runtime.interopservices.windowsruntime.4.3.0.nupkg.sha512"
},
"System.Threading.Tasks.Extensions/4.5.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==",
"path": "system.threading.tasks.extensions/4.5.3",
"hashPath": "system.threading.tasks.extensions.4.5.3.nupkg.sha512"
},
"GraphQL.Client.Abstractions/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"GraphQL.Client.Abstractions.Websocket/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"GraphQL.Primitives/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

Просмотреть файл

@ -1,264 +0,0 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>GraphQL.Client</name>
</assembly>
<members>
<member name="P:GraphQL.Client.Http.GraphQLHttpClient.JsonSerializer">
<summary>
the json serializer
</summary>
</member>
<member name="P:GraphQL.Client.Http.GraphQLHttpClient.HttpClient">
<summary>
the instance of <see cref="P:GraphQL.Client.Http.GraphQLHttpClient.HttpClient"/> which is used internally
</summary>
</member>
<member name="P:GraphQL.Client.Http.GraphQLHttpClient.Options">
<summary>
The Options to be used
</summary>
</member>
<member name="P:GraphQL.Client.Http.GraphQLHttpClient.WebSocketReceiveErrors">
<summary>
Publishes all exceptions which occur inside the websocket receive stream (i.e. for logging purposes)
</summary>
</member>
<member name="P:GraphQL.Client.Http.GraphQLHttpClient.WebsocketConnectionState">
<summary>
the websocket connection state
</summary>
</member>
<member name="M:GraphQL.Client.Http.GraphQLHttpClient.SendQueryAsync``1(GraphQL.GraphQLRequest,System.Threading.CancellationToken)">
<inheritdoc />
</member>
<member name="M:GraphQL.Client.Http.GraphQLHttpClient.SendMutationAsync``1(GraphQL.GraphQLRequest,System.Threading.CancellationToken)">
<inheritdoc />
</member>
<member name="M:GraphQL.Client.Http.GraphQLHttpClient.CreateSubscriptionStream``1(GraphQL.GraphQLRequest)">
<inheritdoc />
</member>
<member name="M:GraphQL.Client.Http.GraphQLHttpClient.CreateSubscriptionStream``1(GraphQL.GraphQLRequest,System.Action{System.Exception})">
<inheritdoc />
</member>
<member name="M:GraphQL.Client.Http.GraphQLHttpClient.InitializeWebsocketConnection">
<summary>
explicitly opens the websocket connection. Will be closed again on disposing the last subscription
</summary>
<returns></returns>
</member>
<member name="M:GraphQL.Client.Http.GraphQLHttpClient.Dispose">
<summary>
Releases unmanaged resources
</summary>
</member>
<member name="M:GraphQL.Client.Http.GraphQLHttpClientExtensions.CreateSubscriptionStream``1(GraphQL.Client.Abstractions.IGraphQLClient,GraphQL.GraphQLRequest,System.Action{System.Net.WebSockets.WebSocketException})">
<summary>
Creates a subscription to a GraphQL server. The connection is not established until the first actual subscription is made.<br/>
All subscriptions made to this stream share the same hot observable.<br/>
All <see cref="T:System.Net.WebSockets.WebSocketException"/>s are passed to the <paramref name="webSocketExceptionHandler"/> to be handled externally.<br/>
If the <paramref name="webSocketExceptionHandler"/> completes normally, the subscription is recreated with a new connection attempt.<br/>
Other <see cref="T:System.Exception"/>s or any exception thrown by <paramref name="webSocketExceptionHandler"/> will cause the sequence to fail.
</summary>
<param name="client">the GraphQL client</param>
<param name="request">the GraphQL request for this subscription</param>
<param name="webSocketExceptionHandler">an external handler for all <see cref="T:System.Net.WebSockets.WebSocketException"/>s occurring within the sequence</param>
<returns>an observable stream for the specified subscription</returns>
</member>
<member name="M:GraphQL.Client.Http.GraphQLHttpClientExtensions.CreateSubscriptionStream``1(GraphQL.Client.Abstractions.IGraphQLClient,GraphQL.GraphQLRequest,System.Func{``0},System.Action{System.Net.WebSockets.WebSocketException})">
<inheritdoc cref="M:GraphQL.Client.Http.GraphQLHttpClientExtensions.CreateSubscriptionStream``1(GraphQL.Client.Abstractions.IGraphQLClient,GraphQL.GraphQLRequest,System.Action{System.Net.WebSockets.WebSocketException})"/>
</member>
<member name="M:GraphQL.Client.Http.GraphQLHttpClientExtensions.CreateSubscriptionStream``1(GraphQL.Client.Abstractions.IGraphQLClient,GraphQL.GraphQLRequest,System.Func{``0})">
<inheritdoc cref="M:GraphQL.Client.Http.GraphQLHttpClient.CreateSubscriptionStream``1(GraphQL.GraphQLRequest)"/>
</member>
<member name="T:GraphQL.Client.Http.GraphQLHttpClientOptions">
<summary>
The Options that the <see cref="T:GraphQL.Client.Http.GraphQLHttpClient"/> will use
</summary>
</member>
<member name="P:GraphQL.Client.Http.GraphQLHttpClientOptions.EndPoint">
<summary>
The GraphQL EndPoint to be used
</summary>
</member>
<member name="P:GraphQL.Client.Http.GraphQLHttpClientOptions.WebSocketEndPoint">
<summary>
The GraphQL EndPoint to be used for websocket connections
</summary>
</member>
<member name="P:GraphQL.Client.Http.GraphQLHttpClientOptions.HttpMessageHandler">
<summary>
The <see cref="T:System.Net.Http.HttpMessageHandler"/> that is going to be used
</summary>
</member>
<member name="P:GraphQL.Client.Http.GraphQLHttpClientOptions.MediaType">
<summary>
The <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue"/> that will be send on POST
</summary>
</member>
<member name="P:GraphQL.Client.Http.GraphQLHttpClientOptions.BackOffStrategy">
<summary>
The back-off strategy for automatic websocket/subscription reconnects. Calculates the delay before the next connection attempt is made.<br/>
default formula: min(n, 5) * 1,5 * random(0.0, 1.0)
</summary>
</member>
<member name="P:GraphQL.Client.Http.GraphQLHttpClientOptions.UseWebSocketForQueriesAndMutations">
<summary>
If <see langword="true"/>, the websocket connection is also used for regular queries and mutations
</summary>
</member>
<member name="P:GraphQL.Client.Http.GraphQLHttpClientOptions.PreprocessRequest">
<summary>
Request preprocessing function. Can be used i.e. to inject authorization info into a GraphQL request payload.
</summary>
</member>
<member name="P:GraphQL.Client.Http.GraphQLHttpClientOptions.OnWebsocketConnected">
<summary>
This callback is called after successfully establishing a websocket connection but before any regular request is made.
</summary>
</member>
<member name="P:GraphQL.Client.Http.GraphQLHttpClientOptions.ConfigureWebsocketOptions">
<summary>
Configure additional websocket options (i.e. headers). This will not be invoked on Windows 7 when targeting .NET Framework 4.x.
</summary>
</member>
<member name="P:GraphQL.Client.Http.GraphQLHttpClientOptions.ConfigureWebSocketConnectionInitPayload">
<summary>
Sets the `ConnectionParams` object sent with the GQL_CONNECTION_INIT message on establishing a GraphQL websocket connection.
See https://github.com/apollographql/subscriptions-transport-ws/blob/master/PROTOCOL.md#gql_connection_init.
</summary>
</member>
<member name="P:GraphQL.Client.Http.GraphQLHttpRequest.PreprocessHttpRequestMessage">
<summary>
Allows to preprocess a <see cref="T:System.Net.Http.HttpRequestMessage"/> before it is sent, i.e. add custom headers
</summary>
</member>
<member name="M:GraphQL.Client.Http.GraphQLHttpRequest.ToHttpRequestMessage(GraphQL.Client.Http.GraphQLHttpClientOptions,GraphQL.Client.Abstractions.IGraphQLJsonSerializer)">
<summary>
Creates a <see cref="T:System.Net.Http.HttpRequestMessage"/> from this <see cref="T:GraphQL.Client.Http.GraphQLHttpRequest"/>.
Used by <see cref="T:GraphQL.Client.Http.GraphQLHttpClient"/> to convert GraphQL requests when sending them as regular HTTP requests.
</summary>
<param name="options">the <see cref="T:GraphQL.Client.Http.GraphQLHttpClientOptions"/> passed from <see cref="T:GraphQL.Client.Http.GraphQLHttpClient"/></param>
<param name="serializer">the <see cref="T:GraphQL.Client.Abstractions.IGraphQLJsonSerializer"/> passed from <see cref="T:GraphQL.Client.Http.GraphQLHttpClient"/></param>
<returns></returns>
</member>
<member name="T:GraphQL.Client.Http.GraphQLHttpRequestException">
<summary>
An exception thrown on unexpected <see cref="T:System.Net.Http.HttpResponseMessage"/>
</summary>
</member>
<member name="P:GraphQL.Client.Http.GraphQLHttpRequestException.StatusCode">
<summary>
The returned status code
</summary>
</member>
<member name="P:GraphQL.Client.Http.GraphQLHttpRequestException.ResponseHeaders">
<summary>
the returned response headers
</summary>
</member>
<member name="P:GraphQL.Client.Http.GraphQLHttpRequestException.Content">
<summary>
the returned content
</summary>
</member>
<member name="M:GraphQL.Client.Http.GraphQLHttpRequestException.#ctor(System.Net.HttpStatusCode,System.Net.Http.Headers.HttpResponseHeaders,System.String)">
<summary>
Creates a new instance of <see cref="T:GraphQL.Client.Http.GraphQLHttpRequestException"/>
</summary>
<param name="statusCode"></param>
<param name="responseHeaders"></param>
<param name="content"></param>
</member>
<member name="M:GraphQL.Client.Http.GraphQLResponseExtensions.AsGraphQLHttpResponse``1(GraphQL.GraphQLResponse{``0})">
<summary>
Casts <paramref name="response"/> to <see cref="T:GraphQL.Client.Http.GraphQLHttpResponse`1"/>. Throws if the cast fails.
</summary>
<typeparam name="T"></typeparam>
<param name="response"></param>
<exception cref="T:System.InvalidCastException"><paramref name="response"/> is not a <see cref="T:GraphQL.Client.Http.GraphQLHttpResponse`1"/></exception>
<returns></returns>
</member>
<member name="M:GraphQL.Client.Http.UriExtensions.HasWebSocketScheme(System.Uri)">
<summary>
Returns true if <see cref="P:System.Uri.Scheme"/> equals "wss" or "ws"
</summary>
<param name="uri"></param>
<returns></returns>
</member>
<member name="M:GraphQL.Client.Http.UriExtensions.GetWebSocketUri(System.Uri)">
<summary>
Infers the websocket uri from <paramref name="uri"/>.
</summary>
<param name="uri"></param>
<returns></returns>
</member>
<member name="P:GraphQL.Client.Http.Websocket.GraphQLHttpWebSocket.WebSocketState">
<summary>
The current websocket state
</summary>
</member>
<member name="P:GraphQL.Client.Http.Websocket.GraphQLHttpWebSocket.ReceiveErrors">
<summary>
Publishes all errors which occur within the receive pipeline
</summary>
</member>
<member name="P:GraphQL.Client.Http.Websocket.GraphQLHttpWebSocket.ConnectionState">
<summary>
Publishes the connection state of the <see cref="T:GraphQL.Client.Http.Websocket.GraphQLHttpWebSocket"/>
</summary>
</member>
<member name="P:GraphQL.Client.Http.Websocket.GraphQLHttpWebSocket.IncomingMessageStream">
<summary>
Publishes all messages which are received on the websocket
</summary>
</member>
<member name="M:GraphQL.Client.Http.Websocket.GraphQLHttpWebSocket.CreateSubscriptionStream``1(GraphQL.GraphQLRequest,System.Action{System.Exception})">
<summary>
Create a new subscription stream
</summary>
<typeparam name="TResponse">the response type</typeparam>
<param name="request">the <see cref="T:GraphQL.GraphQLRequest"/> to start the subscription</param>
<param name="exceptionHandler">Optional: exception handler for handling exceptions within the receive pipeline</param>
<returns>a <see cref="T:System.IObservable`1"/> which represents the subscription</returns>
</member>
<member name="M:GraphQL.Client.Http.Websocket.GraphQLHttpWebSocket.SendRequest``1(GraphQL.GraphQLRequest,System.Threading.CancellationToken)">
<summary>
Send a regular GraphQL request (query, mutation) via websocket
</summary>
<typeparam name="TResponse">the response type</typeparam>
<param name="request">the <see cref="T:GraphQL.GraphQLRequest"/> to send</param>
<param name="cancellationToken">the token to cancel the request</param>
<returns></returns>
</member>
<member name="M:GraphQL.Client.Http.Websocket.GraphQLHttpWebSocket.BackOff">
<summary>
delay the next connection attempt using <see cref="P:GraphQL.Client.Http.GraphQLHttpClientOptions.BackOffStrategy"/>
</summary>
<returns></returns>
</member>
<member name="M:GraphQL.Client.Http.Websocket.GraphQLHttpWebSocket.GetReceiveTask">
<summary>
wrapper method to pick up the existing request task if already running
</summary>
<returns></returns>
</member>
<member name="M:GraphQL.Client.Http.Websocket.GraphQLHttpWebSocket.ReceiveWebsocketMessagesAsync">
<summary>
read a single message from the websocket
</summary>
<returns></returns>
</member>
<member name="M:GraphQL.Client.Http.Websocket.GraphQLHttpWebSocket.Complete">
<summary>
Cancels the current operation, closes the websocket connection and disposes of internal resources.
</summary>
</member>
<member name="P:GraphQL.Client.Http.Websocket.GraphQLHttpWebSocket.Completion">
<summary>
Task to await the completion (a.k.a. disposal) of this websocket.
</summary>
Async disposal as recommended by Stephen Cleary (https://blog.stephencleary.com/2013/03/async-oop-6-disposal.html)
</member>
</members>
</doc>

Просмотреть файл

@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 43006d81aa88aee468d438e99e32212b
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

Просмотреть файл

@ -1,178 +0,0 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>GraphQL.Primitives</name>
</assembly>
<members>
<member name="T:GraphQL.GraphQLError">
<summary>
Represents a GraphQL Error of a GraphQL Query
</summary>
</member>
<member name="P:GraphQL.GraphQLError.Locations">
<summary>
The locations of the error
</summary>
</member>
<member name="P:GraphQL.GraphQLError.Message">
<summary>
The message of the error
</summary>
</member>
<member name="P:GraphQL.GraphQLError.Path">
<summary>
The Path of the error
</summary>
</member>
<member name="P:GraphQL.GraphQLError.Extensions">
<summary>
The extensions of the error
</summary>
</member>
<member name="M:GraphQL.GraphQLError.Equals(System.Object)">
<summary>
Returns a value that indicates whether this instance is equal to a specified object
</summary>
<param name="obj">The object to compare with this instance</param>
<returns>true if obj is an instance of <see cref="T:GraphQL.GraphQLError"/> and equals the value of the instance; otherwise, false</returns>
</member>
<member name="M:GraphQL.GraphQLError.Equals(GraphQL.GraphQLError)">
<summary>
Returns a value that indicates whether this instance is equal to a specified object
</summary>
<param name="other">The object to compare with this instance</param>
<returns>true if obj is an instance of <see cref="T:GraphQL.GraphQLError"/> and equals the value of the instance; otherwise, false</returns>
</member>
<member name="M:GraphQL.GraphQLError.GetHashCode">
<summary>
<inheritdoc cref="M:System.Object.GetHashCode"/>
</summary>
</member>
<member name="M:GraphQL.GraphQLError.op_Equality(GraphQL.GraphQLError,GraphQL.GraphQLError)">
<summary>
Tests whether two specified <see cref="T:GraphQL.GraphQLError"/> instances are equivalent
</summary>
<param name="left">The <see cref="T:GraphQL.GraphQLError"/> instance that is to the left of the equality operator</param>
<param name="right">The <see cref="T:GraphQL.GraphQLError"/> instance that is to the right of the equality operator</param>
<returns>true if left and right are equal; otherwise, false</returns>
</member>
<member name="M:GraphQL.GraphQLError.op_Inequality(GraphQL.GraphQLError,GraphQL.GraphQLError)">
<summary>
Tests whether two specified <see cref="T:GraphQL.GraphQLError"/> instances are not equal
</summary>
<param name="left">The <see cref="T:GraphQL.GraphQLError"/> instance that is to the left of the not equal operator</param>
<param name="right">The <see cref="T:GraphQL.GraphQLError"/> instance that is to the right of the not equal operator</param>
<returns>true if left and right are unequal; otherwise, false</returns>
</member>
<member name="T:GraphQL.GraphQLLocation">
<summary>
Represents a GraphQL Location of a GraphQL Query
</summary>
</member>
<member name="P:GraphQL.GraphQLLocation.Column">
<summary>
The Column
</summary>
</member>
<member name="P:GraphQL.GraphQLLocation.Line">
<summary>
The Line
</summary>
</member>
<member name="M:GraphQL.GraphQLLocation.Equals(System.Object)">
<summary>
Returns a value that indicates whether this instance is equal to a specified object
</summary>
<param name="obj">The object to compare with this instance</param>
<returns>true if obj is an instance of <see cref="T:GraphQL.GraphQLLocation"/> and equals the value of the instance; otherwise, false</returns>
</member>
<member name="M:GraphQL.GraphQLLocation.Equals(GraphQL.GraphQLLocation)">
<summary>
Returns a value that indicates whether this instance is equal to a specified object
</summary>
<param name="other">The object to compare with this instance</param>
<returns>true if obj is an instance of <see cref="T:GraphQL.GraphQLLocation"/> and equals the value of the instance; otherwise, false</returns>
</member>
<member name="M:GraphQL.GraphQLLocation.GetHashCode">
<summary>
<inheritdoc cref="M:System.Object.GetHashCode"/>
</summary>
</member>
<member name="M:GraphQL.GraphQLLocation.op_Equality(GraphQL.GraphQLLocation,GraphQL.GraphQLLocation)">
<summary>
Tests whether two specified <see cref="T:GraphQL.GraphQLLocation"/> instances are equivalent
</summary>
<param name="left">The <see cref="T:GraphQL.GraphQLLocation"/> instance that is to the left of the equality operator</param>
<param name="right">The <see cref="T:GraphQL.GraphQLLocation"/> instance that is to the right of the equality operator</param>
<returns>true if left and right are equal; otherwise, false</returns>
</member>
<member name="M:GraphQL.GraphQLLocation.op_Inequality(GraphQL.GraphQLLocation,GraphQL.GraphQLLocation)">
<summary>
Tests whether two specified <see cref="T:GraphQL.GraphQLLocation"/> instances are not equal
</summary>
<param name="left">The <see cref="T:GraphQL.GraphQLLocation"/> instance that is to the left of the not equal operator</param>
<param name="right">The <see cref="T:GraphQL.GraphQLLocation"/> instance that is to the right of the not equal operator</param>
<returns>true if left and right are unequal; otherwise, false</returns>
</member>
<member name="T:GraphQL.GraphQLRequest">
<summary>
A GraphQL request
</summary>
</member>
<member name="P:GraphQL.GraphQLRequest.Query">
<summary>
The Query
</summary>
</member>
<member name="P:GraphQL.GraphQLRequest.OperationName">
<summary>
The name of the Operation
</summary>
</member>
<member name="P:GraphQL.GraphQLRequest.Variables">
<summary>
Represents the request variables
</summary>
</member>
<member name="M:GraphQL.GraphQLRequest.Equals(System.Object)">
<summary>
Returns a value that indicates whether this instance is equal to a specified object
</summary>
<param name="obj">The object to compare with this instance</param>
<returns>true if obj is an instance of <see cref="T:GraphQL.GraphQLRequest"/> and equals the value of the instance; otherwise, false</returns>
</member>
<member name="M:GraphQL.GraphQLRequest.Equals(GraphQL.GraphQLRequest)">
<summary>
Returns a value that indicates whether this instance is equal to a specified object
</summary>
<param name="other">The object to compare with this instance</param>
<returns>true if obj is an instance of <see cref="T:GraphQL.GraphQLRequest"/> and equals the value of the instance; otherwise, false</returns>
</member>
<member name="M:GraphQL.GraphQLRequest.GetHashCode">
<summary>
<inheritdoc cref="M:System.Object.GetHashCode"/>
</summary>
</member>
<member name="M:GraphQL.GraphQLRequest.op_Equality(GraphQL.GraphQLRequest,GraphQL.GraphQLRequest)">
<summary>
Tests whether two specified <see cref="T:GraphQL.GraphQLRequest"/> instances are equivalent
</summary>
<param name="left">The <see cref="T:GraphQL.GraphQLRequest"/> instance that is to the left of the equality operator</param>
<param name="right">The <see cref="T:GraphQL.GraphQLRequest"/> instance that is to the right of the equality operator</param>
<returns>true if left and right are equal; otherwise, false</returns>
</member>
<member name="M:GraphQL.GraphQLRequest.op_Inequality(GraphQL.GraphQLRequest,GraphQL.GraphQLRequest)">
<summary>
Tests whether two specified <see cref="T:GraphQL.GraphQLRequest"/> instances are not equal
</summary>
<param name="left">The <see cref="T:GraphQL.GraphQLRequest"/> instance that is to the left of the not equal operator</param>
<param name="right">The <see cref="T:GraphQL.GraphQLRequest"/> instance that is to the right of the not equal operator</param>
<returns>true if left and right are unequal; otherwise, false</returns>
</member>
<member name="T:GraphQL.Map">
<summary>
A type equivalent to a javascript map. Create a custom json converter for this class to customize your serializers behaviour
</summary>
</member>
</members>
</doc>

Просмотреть файл

@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: a84c1c6e9d322b447866729b02bc0a2b
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

Просмотреть файл

@ -1,21 +0,0 @@
MIT License
Copyright (c) 2017 graphql-dotnet
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Просмотреть файл

@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: a48aae529dfb05f41b146af3c67a52d6
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичные данные
Assets/Speckle Connector/Core/Sentry.dll

Двоичный файл не отображается.

Двоичные данные
Assets/Speckle Connector/Core/Speckle.Newtonsoft.Json.dll Normal file

Двоичный файл не отображается.

Просмотреть файл

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 7457382b6587a064eb7147ebb7b003f7
guid: 95c269842f6915a4cb61a32d2e4fa9e8
PluginImporter:
externalObjects: {}
serializedVersion: 2

Просмотреть файл

@ -7,73 +7,60 @@
"targets": {
".NETStandard,Version=v2.0": {},
".NETStandard,Version=v2.0/": {
"SpeckleCore2/1.0.0": {
"SpeckleCore2/2.0.0": {
"dependencies": {
"GraphQL.Client": "3.2.0",
"GraphQL.Client.Serializer.Newtonsoft": "3.2.0",
"GraphQL.Client": "3.2.1",
"Microsoft.CSharp": "4.7.0",
"NETStandard.Library": "2.0.3",
"Newtonsoft.Json": "12.0.3",
"Piwik.Tracker": "3.0.0",
"Sentry": "2.1.6",
"Sentry": "2.1.8",
"Speckle.Newtonsoft.Json": "12.0.3.1",
"System.Data.SQLite.Core": "1.0.113.6"
},
"runtime": {
"SpeckleCore2.dll": {}
}
},
"GraphQL.Client/3.2.0": {
"GraphQL.Client/3.2.1": {
"dependencies": {
"GraphQL.Client.Abstractions": "3.2.0",
"GraphQL.Client.Abstractions.Websocket": "3.2.0"
"GraphQL.Client.Abstractions": "3.2.1",
"GraphQL.Client.Abstractions.Websocket": "3.2.1"
},
"runtime": {
"lib/netstandard2.0/GraphQL.Client.dll": {
"assemblyVersion": "3.2.0.0",
"fileVersion": "3.2.0.0"
"assemblyVersion": "3.2.1.0",
"fileVersion": "3.2.1.0"
}
}
},
"GraphQL.Client.Abstractions/3.2.0": {
"GraphQL.Client.Abstractions/3.2.1": {
"dependencies": {
"GraphQL.Primitives": "3.2.0",
"GraphQL.Primitives": "3.2.1",
"System.Reactive": "4.3.2"
},
"runtime": {
"lib/netstandard2.0/GraphQL.Client.Abstractions.dll": {
"assemblyVersion": "3.2.0.0",
"fileVersion": "3.2.0.0"
"assemblyVersion": "3.2.1.0",
"fileVersion": "3.2.1.0"
}
}
},
"GraphQL.Client.Abstractions.Websocket/3.2.0": {
"GraphQL.Client.Abstractions.Websocket/3.2.1": {
"dependencies": {
"GraphQL.Client.Abstractions": "3.2.0"
"GraphQL.Client.Abstractions": "3.2.1"
},
"runtime": {
"lib/netstandard2.0/GraphQL.Client.Abstractions.Websocket.dll": {
"assemblyVersion": "3.2.0.0",
"fileVersion": "3.2.0.0"
"assemblyVersion": "3.2.1.0",
"fileVersion": "3.2.1.0"
}
}
},
"GraphQL.Client.Serializer.Newtonsoft/3.2.0": {
"dependencies": {
"GraphQL.Client.Abstractions.Websocket": "3.2.0",
"Newtonsoft.Json": "12.0.3"
},
"runtime": {
"lib/netstandard2.0/GraphQL.Client.Serializer.Newtonsoft.dll": {
"assemblyVersion": "3.2.0.0",
"fileVersion": "3.2.0.0"
}
}
},
"GraphQL.Primitives/3.2.0": {
"GraphQL.Primitives/3.2.1": {
"runtime": {
"lib/netstandard2.0/GraphQL.Primitives.dll": {
"assemblyVersion": "3.2.0.0",
"fileVersion": "3.2.0.0"
"assemblyVersion": "3.2.1.0",
"fileVersion": "3.2.1.0"
}
}
},
@ -92,11 +79,11 @@
"Microsoft.NETCore.Platforms": "1.1.0"
}
},
"Newtonsoft.Json/12.0.3": {
"Newtonsoft.Json/11.0.2": {
"runtime": {
"lib/netstandard2.0/Newtonsoft.Json.dll": {
"assemblyVersion": "12.0.0.0",
"fileVersion": "12.0.3.23909"
"assemblyVersion": "11.0.0.0",
"fileVersion": "11.0.2.21924"
}
}
},
@ -108,16 +95,16 @@
}
}
},
"Sentry/2.1.6": {
"Sentry/2.1.8": {
"dependencies": {
"Newtonsoft.Json": "12.0.3",
"Newtonsoft.Json": "11.0.2",
"Sentry.PlatformAbstractions": "1.1.1",
"Sentry.Protocol": "2.1.6"
"Sentry.Protocol": "2.1.8"
},
"runtime": {
"lib/netstandard2.0/Sentry.dll": {
"assemblyVersion": "2.1.6.0",
"fileVersion": "2.1.6.0"
"assemblyVersion": "2.1.8.0",
"fileVersion": "2.1.8.0"
}
}
},
@ -129,11 +116,19 @@
}
}
},
"Sentry.Protocol/2.1.6": {
"Sentry.Protocol/2.1.8": {
"runtime": {
"lib/netstandard2.0/Sentry.Protocol.dll": {
"assemblyVersion": "2.1.6.0",
"fileVersion": "2.1.6.0"
"assemblyVersion": "2.1.8.0",
"fileVersion": "2.1.8.0"
}
}
},
"Speckle.Newtonsoft.Json/12.0.3.1": {
"runtime": {
"lib/netstandard2.0/Speckle.Newtonsoft.Json.dll": {
"assemblyVersion": "12.0.3.0",
"fileVersion": "11.0.1.0"
}
}
},
@ -201,45 +196,38 @@
}
},
"libraries": {
"SpeckleCore2/1.0.0": {
"SpeckleCore2/2.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"GraphQL.Client/3.2.0": {
"GraphQL.Client/3.2.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-S0UaSc2EAKY2ELe/LHqEw9j0ic7t5acK7LWX4GHGE+YSQL37+7Zp7GKhJjDdXJ05Tyayw8wII7hI7TBUULwlgA==",
"path": "graphql.client/3.2.0",
"hashPath": "graphql.client.3.2.0.nupkg.sha512"
"sha512": "sha512-zo6dQJqLHgg5eOp8BEYJvCx5Eqx4K6v2xxZau4zqA1KxDoN673y5S/HRqHpeLfqiNFjlVJF5IAS5YpZ8RBAJUg==",
"path": "graphql.client/3.2.1",
"hashPath": "graphql.client.3.2.1.nupkg.sha512"
},
"GraphQL.Client.Abstractions/3.2.0": {
"GraphQL.Client.Abstractions/3.2.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-1ZUCG978qlWAHNF+wQdmDJNrFTx/y/zSBTyDlQcrEPWLisLMX6l4rjjU2pC7oZwULE3K4NO/XNUTyPVjzho7Vg==",
"path": "graphql.client.abstractions/3.2.0",
"hashPath": "graphql.client.abstractions.3.2.0.nupkg.sha512"
"sha512": "sha512-C8OUqwBQWRgiGilXl74u+QChFJO+wNF5xf12SeQpSvqEQGCJAM5ePFGfExX+nZjrHA01Yve9mc6hBXwlBARdtQ==",
"path": "graphql.client.abstractions/3.2.1",
"hashPath": "graphql.client.abstractions.3.2.1.nupkg.sha512"
},
"GraphQL.Client.Abstractions.Websocket/3.2.0": {
"GraphQL.Client.Abstractions.Websocket/3.2.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3FQRD2QysbLJp/fY0iw1J/cWSrc2wn8JRM6nzeQz+f6mW1jNHMjqCyAhz7FoIO2X/jHLiEZ1+EOrZU//YikCYQ==",
"path": "graphql.client.abstractions.websocket/3.2.0",
"hashPath": "graphql.client.abstractions.websocket.3.2.0.nupkg.sha512"
"sha512": "sha512-eITgPSmMXjdM7Xo7FEm5VwRIIa9mpb0UKOuNtMypP7Ks10l8tsegvwKcNqla+Tb9O0u3nAkq9rGVzbG3+qXIpw==",
"path": "graphql.client.abstractions.websocket/3.2.1",
"hashPath": "graphql.client.abstractions.websocket.3.2.1.nupkg.sha512"
},
"GraphQL.Client.Serializer.Newtonsoft/3.2.0": {
"GraphQL.Primitives/3.2.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-7fipj8HT5P4vfeTd6RWHZYVNjRGCmi5z6rvYa4p5odMAGqDdnoqRi2/UFVZJr90azo2KtB6OM26HgCqlO6VNEg==",
"path": "graphql.client.serializer.newtonsoft/3.2.0",
"hashPath": "graphql.client.serializer.newtonsoft.3.2.0.nupkg.sha512"
},
"GraphQL.Primitives/3.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-mHYZECTsq5hclsUJV8mI55XL/85xVpTDdq88k8aLrYVFBwAuPHU4oT7gbzWE41lRWeHEzJeZJ6VdY4Mzoqg3YQ==",
"path": "graphql.primitives/3.2.0",
"hashPath": "graphql.primitives.3.2.0.nupkg.sha512"
"sha512": "sha512-PlGV4S9ft3uZzyR4QYK/Jld1GEtkGpucU0L5IV8jUgPdLpNHvb2EHVJtFGO3/D3cCML34a5NMTPY1a+eIfVgDg==",
"path": "graphql.primitives/3.2.1",
"hashPath": "graphql.primitives.3.2.1.nupkg.sha512"
},
"Microsoft.CSharp/4.7.0": {
"type": "package",
@ -269,12 +257,12 @@
"path": "netstandard.library/2.0.3",
"hashPath": "netstandard.library.2.0.3.nupkg.sha512"
},
"Newtonsoft.Json/12.0.3": {
"Newtonsoft.Json/11.0.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
"path": "newtonsoft.json/12.0.3",
"hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
"sha512": "sha512-IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==",
"path": "newtonsoft.json/11.0.2",
"hashPath": "newtonsoft.json.11.0.2.nupkg.sha512"
},
"Piwik.Tracker/3.0.0": {
"type": "package",
@ -283,12 +271,12 @@
"path": "piwik.tracker/3.0.0",
"hashPath": "piwik.tracker.3.0.0.nupkg.sha512"
},
"Sentry/2.1.6": {
"Sentry/2.1.8": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Haii3y9JZX9Z/HrHyy8r0cLj6WvTTFS4xbGI0UtItZ53yB/hGaWeXD5mvk47HAVOHeix8Gg64tguxIBCicoMAQ==",
"path": "sentry/2.1.6",
"hashPath": "sentry.2.1.6.nupkg.sha512"
"sha512": "sha512-GiRDS9mUijrtGey0rNP964KhVjb3vDWQzaXnrJFwPdE3obC9wQpOzY1ppMq4LXSxVS2N8+L9hM4jrDgDRduzvQ==",
"path": "sentry/2.1.8",
"hashPath": "sentry.2.1.8.nupkg.sha512"
},
"Sentry.PlatformAbstractions/1.1.1": {
"type": "package",
@ -297,12 +285,19 @@
"path": "sentry.platformabstractions/1.1.1",
"hashPath": "sentry.platformabstractions.1.1.1.nupkg.sha512"
},
"Sentry.Protocol/2.1.6": {
"Sentry.Protocol/2.1.8": {
"type": "package",
"serviceable": true,
"sha512": "sha512-AXVI9e/mYp5NI/r+Tfk//YyXGGCUxq698xnOuJbiDUJ2FYw88BdB1Ewmv29pA8FTh/MLBWTPIwTVBWMouZrQBA==",
"path": "sentry.protocol/2.1.6",
"hashPath": "sentry.protocol.2.1.6.nupkg.sha512"
"sha512": "sha512-P7f3agNvXqAU+gALpMTeBK8DdfalPXXU62R4yRpFLXd9tVBEkva51HgPvXcuD37rhH6vNxydDzdQbe5+iIIgyA==",
"path": "sentry.protocol/2.1.8",
"hashPath": "sentry.protocol.2.1.8.nupkg.sha512"
},
"Speckle.Newtonsoft.Json/12.0.3.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-yM+DdKzI++HY4FYbloGcPGQ0yrfSv5/a5Rd+iYuzj47ATRtb2M5oCEVcxM4Xum5EDq0BMwkIY/cw/DMlRrZFDA==",
"path": "speckle.newtonsoft.json/12.0.3.1",
"hashPath": "speckle.newtonsoft.json.12.0.3.1.nupkg.sha512"
},
"Stub.System.Data.SQLite.Core.NetStandard/1.0.113.1": {
"type": "package",

Двоичные данные
Assets/Speckle Connector/Core/SpeckleCore2.dll

Двоичный файл не отображается.

Двоичные данные
Assets/Speckle Connector/Core/logo.64x64.png

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 2.6 KiB

Просмотреть файл

@ -1,96 +0,0 @@
fileFormatVersion: 2
guid: 84b57d550ecd0ab48983ce04c6e1fa6a
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 1
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: -1
aniso: -1
mipBias: -100
wrapU: -1
wrapV: -1
wrapW: -1
nPOTScale: 1
lightmap: 0
compressionQuality: 50
spriteMode: 0
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 0
spriteTessellationDetail: -1
textureType: 0
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID:
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:

Просмотреть файл

@ -1,6 +1,7 @@
fileFormatVersion: 2
guid: 2ac5481254ce5b14e9a50d0b48d2cbc4
TextScriptImporter:
guid: addaa5ebcd10c5245bf8d074437d5b37
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:

Просмотреть файл

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 395d7fbe11ffe9f44b8ce59909ef86dc
guid: 56f71e71972277846b26b62341a29c20
PluginImporter:
externalObjects: {}
serializedVersion: 2

Просмотреть файл

@ -1,351 +0,0 @@
{
"runtimeTarget": {
"name": ".NETStandard,Version=v2.0/",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETStandard,Version=v2.0": {},
".NETStandard,Version=v2.0/": {
"Objects/1.0.0": {
"dependencies": {
"NETStandard.Library": "2.0.3",
"SpeckleCore": "1.0.0"
},
"runtime": {
"Objects.dll": {}
}
},
"GraphQL.Client/3.2.0": {
"dependencies": {
"GraphQL.Client.Abstractions": "3.2.0",
"GraphQL.Client.Abstractions.Websocket": "3.2.0"
},
"runtime": {
"lib/netstandard2.0/GraphQL.Client.dll": {
"assemblyVersion": "3.2.0.0",
"fileVersion": "3.2.0.0"
}
}
},
"GraphQL.Client.Abstractions/3.2.0": {
"dependencies": {
"GraphQL.Primitives": "3.2.0",
"System.Reactive": "4.3.2"
},
"runtime": {
"lib/netstandard2.0/GraphQL.Client.Abstractions.dll": {
"assemblyVersion": "3.2.0.0",
"fileVersion": "3.2.0.0"
}
}
},
"GraphQL.Client.Abstractions.Websocket/3.2.0": {
"dependencies": {
"GraphQL.Client.Abstractions": "3.2.0"
},
"runtime": {
"lib/netstandard2.0/GraphQL.Client.Abstractions.Websocket.dll": {
"assemblyVersion": "3.2.0.0",
"fileVersion": "3.2.0.0"
}
}
},
"GraphQL.Client.Serializer.Newtonsoft/3.2.0": {
"dependencies": {
"GraphQL.Client.Abstractions.Websocket": "3.2.0",
"Newtonsoft.Json": "12.0.3"
},
"runtime": {
"lib/netstandard2.0/GraphQL.Client.Serializer.Newtonsoft.dll": {
"assemblyVersion": "3.2.0.0",
"fileVersion": "3.2.0.0"
}
}
},
"GraphQL.Primitives/3.2.0": {
"runtime": {
"lib/netstandard2.0/GraphQL.Primitives.dll": {
"assemblyVersion": "3.2.0.0",
"fileVersion": "3.2.0.0"
}
}
},
"Microsoft.CSharp/4.7.0": {
"runtime": {
"lib/netstandard2.0/Microsoft.CSharp.dll": {
"assemblyVersion": "4.0.5.0",
"fileVersion": "4.700.19.56404"
}
}
},
"Microsoft.NETCore.Platforms/1.1.0": {},
"Microsoft.NETCore.Targets/1.1.0": {},
"NETStandard.Library/2.0.3": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0"
}
},
"Newtonsoft.Json/12.0.3": {
"runtime": {
"lib/netstandard2.0/Newtonsoft.Json.dll": {
"assemblyVersion": "12.0.0.0",
"fileVersion": "12.0.3.23909"
}
}
},
"Piwik.Tracker/3.0.0": {
"runtime": {
"lib/net40/Piwik.Tracker.dll": {
"assemblyVersion": "3.0.0.0",
"fileVersion": "3.0.0.0"
}
}
},
"Sentry/2.1.6": {
"dependencies": {
"Newtonsoft.Json": "12.0.3",
"Sentry.PlatformAbstractions": "1.1.1",
"Sentry.Protocol": "2.1.6"
},
"runtime": {
"lib/netstandard2.0/Sentry.dll": {
"assemblyVersion": "2.1.6.0",
"fileVersion": "2.1.6.0"
}
}
},
"Sentry.PlatformAbstractions/1.1.1": {
"runtime": {
"lib/netstandard2.0/Sentry.PlatformAbstractions.dll": {
"assemblyVersion": "1.1.1.0",
"fileVersion": "1.1.1.0"
}
}
},
"Sentry.Protocol/2.1.6": {
"runtime": {
"lib/netstandard2.0/Sentry.Protocol.dll": {
"assemblyVersion": "2.1.6.0",
"fileVersion": "2.1.6.0"
}
}
},
"Stub.System.Data.SQLite.Core.NetStandard/1.0.113.1": {
"runtime": {
"lib/netstandard2.0/System.Data.SQLite.dll": {
"assemblyVersion": "1.0.113.0",
"fileVersion": "1.0.113.0"
}
}
},
"System.Data.SQLite.Core/1.0.113.6": {
"dependencies": {
"Stub.System.Data.SQLite.Core.NetStandard": "1.0.113.1"
}
},
"System.Reactive/4.3.2": {
"dependencies": {
"System.Runtime.InteropServices.WindowsRuntime": "4.3.0",
"System.Threading.Tasks.Extensions": "4.5.3"
},
"runtime": {
"lib/netstandard2.0/System.Reactive.dll": {
"assemblyVersion": "4.3.0.0",
"fileVersion": "4.3.2.55399"
}
}
},
"System.Runtime/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"System.Runtime.CompilerServices.Unsafe/4.5.2": {
"runtime": {
"lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {
"assemblyVersion": "4.0.4.1",
"fileVersion": "4.6.26919.2"
}
}
},
"System.Runtime.InteropServices.WindowsRuntime/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0"
},
"runtime": {
"lib/netstandard1.3/System.Runtime.InteropServices.WindowsRuntime.dll": {
"assemblyVersion": "4.0.2.0",
"fileVersion": "4.6.24705.1"
}
}
},
"System.Threading.Tasks.Extensions/4.5.3": {
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "4.5.2"
},
"runtime": {
"lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": {
"assemblyVersion": "4.2.0.1",
"fileVersion": "4.6.27818.1"
}
}
}
}
},
"libraries": {
"Objects/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"GraphQL.Client/3.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-S0UaSc2EAKY2ELe/LHqEw9j0ic7t5acK7LWX4GHGE+YSQL37+7Zp7GKhJjDdXJ05Tyayw8wII7hI7TBUULwlgA==",
"path": "graphql.client/3.2.0",
"hashPath": "graphql.client.3.2.0.nupkg.sha512"
},
"GraphQL.Client.Abstractions/3.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-1ZUCG978qlWAHNF+wQdmDJNrFTx/y/zSBTyDlQcrEPWLisLMX6l4rjjU2pC7oZwULE3K4NO/XNUTyPVjzho7Vg==",
"path": "graphql.client.abstractions/3.2.0",
"hashPath": "graphql.client.abstractions.3.2.0.nupkg.sha512"
},
"GraphQL.Client.Abstractions.Websocket/3.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3FQRD2QysbLJp/fY0iw1J/cWSrc2wn8JRM6nzeQz+f6mW1jNHMjqCyAhz7FoIO2X/jHLiEZ1+EOrZU//YikCYQ==",
"path": "graphql.client.abstractions.websocket/3.2.0",
"hashPath": "graphql.client.abstractions.websocket.3.2.0.nupkg.sha512"
},
"GraphQL.Client.Serializer.Newtonsoft/3.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-7fipj8HT5P4vfeTd6RWHZYVNjRGCmi5z6rvYa4p5odMAGqDdnoqRi2/UFVZJr90azo2KtB6OM26HgCqlO6VNEg==",
"path": "graphql.client.serializer.newtonsoft/3.2.0",
"hashPath": "graphql.client.serializer.newtonsoft.3.2.0.nupkg.sha512"
},
"GraphQL.Primitives/3.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-mHYZECTsq5hclsUJV8mI55XL/85xVpTDdq88k8aLrYVFBwAuPHU4oT7gbzWE41lRWeHEzJeZJ6VdY4Mzoqg3YQ==",
"path": "graphql.primitives/3.2.0",
"hashPath": "graphql.primitives.3.2.0.nupkg.sha512"
},
"Microsoft.CSharp/4.7.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
"path": "microsoft.csharp/4.7.0",
"hashPath": "microsoft.csharp.4.7.0.nupkg.sha512"
},
"Microsoft.NETCore.Platforms/1.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
"path": "microsoft.netcore.platforms/1.1.0",
"hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
},
"Microsoft.NETCore.Targets/1.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
"path": "microsoft.netcore.targets/1.1.0",
"hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
},
"NETStandard.Library/2.0.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
"path": "netstandard.library/2.0.3",
"hashPath": "netstandard.library.2.0.3.nupkg.sha512"
},
"Newtonsoft.Json/12.0.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
"path": "newtonsoft.json/12.0.3",
"hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
},
"Piwik.Tracker/3.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-91mJZeyxFUhA9t2oFTVw+W7p9t7+oZ1KAPfvGUvAkX2m/74xDlPsp8qfs4UIW9XE+TrU7PCBn43QPh0rP9jeOA==",
"path": "piwik.tracker/3.0.0",
"hashPath": "piwik.tracker.3.0.0.nupkg.sha512"
},
"Sentry/2.1.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Haii3y9JZX9Z/HrHyy8r0cLj6WvTTFS4xbGI0UtItZ53yB/hGaWeXD5mvk47HAVOHeix8Gg64tguxIBCicoMAQ==",
"path": "sentry/2.1.6",
"hashPath": "sentry.2.1.6.nupkg.sha512"
},
"Sentry.PlatformAbstractions/1.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ug99ZPdcQQY2Q2smO5tWfxUdMQF8f90UdCKMSfhucJVOAQtKWM0rXcqLvVZRlXDzeB/xNQWLSuw56I5MuaOS9g==",
"path": "sentry.platformabstractions/1.1.1",
"hashPath": "sentry.platformabstractions.1.1.1.nupkg.sha512"
},
"Sentry.Protocol/2.1.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-AXVI9e/mYp5NI/r+Tfk//YyXGGCUxq698xnOuJbiDUJ2FYw88BdB1Ewmv29pA8FTh/MLBWTPIwTVBWMouZrQBA==",
"path": "sentry.protocol/2.1.6",
"hashPath": "sentry.protocol.2.1.6.nupkg.sha512"
},
"Stub.System.Data.SQLite.Core.NetStandard/1.0.113.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-qFjwuCuZlTz3yT06gaueDJwTykiblNeaLTx3sONXoNlLm2NJwghLvr+W9fvRevKcYcIRiKrq6WJ56QwZJq9fnQ==",
"path": "stub.system.data.sqlite.core.netstandard/1.0.113.1",
"hashPath": "stub.system.data.sqlite.core.netstandard.1.0.113.1.nupkg.sha512"
},
"System.Data.SQLite.Core/1.0.113.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-8Iyo9b2iG29eYCGjnly6EdF+yw20q83vRTkK9zpJzip5QvQeRSs7rQPmaxg+R2oJKNL8w/6K274F6YHXkEjq5w==",
"path": "system.data.sqlite.core/1.0.113.6",
"hashPath": "system.data.sqlite.core.1.0.113.6.nupkg.sha512"
},
"System.Reactive/4.3.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-WhGkScPWxw2pp7UwRW8M1OvYZ3WUDPC2wJ0aiuaB4KRD3bt4wLkgHgYnOUu87WRhsurvv5LN0E63iWOEza2o8g==",
"path": "system.reactive/4.3.2",
"hashPath": "system.reactive.4.3.2.nupkg.sha512"
},
"System.Runtime/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
"path": "system.runtime/4.3.0",
"hashPath": "system.runtime.4.3.0.nupkg.sha512"
},
"System.Runtime.CompilerServices.Unsafe/4.5.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-wprSFgext8cwqymChhrBLu62LMg/1u92bU+VOwyfBimSPVFXtsNqEWC92Pf9ofzJFlk4IHmJA75EDJn1b2goAQ==",
"path": "system.runtime.compilerservices.unsafe/4.5.2",
"hashPath": "system.runtime.compilerservices.unsafe.4.5.2.nupkg.sha512"
},
"System.Runtime.InteropServices.WindowsRuntime/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-J4GUi3xZQLUBasNwZnjrffN8i5wpHrBtZoLG+OhRyGo/+YunMRWWtwoMDlUAIdmX0uRfpHIBDSV6zyr3yf00TA==",
"path": "system.runtime.interopservices.windowsruntime/4.3.0",
"hashPath": "system.runtime.interopservices.windowsruntime.4.3.0.nupkg.sha512"
},
"System.Threading.Tasks.Extensions/4.5.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==",
"path": "system.threading.tasks.extensions/4.5.3",
"hashPath": "system.threading.tasks.extensions.4.5.3.nupkg.sha512"
}
}
}

Просмотреть файл

@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: e956ff765e1ed694cbb061e768b7fb8b
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

Двоичные данные
Assets/Speckle Connector/Objects/Objects.dll

Двоичный файл не отображается.

Просмотреть файл

@ -68,8 +68,8 @@ namespace Speckle.ConnectorUnity
{
try
{
var res = await Client.StreamGet(StreamId);
var mainBranch = res.branches.items.FirstOrDefault(b => b.name == "main");
var branches = await Client.StreamGetBranches(StreamId);
var mainBranch = branches.FirstOrDefault(b => b.name == "main");
var commit = mainBranch.commits.items[0];
return await GetAndConvertObject(commit.referencedObject, commit.id);
}

Просмотреть файл

@ -1,370 +0,0 @@
{
"runtimeTarget": {
"name": ".NETStandard,Version=v2.0/",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETStandard,Version=v2.0": {},
".NETStandard,Version=v2.0/": {
"ServerTransport/1.0.0": {
"dependencies": {
"NETStandard.Library": "2.0.3",
"SpeckleCore": "1.0.0"
},
"runtime": {
"ServerTransport.dll": {}
}
},
"GraphQL.Client/3.2.0": {
"dependencies": {
"GraphQL.Client.Abstractions": "3.2.0",
"GraphQL.Client.Abstractions.Websocket": "3.2.0"
},
"runtime": {
"lib/netstandard2.0/GraphQL.Client.dll": {
"assemblyVersion": "3.2.0.0",
"fileVersion": "3.2.0.0"
}
}
},
"GraphQL.Client.Abstractions/3.2.0": {
"dependencies": {
"GraphQL.Primitives": "3.2.0",
"System.Reactive": "4.3.2"
},
"runtime": {
"lib/netstandard2.0/GraphQL.Client.Abstractions.dll": {
"assemblyVersion": "3.2.0.0",
"fileVersion": "3.2.0.0"
}
}
},
"GraphQL.Client.Abstractions.Websocket/3.2.0": {
"dependencies": {
"GraphQL.Client.Abstractions": "3.2.0"
},
"runtime": {
"lib/netstandard2.0/GraphQL.Client.Abstractions.Websocket.dll": {
"assemblyVersion": "3.2.0.0",
"fileVersion": "3.2.0.0"
}
}
},
"GraphQL.Client.Serializer.Newtonsoft/3.2.0": {
"dependencies": {
"GraphQL.Client.Abstractions.Websocket": "3.2.0",
"Newtonsoft.Json": "12.0.3"
},
"runtime": {
"lib/netstandard2.0/GraphQL.Client.Serializer.Newtonsoft.dll": {
"assemblyVersion": "3.2.0.0",
"fileVersion": "3.2.0.0"
}
}
},
"GraphQL.Primitives/3.2.0": {
"runtime": {
"lib/netstandard2.0/GraphQL.Primitives.dll": {
"assemblyVersion": "3.2.0.0",
"fileVersion": "3.2.0.0"
}
}
},
"Microsoft.CSharp/4.7.0": {
"runtime": {
"lib/netstandard2.0/Microsoft.CSharp.dll": {
"assemblyVersion": "4.0.5.0",
"fileVersion": "4.700.19.56404"
}
}
},
"Microsoft.NETCore.Platforms/1.1.0": {},
"Microsoft.NETCore.Targets/1.1.0": {},
"NETStandard.Library/2.0.3": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0"
}
},
"Newtonsoft.Json/12.0.3": {
"runtime": {
"lib/netstandard2.0/Newtonsoft.Json.dll": {
"assemblyVersion": "12.0.0.0",
"fileVersion": "12.0.3.23909"
}
}
},
"Piwik.Tracker/3.0.0": {
"runtime": {
"lib/net40/Piwik.Tracker.dll": {
"assemblyVersion": "3.0.0.0",
"fileVersion": "3.0.0.0"
}
}
},
"Sentry/2.1.6": {
"dependencies": {
"Newtonsoft.Json": "12.0.3",
"Sentry.PlatformAbstractions": "1.1.1",
"Sentry.Protocol": "2.1.6"
},
"runtime": {
"lib/netstandard2.0/Sentry.dll": {
"assemblyVersion": "2.1.6.0",
"fileVersion": "2.1.6.0"
}
}
},
"Sentry.PlatformAbstractions/1.1.1": {
"runtime": {
"lib/netstandard2.0/Sentry.PlatformAbstractions.dll": {
"assemblyVersion": "1.1.1.0",
"fileVersion": "1.1.1.0"
}
}
},
"Sentry.Protocol/2.1.6": {
"runtime": {
"lib/netstandard2.0/Sentry.Protocol.dll": {
"assemblyVersion": "2.1.6.0",
"fileVersion": "2.1.6.0"
}
}
},
"Stub.System.Data.SQLite.Core.NetStandard/1.0.113.1": {
"runtime": {
"lib/netstandard2.0/System.Data.SQLite.dll": {
"assemblyVersion": "1.0.113.0",
"fileVersion": "1.0.113.0"
}
}
},
"System.Data.SQLite.Core/1.0.113.6": {
"dependencies": {
"Stub.System.Data.SQLite.Core.NetStandard": "1.0.113.1"
}
},
"System.Reactive/4.3.2": {
"dependencies": {
"System.Runtime.InteropServices.WindowsRuntime": "4.3.0",
"System.Threading.Tasks.Extensions": "4.5.3"
},
"runtime": {
"lib/netstandard2.0/System.Reactive.dll": {
"assemblyVersion": "4.3.0.0",
"fileVersion": "4.3.2.55399"
}
}
},
"System.Runtime/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"System.Runtime.CompilerServices.Unsafe/4.5.2": {
"runtime": {
"lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {
"assemblyVersion": "4.0.4.1",
"fileVersion": "4.6.26919.2"
}
}
},
"System.Runtime.InteropServices.WindowsRuntime/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0"
},
"runtime": {
"lib/netstandard1.3/System.Runtime.InteropServices.WindowsRuntime.dll": {
"assemblyVersion": "4.0.2.0",
"fileVersion": "4.6.24705.1"
}
}
},
"System.Threading.Tasks.Extensions/4.5.3": {
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "4.5.2"
},
"runtime": {
"lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": {
"assemblyVersion": "4.2.0.1",
"fileVersion": "4.6.27818.1"
}
}
},
"SpeckleCore/1.0.0": {
"dependencies": {
"GraphQL.Client": "3.2.0",
"GraphQL.Client.Serializer.Newtonsoft": "3.2.0",
"Microsoft.CSharp": "4.7.0",
"Newtonsoft.Json": "12.0.3",
"Piwik.Tracker": "3.0.0",
"Sentry": "2.1.6",
"System.Data.SQLite.Core": "1.0.113.6"
},
"runtime": {
"SpeckleCore2.dll": {}
}
}
}
},
"libraries": {
"ServerTransport/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"GraphQL.Client/3.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-S0UaSc2EAKY2ELe/LHqEw9j0ic7t5acK7LWX4GHGE+YSQL37+7Zp7GKhJjDdXJ05Tyayw8wII7hI7TBUULwlgA==",
"path": "graphql.client/3.2.0",
"hashPath": "graphql.client.3.2.0.nupkg.sha512"
},
"GraphQL.Client.Abstractions/3.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-1ZUCG978qlWAHNF+wQdmDJNrFTx/y/zSBTyDlQcrEPWLisLMX6l4rjjU2pC7oZwULE3K4NO/XNUTyPVjzho7Vg==",
"path": "graphql.client.abstractions/3.2.0",
"hashPath": "graphql.client.abstractions.3.2.0.nupkg.sha512"
},
"GraphQL.Client.Abstractions.Websocket/3.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3FQRD2QysbLJp/fY0iw1J/cWSrc2wn8JRM6nzeQz+f6mW1jNHMjqCyAhz7FoIO2X/jHLiEZ1+EOrZU//YikCYQ==",
"path": "graphql.client.abstractions.websocket/3.2.0",
"hashPath": "graphql.client.abstractions.websocket.3.2.0.nupkg.sha512"
},
"GraphQL.Client.Serializer.Newtonsoft/3.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-7fipj8HT5P4vfeTd6RWHZYVNjRGCmi5z6rvYa4p5odMAGqDdnoqRi2/UFVZJr90azo2KtB6OM26HgCqlO6VNEg==",
"path": "graphql.client.serializer.newtonsoft/3.2.0",
"hashPath": "graphql.client.serializer.newtonsoft.3.2.0.nupkg.sha512"
},
"GraphQL.Primitives/3.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-mHYZECTsq5hclsUJV8mI55XL/85xVpTDdq88k8aLrYVFBwAuPHU4oT7gbzWE41lRWeHEzJeZJ6VdY4Mzoqg3YQ==",
"path": "graphql.primitives/3.2.0",
"hashPath": "graphql.primitives.3.2.0.nupkg.sha512"
},
"Microsoft.CSharp/4.7.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
"path": "microsoft.csharp/4.7.0",
"hashPath": "microsoft.csharp.4.7.0.nupkg.sha512"
},
"Microsoft.NETCore.Platforms/1.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
"path": "microsoft.netcore.platforms/1.1.0",
"hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
},
"Microsoft.NETCore.Targets/1.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
"path": "microsoft.netcore.targets/1.1.0",
"hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
},
"NETStandard.Library/2.0.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
"path": "netstandard.library/2.0.3",
"hashPath": "netstandard.library.2.0.3.nupkg.sha512"
},
"Newtonsoft.Json/12.0.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
"path": "newtonsoft.json/12.0.3",
"hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
},
"Piwik.Tracker/3.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-91mJZeyxFUhA9t2oFTVw+W7p9t7+oZ1KAPfvGUvAkX2m/74xDlPsp8qfs4UIW9XE+TrU7PCBn43QPh0rP9jeOA==",
"path": "piwik.tracker/3.0.0",
"hashPath": "piwik.tracker.3.0.0.nupkg.sha512"
},
"Sentry/2.1.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Haii3y9JZX9Z/HrHyy8r0cLj6WvTTFS4xbGI0UtItZ53yB/hGaWeXD5mvk47HAVOHeix8Gg64tguxIBCicoMAQ==",
"path": "sentry/2.1.6",
"hashPath": "sentry.2.1.6.nupkg.sha512"
},
"Sentry.PlatformAbstractions/1.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ug99ZPdcQQY2Q2smO5tWfxUdMQF8f90UdCKMSfhucJVOAQtKWM0rXcqLvVZRlXDzeB/xNQWLSuw56I5MuaOS9g==",
"path": "sentry.platformabstractions/1.1.1",
"hashPath": "sentry.platformabstractions.1.1.1.nupkg.sha512"
},
"Sentry.Protocol/2.1.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-AXVI9e/mYp5NI/r+Tfk//YyXGGCUxq698xnOuJbiDUJ2FYw88BdB1Ewmv29pA8FTh/MLBWTPIwTVBWMouZrQBA==",
"path": "sentry.protocol/2.1.6",
"hashPath": "sentry.protocol.2.1.6.nupkg.sha512"
},
"Stub.System.Data.SQLite.Core.NetStandard/1.0.113.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-qFjwuCuZlTz3yT06gaueDJwTykiblNeaLTx3sONXoNlLm2NJwghLvr+W9fvRevKcYcIRiKrq6WJ56QwZJq9fnQ==",
"path": "stub.system.data.sqlite.core.netstandard/1.0.113.1",
"hashPath": "stub.system.data.sqlite.core.netstandard.1.0.113.1.nupkg.sha512"
},
"System.Data.SQLite.Core/1.0.113.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-8Iyo9b2iG29eYCGjnly6EdF+yw20q83vRTkK9zpJzip5QvQeRSs7rQPmaxg+R2oJKNL8w/6K274F6YHXkEjq5w==",
"path": "system.data.sqlite.core/1.0.113.6",
"hashPath": "system.data.sqlite.core.1.0.113.6.nupkg.sha512"
},
"System.Reactive/4.3.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-WhGkScPWxw2pp7UwRW8M1OvYZ3WUDPC2wJ0aiuaB4KRD3bt4wLkgHgYnOUu87WRhsurvv5LN0E63iWOEza2o8g==",
"path": "system.reactive/4.3.2",
"hashPath": "system.reactive.4.3.2.nupkg.sha512"
},
"System.Runtime/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
"path": "system.runtime/4.3.0",
"hashPath": "system.runtime.4.3.0.nupkg.sha512"
},
"System.Runtime.CompilerServices.Unsafe/4.5.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-wprSFgext8cwqymChhrBLu62LMg/1u92bU+VOwyfBimSPVFXtsNqEWC92Pf9ofzJFlk4IHmJA75EDJn1b2goAQ==",
"path": "system.runtime.compilerservices.unsafe/4.5.2",
"hashPath": "system.runtime.compilerservices.unsafe.4.5.2.nupkg.sha512"
},
"System.Runtime.InteropServices.WindowsRuntime/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-J4GUi3xZQLUBasNwZnjrffN8i5wpHrBtZoLG+OhRyGo/+YunMRWWtwoMDlUAIdmX0uRfpHIBDSV6zyr3yf00TA==",
"path": "system.runtime.interopservices.windowsruntime/4.3.0",
"hashPath": "system.runtime.interopservices.windowsruntime.4.3.0.nupkg.sha512"
},
"System.Threading.Tasks.Extensions/4.5.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==",
"path": "system.threading.tasks.extensions/4.5.3",
"hashPath": "system.threading.tasks.extensions.4.5.3.nupkg.sha512"
},
"SpeckleCore/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

Просмотреть файл

@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 4b265460fad30a54db6ac3fb459863a6
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

Двоичный файл не отображается.