diff --git a/Client/server/Upsilon.dll b/Client/server/Upsilon.dll index 1cb5f59..388e02b 100644 Binary files a/Client/server/Upsilon.dll and b/Client/server/Upsilon.dll differ diff --git a/Client/server/Upsilon.pdb b/Client/server/Upsilon.pdb index b419519..fe0c504 100644 Binary files a/Client/server/Upsilon.pdb and b/Client/server/Upsilon.pdb differ diff --git a/Client/server/UpsilonLanguageServer.dll b/Client/server/UpsilonLanguageServer.dll index c0839d7..38a631b 100644 Binary files a/Client/server/UpsilonLanguageServer.dll and b/Client/server/UpsilonLanguageServer.dll differ diff --git a/Client/server/UpsilonLanguageServer.pdb b/Client/server/UpsilonLanguageServer.pdb index fcfce89..041c53e 100644 Binary files a/Client/server/UpsilonLanguageServer.pdb and b/Client/server/UpsilonLanguageServer.pdb differ diff --git a/Client/upsilon-language-extension-1.0.0.vsix b/Client/upsilon-language-extension-1.0.0.vsix index c1b46f4..8a2ac0c 100644 Binary files a/Client/upsilon-language-extension-1.0.0.vsix and b/Client/upsilon-language-extension-1.0.0.vsix differ diff --git a/UpsilonLanguageServer/UpsilonLanguageServer/BoundTypeParser.cs b/UpsilonLanguageServer/UpsilonLanguageServer/BoundTypeParser.cs index 2ad6736..7dca0c5 100644 --- a/UpsilonLanguageServer/UpsilonLanguageServer/BoundTypeParser.cs +++ b/UpsilonLanguageServer/UpsilonLanguageServer/BoundTypeParser.cs @@ -98,7 +98,7 @@ namespace UpsilonLanguageServer }); } } - listOptions.Add(new UserDataBoundMethodOption(ParseType(returnType), parameters.ToArray())); + listOptions.Add(new UserDataBoundMethodOption(ParseType(returnType), parameters.ToArray(), false)); } var t = value.GetValue("type", StringComparison.InvariantCultureIgnoreCase).Value(); diff --git a/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/JsonRpc.DynamicProxy.dll b/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/JsonRpc.DynamicProxy.dll new file mode 100755 index 0000000..1ac85d5 Binary files /dev/null and b/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/JsonRpc.DynamicProxy.dll differ diff --git a/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/LanguageServer.VsCode.dll b/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/LanguageServer.VsCode.dll new file mode 100644 index 0000000..85430f6 Binary files /dev/null and b/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/LanguageServer.VsCode.dll differ diff --git a/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/LanguageServer.VsCode.pdb b/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/LanguageServer.VsCode.pdb new file mode 100644 index 0000000..6ca6e05 Binary files /dev/null and b/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/LanguageServer.VsCode.pdb differ diff --git a/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/LanguageServer.VsCode.xml b/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/LanguageServer.VsCode.xml new file mode 100644 index 0000000..164a143 --- /dev/null +++ b/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/LanguageServer.VsCode.xml @@ -0,0 +1,1851 @@ + + + + LanguageServer.VsCode + + + + + A class that puts all the Language Protocol client-side proxy methods together. + + + + + Initializes a client-side proxy method aggreator instance with specified + and . + + The builder used to build implementations for the stub interfaces. + The client used to send JSON RPC requests. + Either or is null. + + + + The builder used to build implementations for the stub interfaces. + + + + + The client used to send JSON RPC requests. + + + + + Registers for a new capability on the client side. + Not all clients need to support dynamic capability registration. + A client opts in via the ClientCapabilities.dynamicRegistration property. + + + + + Unregisters a previously registered capability. + + + + + Diagnostics notification are sent from the server to the client to signal results of validation runs. + + The URI for which diagnostic information is reported. + An array of diagnostic information items. + To clear the existing diagnostics, pass instead of null. + + + + The telemetry notification is sent from the server to the client to ask the client to log a telemetry event. + + + + + The telemetry notification is sent from the server to the client to ask + the client to log a telemetry event. + + Any number of data to be sent. + + + + Diagnostics notification are sent from the server to the client to signal results of validation runs. + + The URI for which diagnostic information is reported. + An array of diagnostic information items. + + + + The show message notification is sent from a server to a client to ask the client to display + a particular message in the user interface. + + The message type. + The actual message. + + + + The show message request is sent from a server to a client to ask the client to + display a particular message in the user interface. In addition to the show + message notification the request allows to pass actions and to wait for an answer from the client. + + The message type. + The actual message. + The message action items to present. + + + + The show message request is sent from a server to a client to ask the client to + display a particular message in the user interface. In addition to the show + message notification the request allows to pass actions and to wait for an answer from the client. + + The message type. + The actual message. + The message action items to present. + + + + The log message notification is sent from the server to the client to ask the client to log a particular message. + + The message type. + The actual message. + + + + Modifies resource on the client side. + + The edits to apply. + Indicates whether the edit was applied or not. + + + + Contains additional diagnostic information about the context in which + a code action is run. + + + + + An array of diagnostics. + + + + + A code lens represents a command that should be shown along with + source text, like the number of references, a way to run tests, etc. + + + + + The range in which this code lens is valid. Should only span a single line. + + + + + The command this code lens represents. + + + A code lens is "unresolved" when no command is associated to it. For performance + reasons the creation of a code lens and resolving should be done in two stages. + + + + + A data entry field that is preserved on a code lens item between + a code lens and a code lens resolve request. + + + + + Descibe options to be used when registered for code lens events. + + + + + Code lens has a resolve provider as well. + + + + + Use instead of this class. + + + + + Represents a reference to a VS Code command. (Command in language protocol.) + + + + + Arguments that the command handler should be invoked with. + + + + + The identifier of the actual command handler. + + + + + Title of the command, like `save`. + + + + + Execute command registration options. + + + + + The commands to be executed on the server. + + + + + The kind of a completion entry. + + + + + Defines whether the insert text in a completion item should be interpreted as + plain text or a snippet. + + + + + The primary text to be inserted is treated as a plain string. + + + + + The primary text to be inserted is treated as a snippet. + + + A snippet can define tab stops and placeholders with $1, $2 + and ${3:foo}. $0 defines the final tab stop, it defaults to + the end of the snippet.Placeholders with equal identifiers are linked, + that is typing in one will update others too. + + See also: https://github.com/Microsoft/vscode/blob/master/src/vs/editor/contrib/snippet/common/snippet.md + + + + + + Represents a collection of to be presented in the editor。 + + + + + This list it not complete. Further typing should result in recomputing this list. + + + + + The completion items. + + + + + A completion item. + + + + + The label of this completion item. By default + also the text that is inserted when selecting + this completion. + + + + + The kind of this completion item. Based of the kind + an icon is chosen by the editor. + + + + + A human-readable (short) string with additional information + about this item, like type or symbol information. + + + + + A human-readable string that represents a doc-comment. + + + + + A string that shoud be used when comparing this item + with other items. When `falsy` the label is used. + + + + + A string that should be used when filtering a set of + completion items. When `falsy` the label is used. + + + + + A string that should be inserted a document when selecting + this completion. When `falsy` the label is used. + + + + + The format of the insert text. The format applies to both the `insertText` property + and the `newText` property of a provided `textEdit`. + + + + + An edit which is applied to a document when selecting this completion. When an edit is provided the value of + `insertText` is ignored. + + *Note:* The range of the edit must be a single line range and it must contain the position at which completion + has been requested. + + + + + An optional array of additional text edits that are applied when + selecting this completion. Edits must not overlap with the main edit + nor with themselves. + + + + + An optional set of characters that when pressed while this completion is active will accept it first and + then type that character. + + + + + An optional command that is executed *after* inserting this completion. *Note* that + additional modifications to the current document should be described with the + property. + + + + + An data entry field that is preserved on a completion item between + a completion and a completion resolve request. + + + + + Descibe options to be used when registered for code completion events. + + + + + The server provides support to resolve additional + information for a completion item. (i.e. supports completionItem/resolve.) + + + + + The characters that trigger completion automatically. + + + + + Contains additional information about the context in which a completion request is triggered. + + + When used to implement textDocument/completion, this instance + is only available if the client specifies to send this using + ClientCapabilities.TextDocument.Completion.ContextSupport == true. + + + + + Initializes a new + with set to . + + + + + Initializes a new + with set to . + + The character that triggers the completion. + + + How the completion was triggered. + + + + The trigger character (a single character) that has trigger code complete. + Is undefined if is not . + + + + How a completion was triggered. + + + + Completion was triggered by typing an identifier (24x7 code complete), + manual invocation (e.g Ctrl+Space) or via API. + + + + + Completion was triggered by a trigger character specified by + the property + of the . + + + + + A value assigned to a determining its severity. + + + + + Reports an error. + + + + + Reports a warning. + + + + + Reports an information. + + + + + Reports a hint. + + + + + Represents a diagnostic, such as a compiler error or warning. + + + + + Represents an empty array of + + + + + The diagnostic's code. + + + + + The diagnostic's message. + + + + + The range to which the message applies. + + + + + The diagnostic's severity. + + + + + A human-readable string describing the source of this diagnostic, e.g. 'typescript' or 'super lint'. + + + + + Signature for further properties. + + + + + + + + A document filter denotes a document through properties like language, schema or pattern. + + + Examples are a filter that applies to TypeScript files on disk or a filter the applies to + JSON files with name package.json: + + { language: 'typescript', scheme: 'file' } + { language: 'json', pattern: '**/package.json' } + + + + A document selector is the combination of one or many document filters. + + + + + + A language id, like `typescript`. + + + + + A Uri scheme, like `file` in `file:///C:/abc.txt` or `untitled` in `untitled:`. + + + + + A glob pattern, like `*.{ts,js}`. + + + + + A document highlight is a range inside a text document which deserves + special attention. Usually a document highlight is visualized by changing + the background color of its range. + + + + + The range this highlight applies to. + + + + + The highlight kind, default is . + + + + + Write-access of a symbol, like writing to a variable. + + + + + A textual occurrence. + + + + + Read-access of a symbol, like reading a variable. + + + + + Write-access of a symbol, like writing to a variable. + + + + + A document link is a range in a text document that links to an internal or external resource, like another + text document or a web site. + + + + + The range this link applies to. + + + + + The range this link applies to. If missing a resolve request is sent later. + + + + + Descibe options to be used when registered for document link events. + + + + + Document links have a resolve provider as well. + + + + + Descibe options to be used when registered for document link events. + + + + + A character on which formatting should be triggered. + + + + + More trigger characters. + + + + + Represents programming constructs like variables, classes, interfaces etc. that appear in a document. Document symbols can be + hierarchical and they have two ranges: one that encloses its definition and one that points to its most interesting range, + e.g. the range of an identifier. + + + + + The name of this symbol. Will be displayed in the user interface and therefore must not be + an empty string or a string only consisting of white spaces. + + + + + More detail for this symbol, e.g the signature of a function. + + + + + The kind of this symbol. + + + + + Indicates if this symbol is deprecated. + + + + + The range enclosing this symbol not including leading/trailing whitespace but everything else + like comments. This information is typically used to determine if the clients cursor is + inside the symbol to reveal in the symbol in the UI. + + + + + The range that should be selected and revealed when this symbol is being picked, e.g the name of a function. + Must be contained by the `range`. + + + + + Children of this symbol, e.g. properties of a class. + + + + + An event describing a file change. + + + + + The file's URI. + + + + + The change type. + + + + + The file event type. + + + + + The file got created. + + + + + The file got changed. + + + + + The file got deleted. + + + + + Value-object describing what options formatting should use. + + + + + Size of a tab in spaces. + + + + + Prefer spaces over tabs. + + + + + Signature for further properties. + + + + + Represents the result of a hover request - a formatted tooltip. + + + + + A Markdown string to display in the Hover. + + + + + The range to which this Hover applies. + + + + + Whether this capability supports dynamic registration. + + + + + + + + Defines the capabilities provided by the client. + + + + + Workspace specific client capabilities. + + + + + Text document specific client capabilities. + + + + + Experimental client capabilities. + + + + + Defines capabilities the editor / tool provides on the workspace. + + + + + The client supports applying batch edits to the workspace by supporting + the request 'workspace/applyEdit'. + + + + + Capabilities specific to s. + + + + + specific to the `workspace/didChangeConfiguration` notification. + + + + + Capabilities specific to the `workspace/didChangeWatchedFiles` notification. + + + + + Capabilities specific to the `workspace/symbol` request. + + + + + Capabilities specific to the `workspace/executeCommand` request. + + + + + Capabilities specific to s. + + + + + The client supports versioned document changes in s. + + + + + Defines capabilities the editor / tool provides on text documents. + + + + + Synchronization supports. + + + + + Capabilities specific to the `textDocument/completion` + + + + + The server provides hover support. + + + + + The server provides signature help support. + + + + + The server provides goto definition support. + + + + + The server provides find references support. + + + + + The server provides document highlight support. + + + + + The server provides document symbol support. + + + + + The server provides workspace symbol support. + + + + + The server provides code actions. + + + + + The server provides code lens. + + + + + The server provides document formatting. + + + + + The server provides document range formatting. + + + + + The server provides document formatting on typing. + + + + + The server provides rename support. + + + + + The client supports sending will save notifications. + + + + + The client supports sending a will save request and + waits for a response providing text edits which will + be applied to the document before it is saved. + + + + + The client supports did save notifications. + + + + + The client supports the following specific capabilities. + + + + + The client supports to send additional context information for a + textDocument/completion request. + + + + + Client supports snippets as insert text. + + + A snippet can define tab stops and placeholders with `$1`, `$2` + and `${3:foo}`. `$0` defines the final tab stop, it defaults to + the end of the snippet. Placeholders with equal identifiers are linked, + that is typing in one will update others too. + + + + Client supports commit on a completion item. + + + + Client supports the follow content formats for the documentation + property.The order describes the preferred format of the client. + + + + + The completion item kind values the client supports. When this + property exists the client also guarantees that it will + handle values outside its set gracefully and falls back + to a default value when unknown. + + + If this property is not present, the client only supports + the completion items kinds from `Text` to `Reference` as defined in + the initial version of the protocol. + + + + + Capabilities specific to the `textDocument/hover`. + + + + + Client supports the follow content formats for the content property. + The order describes the preferred format of the client. + + + + + Capabilities specific to the `textDocument/signatureHelp`. + + + + + The client supports the following specific properties. + + + + + Client supports the follow content formats for the documentation + property. The order describes the preferred format of the client. + + + + + The response for initialize request. + + + + + The capabilities the language server provides. + + + + + The error response for initialize request. (Set this object to .) + + + + + Indicates whether the client execute the retry logic as described in the "remarks" section. + + + The retry logic is as follows: + + show the message provided by the ResponseError to the user + user selects retry or cancel + if user selected retry the initialize method is sent again. + + + + + + Defines capabilities provided by the language server. + + + + + Defines how text documents are synced. Is either a detailed structure defining each notification or + for backwards compatibility the number. + + + + + The server provides hover support. + + + + + The server provides completion support. + + + + + The server provides signature help support. + + + + + The server provides goto definition support. + + + + + The server provides find references support. + + + + + The server provides document highlight support. + + + + + The server provides document symbol support. + + + + + The server provides workspace symbol support. + + + + + The server provides code actions. + + + + + The server provides code lens. + + + + + The server provides document formatting. + + + + + The server provides document range formatting. + + + + + The server provides document formatting on typing. + + + + + The server provides rename support. + + + + + The server provides document link support. + + + + + The server provides execute command support. + + + + + Experimental server capabilities. + + + + + Signature help options. + + + + + The characters that trigger signature help automatically. + + + + + Code Lens options. + + + + + Code lens has a resolve provider as well. + + + + + Format document on type options. + + + + + A character on which formatting should be triggered. + + + + + More trigger characters. + + + + + Signature help options. + + + + + Document links have a resolve provider as well. + + + + + Signature help options. + + + + + Document links have a resolve provider as well. + + + + + Defines how the host (editor) should sync document changes to the language server. + + + + + Documents should not be synced at all. + + + + + Documents are synced by always sending the full content + of the document. + + + + + Documents are synced by sending the full content on open. + After that only incremental updates to the document are send. + + + + + Open and close notifications are sent to the server. + + + + + Change notificatins are sent to the server. See TextDocumentSyncKind.None, TextDocumentSyncKind.Full + and TextDocumentSyncKind.Incremental. + + + + + Will save notifications are sent to the server. + + + + + Will save wait until requests are sent to the server. + + + + + Save notifications are sent to the server. + + + + + Save options. + + + + + The client is supposed to include the content on save. + + + + + Completion options. + + + + + The server provides support to resolve additional + information for a completion item. (i.e. supports completionItem/resolve.) + + + + + The characters that trigger completion automatically. + + + + + Represents a location inside a resource, such as a line inside a text file. + + + + + + + + + + + + + + A range in a text document expressed as (zero-based) start and end positions. + A range is comparable to a selection in an editor. + Therefore the end position is exclusive. + + + + + + + + + + + + + + + + + Position in a text document expressed as zero-based line and character offset. + A position is between two characters like an 'insert' cursor in a editor. + + + + + + + + + + + + + + + + + + + + A `MarkupContent` literal represents a string value which content is interpreted base on its + kind flag. Currently the protocol supports plaintext and markdown as markup kinds. + If the kind is `markdown` then the value can contain fenced code blocks like in GitHub issues. + See https://help.github.com/articles/creating-and-highlighting-code-blocks/#syntax-highlighting. + + + + is null. + + + The type of the Markup. + + + The content itself. + + + + Describes the content type that a client supports in various + result literals like , or . + + + Please note that must not start with a `$`. This kinds + are reserved for internal usage. + + + + + Plain text is supported as a content format. + + + + + Markdown is supported as a content format. + + + + + Gets the string representation of the markup kind. + + + + + + + + + + + + + + + + + Used to convert into JSON. + + + + + + + + + + + + + + An error message. + + + + + A warning message. + + + + + An information message. + + + + + A log message. + + + + + Represents an action button shown in the message box (or popup bar). + + + + + A short title like 'Retry', 'Open Log' etc. + + + + + Provides a handy structure for covnersion between string and . + + + + + + + + + + + + + + + + + + + + Used with textDocument/references. + + + + + Include the declaration of the current symbol. + + + + + General paramters to register for a capability. + + + + + Initialize an empty registration entry. + + + + + Initialize with automatic generated and other given parameters. + + + + + Initialize with given parameters. + + + + + The id used to register the request. The id can be used to deregister + the request again. + + + + + The method / capability to register for. + + + + + Options necessary for the registration. + + + + + Registration options for in client/registerCapability. + You may derive your own options class from here, if necessary. + + + + + Since most of the registration options require to specify a document selector, + there is a base interface that can be used. + + + + + A document selector to identify the scope of the registration. If set to null + the document selector provided on the client side will be used. + + + + + General parameters to unregister a capability. + + + + + Initialize an empty class. + + + + + Initialize with given parameters. + + + + + The id used to unregister the request or notification. Usually an id + provided during the register request. + + + + + The method / capability to unregister for. + + + + + Signature help represents the signature of something + callable.There can be multiple signature but only one + active and only one active parameter. + + + + + One or more signatures. + + + + + The active signature. If omitted or the value lies outside the + range of `signatures` the value defaults to zero or is ignored if + `signatures.length === 0`. Whenever possible implementors should + make an active decision about the active signature and shouldn't + rely on a default value. + In future version of the protocol this property might become + mandantory to better express this. + + + + + The active parameter of the active signature. If omitted or the value + lies outside the range of `signatures[activeSignature].parameters` + defaults to 0 if the active signature has parameters. If + the active signature has no parameters it is ignored. + In future version of the protocol this property might become + mandantory to better express the active parameter if the + active signature does have any. + + + + + Represents the signature of something callable.A signature + can have a label, like a function-name, a doc-comment, and + a set of parameters. + + + + + The label of this signature. Will be shown in + the UI. + + + + + The human-readable doc-comment of this signature. Will be shown + in the UI but can be omitted. + + + + + The parameters of this signature. + + + + + Represents a parameter of a callable-signature.A parameter can + have a label and a doc-comment. + + + + + The label of this parameter. Will be shown in + the UI. + + + + + The human-readable doc-comment of this parameter. Will be shown + in the UI but can be omitted. + + + + + Descibe options to be used when registered for signature help events. + + + + + The characters that trigger signature help automatically. + + + + + Represents information about programming constructs like variables, classes, + interfaces etc. + + + + + The name of this symbol. + + + + + The kind of this symbol. + + + + + The location of this symbol. + + + + + The name of the symbol containing this symbol. + + + + + A symbol kind. + + + + + An item to transfer a text document from the client to the server. + + + + + The text document's language identifier. + + + + + The content of the opened text document. + + + + + The text document's URI. + + + + + The version number of this document (it will strictly increase after each change, including undo/redo). + + + + + Text documents are identified using a URI. + + + + + + + + + + + + + + + + + An identifier to denote a specific version of a text document. + + + + + + + + + + + + + + An event describing a change to a text document. + If range and rangeLength are omitted, the new text is considered to be the full content of the document. + + + + + The range of the document that changed. + + + + + The length of the range (text length) that got replaced. + + + + + Gets/sets whether both and are available. + + + + + The new text of the range/document. + + + If and are omitted, + the new text is considered to be the full content of the document. + + + + + Descibe options to be used when registered for text document change events. + + + + + Represents reasons why a text document is saved. (In textDocument/willSave.) + + + + + Manually triggered, e.g. by the user pressing save, by starting debugging, + or by an API call. + + + + + Automatic after a delay. + + + + + When the editor lost focus. + + + + + Descibe options to be used when registered for text document save events. + + + + + A textual edit operation applicable to a text document. + + + + + The range of the text document to be manipulated. To insert + text into a document create a range where start === end. + + + + + The string to be inserted.For delete operations use an empty string. + + + + + Describes textual changes on a single text document. + The text document is referred to as a to allow clients + to check the text document version before an edit is applied. + + + + + The text document to change. + + + + + The edits to be applied. + + + + + A workspace edit represents changes to many resources managed in the workspace. + The edit should either provide changes or documentChanges. + If are present they are preferred over + if the client can handle versioned document edits. + + + + + Holds changes to existing resources. + + + + + An array of `TextDocumentEdit`s to express changes to specific a specific + version of a text document. Whether a client supports versioned document + edits is expressed via `WorkspaceClientCapabilites.versionedWorkspaceEdit`. + + + + + Provides extension methods for implementing a Language Server. + + + + + Interprets any thrown by the service + as RequestCancelled error per definition in Language Server Protocol. + + + + + Determines whether the specified document URI indeicates an "untitled" document. + + + The URI of an untitled document has the following structure: untitled:xxxxx. + + + + + Represents the basic traits of an immutable plain-text document. + + + + + Creates a new instance derived from , and + fills it with the specified . + + A derived class of . + The document source to load information from. + is null. + + + + URI of the document. + + + You may use to determine whether + this document is untitled. + + + + + Document's language identifier. + + + + + Revision number of the document. + + + + + The full content of the document. + + + + + Total lines count of the document. + + + + + Fills this instance with the given . + + + + + Applies a series of s to the current document. + + + + + Gets a part of the content by the specified line/column-based range. + + + + + Gets a part of the content by the specified offset range. + + + + + Converts the specified 0-based document offset into . + + + + + Converts the specified into 0-based document offset. + + + + + A plain-text document object that always store the full content in it. + + + + + + + + + + + + + + Gets all the offsets that are the starts of new lines. + + is null. + + + + + + + + + + + + diff --git a/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/Upsilon.dll b/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/Upsilon.dll new file mode 100644 index 0000000..388e02b Binary files /dev/null and b/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/Upsilon.dll differ diff --git a/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/Upsilon.pdb b/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/Upsilon.pdb new file mode 100644 index 0000000..fe0c504 Binary files /dev/null and b/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/Upsilon.pdb differ diff --git a/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/UpsilonLanguageServer.deps.json b/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/UpsilonLanguageServer.deps.json new file mode 100644 index 0000000..68a2811 --- /dev/null +++ b/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/UpsilonLanguageServer.deps.json @@ -0,0 +1,946 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v2.1", + "signature": "581d4a2b95ddb38a06e4f4668085df59e24bb64d" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v2.1": { + "UpsilonLanguageServer/1.0.0": { + "dependencies": { + "CXuesong.JsonRpc.Streams": "0.4.2", + "Microsoft.Extensions.Logging": "2.1.1", + "Microsoft.Extensions.Logging.Debug": "1.1.0", + "Microsoft.Extensions.Logging.TraceSource": "2.1.1", + "JsonRpc.DynamicProxy": "0.4.0.0", + "LanguageServer.VsCode": "0.2.0.0", + "Upsilon": "1.0.0.0" + }, + "runtime": { + "UpsilonLanguageServer.dll": {} + } + }, + "CXuesong.JsonRpc.Standard/0.4.1": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.1.1", + "Newtonsoft.Json": "10.0.2" + }, + "runtime": { + "lib/netstandard1.1/JsonRpc.Standard.dll": { + "assemblyVersion": "0.4.0.0", + "fileVersion": "0.4.0.0" + } + } + }, + "CXuesong.JsonRpc.Streams/0.4.2": { + "dependencies": { + "CXuesong.JsonRpc.Standard": "0.4.1" + }, + "runtime": { + "lib/netstandard1.1/JsonRpc.Streams.dll": { + "assemblyVersion": "0.4.0.0", + "fileVersion": "0.4.0.0" + } + } + }, + "Microsoft.CSharp/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "Microsoft.Extensions.Configuration/2.1.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "2.1.1" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "2.1.1.0", + "fileVersion": "2.1.1.18157" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/2.1.1": { + "dependencies": { + "Microsoft.Extensions.Primitives": "2.1.1" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "2.1.1.0", + "fileVersion": "2.1.1.18157" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/2.1.1": { + "dependencies": { + "Microsoft.Extensions.Configuration": "2.1.1" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "2.1.1.0", + "fileVersion": "2.1.1.18157" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/2.1.1": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "2.1.1.0", + "fileVersion": "2.1.1.18157" + } + } + }, + "Microsoft.Extensions.Logging/2.1.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Binder": "2.1.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1", + "Microsoft.Extensions.Logging.Abstractions": "2.1.1", + "Microsoft.Extensions.Options": "2.1.1" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "2.1.1.0", + "fileVersion": "2.1.1.18157" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/2.1.1": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "2.1.1.0", + "fileVersion": "2.1.1.18157" + } + } + }, + "Microsoft.Extensions.Logging.Debug/1.1.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.1.1" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.Extensions.Logging.Debug.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.21115" + } + } + }, + "Microsoft.Extensions.Logging.TraceSource/2.1.1": { + "dependencies": { + "Microsoft.Extensions.Logging": "2.1.1" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.TraceSource.dll": { + "assemblyVersion": "2.1.1.0", + "fileVersion": "2.1.1.18157" + } + } + }, + "Microsoft.Extensions.Options/2.1.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1", + "Microsoft.Extensions.Primitives": "2.1.1" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "2.1.1.0", + "fileVersion": "2.1.1.18157" + } + } + }, + "Microsoft.Extensions.Primitives/2.1.1": { + "dependencies": { + "System.Memory": "4.5.1", + "System.Runtime.CompilerServices.Unsafe": "4.5.1" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "2.1.1.0", + "fileVersion": "2.1.1.18157" + } + } + }, + "Newtonsoft.Json/10.0.2": { + "dependencies": { + "Microsoft.CSharp": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Runtime.Serialization.Formatters": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Newtonsoft.Json.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.2.20802" + } + } + }, + "System.Collections/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Collections.NonGeneric/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.Specialized/4.3.0": { + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.ComponentModel/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Dynamic.Runtime/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "runtimeTargets": { + "runtime/unix/lib/_._": { + "rid": "unix", + "assetType": "runtime" + }, + "runtime/win/lib/_._": { + "rid": "win", + "assetType": "runtime" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Memory/4.5.1": {}, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": {}, + "System.Runtime.CompilerServices.Unsafe/4.5.1": { + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "4.0.4.0", + "fileVersion": "4.0.0.0" + } + } + }, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + } + }, + "System.Xml.XmlDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "JsonRpc.DynamicProxy/0.4.0.0": { + "runtime": { + "JsonRpc.DynamicProxy.dll": { + "assemblyVersion": "0.4.0.0", + "fileVersion": "0.4.0.0" + } + } + }, + "LanguageServer.VsCode/0.2.0.0": { + "runtime": { + "LanguageServer.VsCode.dll": { + "assemblyVersion": "0.2.0.0", + "fileVersion": "0.2.0.0" + } + } + }, + "Upsilon/1.0.0.0": { + "runtime": { + "Upsilon.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "UpsilonLanguageServer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "CXuesong.JsonRpc.Standard/0.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HwEIT6xHu0VaejVTvFCIOq+YqUGva89Zh96mqs75uYGpUuY3h/WW/MIRWjh1PfsCImOi/OxuiX/ggo9CXefWbQ==", + "path": "cxuesong.jsonrpc.standard/0.4.1", + "hashPath": "cxuesong.jsonrpc.standard.0.4.1.nupkg.sha512" + }, + "CXuesong.JsonRpc.Streams/0.4.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-A+hHT/A6LSM3OznOh09ynOqIt3A/bEmpBojRQKroycprZSX0/vb6nHpB5xjuFUGS/KolsQ2whsXdRAbKMS6Hcw==", + "path": "cxuesong.jsonrpc.streams/0.4.2", + "hashPath": "cxuesong.jsonrpc.streams.0.4.2.nupkg.sha512" + }, + "Microsoft.CSharp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==", + "path": "microsoft.csharp/4.3.0", + "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1JaydycXzbfAExlsD7XIWykzVnU/wZM86KzrHyGlXuxqnqzcWSXLJn4Ejn8bDnq07CEJNZ+GjsxWKlJ8kFfnvQ==", + "path": "microsoft.extensions.configuration/2.1.1", + "hashPath": "microsoft.extensions.configuration.2.1.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9EMhOWU2eOQOtMIJ+vfwKJpnLRc1Wl3vXu8qXeevA91cSY4j3WvArmF7ApGtJwa7yKewJTvlQlBSn9OSnLFg6Q==", + "path": "microsoft.extensions.configuration.abstractions/2.1.1", + "hashPath": "microsoft.extensions.configuration.abstractions.2.1.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t7KFAv6AxyUsZj9QN8FAbusg+X5baCELl+XtscyuP1IGUv5UctyY7/rNZLyiKaV7HhAcDQ1zC5ZQNQQFn6JpAA==", + "path": "microsoft.extensions.configuration.binder/2.1.1", + "hashPath": "microsoft.extensions.configuration.binder.2.1.1.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PW1596sF97gpIc1JuUuYvTmeLfeqC5whbWPsWgJhN0fdwz683him3b/HB0dqhFesVssOjnnA0fEz4+S0gUeBqA==", + "path": "microsoft.extensions.dependencyinjection.abstractions/2.1.1", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.2.1.1.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-x4/RzeReQSIi4nVpOjXEySm/xUSr6lBjuecdYnlUboWxbLSm2j3vhFV5OLGRp3gfte3cRMdysMNa/wyZN0t/Tw==", + "path": "microsoft.extensions.logging/2.1.1", + "hashPath": "microsoft.extensions.logging.2.1.1.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QWFWKrdeoDSEr8nVJaBAVDMj24wnh9clGzDNmMdgHHRsOIwTUMeh4XljeZXJhIKPT00jWuzwEzn3uNxOtO4cYg==", + "path": "microsoft.extensions.logging.abstractions/2.1.1", + "hashPath": "microsoft.extensions.logging.abstractions.2.1.1.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Debug/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6Kg1PyEbQjd37ZeWkrseJNvb99iUCdXRAjUqFd2zxW9ZCwjn9h+aSC2bMbyERvC+n6lImp053jqRBsotIrMiXw==", + "path": "microsoft.extensions.logging.debug/1.1.0", + "hashPath": "microsoft.extensions.logging.debug.1.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.TraceSource/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lPUHCOezUB7W9hvfJL/5Zaggpy0plgOaqHLM2T5Lv+v3/B4ISWTc4Pd1l33R5dv9v0MF6I4u3Kf732wEX6OPdg==", + "path": "microsoft.extensions.logging.tracesource/2.1.1", + "hashPath": "microsoft.extensions.logging.tracesource.2.1.1.nupkg.sha512" + }, + "Microsoft.Extensions.Options/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j0zOfTt1Qm+JDW2m+6Q/aj1m4C8+onudUu4ls/fN69VxruZkMWmX1bPKkbkYIPNNxJsf4k7FOkVq5o1vEFq9pQ==", + "path": "microsoft.extensions.options/2.1.1", + "hashPath": "microsoft.extensions.options.2.1.1.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Svz25/egj1TsNL4118jyMqkhDiu0l8QYWq2p52P4BBN0GbqwR18ZRIctSP5TTDJy0m0EFC8aB2FOVjGtvEGWSA==", + "path": "microsoft.extensions.primitives/2.1.1", + "hashPath": "microsoft.extensions.primitives.2.1.1.nupkg.sha512" + }, + "Newtonsoft.Json/10.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iwElSU2IXmwGvytJsezyDML2ZWDkG2JzTYzlU/BNlmzMdlmRvbnwITsGGY74gwVEpDli1UdOLkMT7/3jxWvXzA==", + "path": "newtonsoft.json/10.0.2", + "hashPath": "newtonsoft.json.10.0.2.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "path": "system.collections.nongeneric/4.3.0", + "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "path": "system.collections.specialized/4.3.0", + "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "path": "system.componentmodel/4.3.0", + "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "path": "system.componentmodel.primitives/4.3.0", + "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "path": "system.componentmodel.typeconverter/4.3.0", + "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "path": "system.dynamic.runtime/4.3.0", + "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vcG3/MbfpxznMkkkaAblJi7RHOmuP7kawQMhDgLSuA1tRpRQYsFSCTxRSINDUgn2QNn2jWeLxv8er5BXbyACkw==", + "path": "system.memory/4.5.1", + "hashPath": "system.memory.4.5.1.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.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.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-x/3d5xb+mc9e4I2GOOT+HPRWMZLbYjNN/kYKsb0fyUKcWizn/t1CIrGRLIBhv7H0ptYEt+WTTztdPmwSUMyKig==", + "path": "system.runtime.compilerservices.unsafe/4.5.1", + "hashPath": "system.runtime.compilerservices.unsafe.4.5.1.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==", + "path": "system.runtime.serialization.formatters/4.3.0", + "hashPath": "system.runtime.serialization.formatters.4.3.0.nupkg.sha512" + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==", + "path": "system.runtime.serialization.primitives/4.3.0", + "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", + "path": "system.threading.tasks.extensions/4.3.0", + "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "path": "system.xml.xmldocument/4.3.0", + "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" + }, + "JsonRpc.DynamicProxy/0.4.0.0": { + "type": "reference", + "serviceable": false, + "sha512": "" + }, + "LanguageServer.VsCode/0.2.0.0": { + "type": "reference", + "serviceable": false, + "sha512": "" + }, + "Upsilon/1.0.0.0": { + "type": "reference", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/UpsilonLanguageServer.dll b/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/UpsilonLanguageServer.dll new file mode 100644 index 0000000..38a631b Binary files /dev/null and b/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/UpsilonLanguageServer.dll differ diff --git a/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/UpsilonLanguageServer.pdb b/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/UpsilonLanguageServer.pdb new file mode 100644 index 0000000..041c53e Binary files /dev/null and b/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/UpsilonLanguageServer.pdb differ diff --git a/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/UpsilonLanguageServer.runtimeconfig.dev.json b/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/UpsilonLanguageServer.runtimeconfig.dev.json new file mode 100644 index 0000000..6f36ce2 --- /dev/null +++ b/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/UpsilonLanguageServer.runtimeconfig.dev.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "/home/nathan/.dotnet/store/|arch|/|tfm|", + "/home/nathan/.nuget/packages", + "/usr/share/dotnet/sdk/NuGetFallbackFolder" + ] + } +} \ No newline at end of file diff --git a/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/UpsilonLanguageServer.runtimeconfig.json b/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/UpsilonLanguageServer.runtimeconfig.json new file mode 100644 index 0000000..7994936 --- /dev/null +++ b/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/UpsilonLanguageServer.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "netcoreapp2.1", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "2.1.0" + } + } +} \ No newline at end of file diff --git a/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/publish/Upsilon.dll b/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/publish/Upsilon.dll index 1cb5f59..388e02b 100644 Binary files a/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/publish/Upsilon.dll and b/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/publish/Upsilon.dll differ diff --git a/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/publish/Upsilon.pdb b/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/publish/Upsilon.pdb index b419519..fe0c504 100644 Binary files a/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/publish/Upsilon.pdb and b/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/publish/Upsilon.pdb differ diff --git a/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/publish/UpsilonLanguageServer.dll b/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/publish/UpsilonLanguageServer.dll index c0839d7..38a631b 100644 Binary files a/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/publish/UpsilonLanguageServer.dll and b/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/publish/UpsilonLanguageServer.dll differ diff --git a/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/publish/UpsilonLanguageServer.pdb b/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/publish/UpsilonLanguageServer.pdb index fcfce89..041c53e 100644 Binary files a/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/publish/UpsilonLanguageServer.pdb and b/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/publish/UpsilonLanguageServer.pdb differ diff --git a/UpsilonLanguageServer/UpsilonLanguageServer/obj/Debug/netcoreapp2.1/UpsilonLanguageServer.csproj.CopyComplete b/UpsilonLanguageServer/UpsilonLanguageServer/obj/Debug/netcoreapp2.1/UpsilonLanguageServer.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/UpsilonLanguageServer/UpsilonLanguageServer/obj/Debug/netcoreapp2.1/UpsilonLanguageServer.csproj.FileListAbsolute.txt b/UpsilonLanguageServer/UpsilonLanguageServer/obj/Debug/netcoreapp2.1/UpsilonLanguageServer.csproj.FileListAbsolute.txt index 4923fce..c4651f1 100644 --- a/UpsilonLanguageServer/UpsilonLanguageServer/obj/Debug/netcoreapp2.1/UpsilonLanguageServer.csproj.FileListAbsolute.txt +++ b/UpsilonLanguageServer/UpsilonLanguageServer/obj/Debug/netcoreapp2.1/UpsilonLanguageServer.csproj.FileListAbsolute.txt @@ -1,4 +1,18 @@ +/home/nathan/Projects/Upsilon/UpsilonVsCodeLanguageServer/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/UpsilonLanguageServer.deps.json +/home/nathan/Projects/Upsilon/UpsilonVsCodeLanguageServer/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/UpsilonLanguageServer.runtimeconfig.json +/home/nathan/Projects/Upsilon/UpsilonVsCodeLanguageServer/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/UpsilonLanguageServer.runtimeconfig.dev.json +/home/nathan/Projects/Upsilon/UpsilonVsCodeLanguageServer/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/UpsilonLanguageServer.dll +/home/nathan/Projects/Upsilon/UpsilonVsCodeLanguageServer/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/UpsilonLanguageServer.pdb +/home/nathan/Projects/Upsilon/UpsilonVsCodeLanguageServer/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/JsonRpc.DynamicProxy.dll +/home/nathan/Projects/Upsilon/UpsilonVsCodeLanguageServer/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/LanguageServer.VsCode.dll +/home/nathan/Projects/Upsilon/UpsilonVsCodeLanguageServer/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/Upsilon.dll +/home/nathan/Projects/Upsilon/UpsilonVsCodeLanguageServer/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/LanguageServer.VsCode.pdb +/home/nathan/Projects/Upsilon/UpsilonVsCodeLanguageServer/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/LanguageServer.VsCode.xml +/home/nathan/Projects/Upsilon/UpsilonVsCodeLanguageServer/UpsilonLanguageServer/UpsilonLanguageServer/bin/Debug/netcoreapp2.1/Upsilon.pdb /home/nathan/Projects/Upsilon/UpsilonVsCodeLanguageServer/UpsilonLanguageServer/UpsilonLanguageServer/obj/Debug/netcoreapp2.1/UpsilonLanguageServer.csprojAssemblyReference.cache /home/nathan/Projects/Upsilon/UpsilonVsCodeLanguageServer/UpsilonLanguageServer/UpsilonLanguageServer/obj/Debug/netcoreapp2.1/UpsilonLanguageServer.csproj.CoreCompileInputs.cache /home/nathan/Projects/Upsilon/UpsilonVsCodeLanguageServer/UpsilonLanguageServer/UpsilonLanguageServer/obj/Debug/netcoreapp2.1/UpsilonLanguageServer.AssemblyInfoInputs.cache /home/nathan/Projects/Upsilon/UpsilonVsCodeLanguageServer/UpsilonLanguageServer/UpsilonLanguageServer/obj/Debug/netcoreapp2.1/UpsilonLanguageServer.AssemblyInfo.cs +/home/nathan/Projects/Upsilon/UpsilonVsCodeLanguageServer/UpsilonLanguageServer/UpsilonLanguageServer/obj/Debug/netcoreapp2.1/UpsilonLanguageServer.csproj.CopyComplete +/home/nathan/Projects/Upsilon/UpsilonVsCodeLanguageServer/UpsilonLanguageServer/UpsilonLanguageServer/obj/Debug/netcoreapp2.1/UpsilonLanguageServer.dll +/home/nathan/Projects/Upsilon/UpsilonVsCodeLanguageServer/UpsilonLanguageServer/UpsilonLanguageServer/obj/Debug/netcoreapp2.1/UpsilonLanguageServer.pdb diff --git a/UpsilonLanguageServer/UpsilonLanguageServer/obj/Debug/netcoreapp2.1/UpsilonLanguageServer.csprojAssemblyReference.cache b/UpsilonLanguageServer/UpsilonLanguageServer/obj/Debug/netcoreapp2.1/UpsilonLanguageServer.csprojAssemblyReference.cache index 96ed313..35b7c3f 100644 Binary files a/UpsilonLanguageServer/UpsilonLanguageServer/obj/Debug/netcoreapp2.1/UpsilonLanguageServer.csprojAssemblyReference.cache and b/UpsilonLanguageServer/UpsilonLanguageServer/obj/Debug/netcoreapp2.1/UpsilonLanguageServer.csprojAssemblyReference.cache differ diff --git a/UpsilonLanguageServer/UpsilonLanguageServer/obj/Debug/netcoreapp2.1/UpsilonLanguageServer.dll b/UpsilonLanguageServer/UpsilonLanguageServer/obj/Debug/netcoreapp2.1/UpsilonLanguageServer.dll new file mode 100644 index 0000000..38a631b Binary files /dev/null and b/UpsilonLanguageServer/UpsilonLanguageServer/obj/Debug/netcoreapp2.1/UpsilonLanguageServer.dll differ diff --git a/UpsilonLanguageServer/UpsilonLanguageServer/obj/Debug/netcoreapp2.1/UpsilonLanguageServer.pdb b/UpsilonLanguageServer/UpsilonLanguageServer/obj/Debug/netcoreapp2.1/UpsilonLanguageServer.pdb new file mode 100644 index 0000000..041c53e Binary files /dev/null and b/UpsilonLanguageServer/UpsilonLanguageServer/obj/Debug/netcoreapp2.1/UpsilonLanguageServer.pdb differ