This repository was archived by the owner on Dec 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathLanguageServerProtocol.nuspec
30 lines (30 loc) · 2.2 KB
/
LanguageServerProtocol.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>LanguageServerProtocol</id>
<version>4.0.0</version>
<title>LanguageServerProtocol</title>
<authors>Kentaro Inomata</authors>
<owners>Kentaro Inomata</owners>
<licenseUrl>https://opensource.org/licenses/MIT</licenseUrl>
<projectUrl>https://github.com/matarillo/LanguageServerProtocol</projectUrl>
<repository type="git" url="https://github.com/matarillo/LanguageServerProtocol.git"/>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A library to handle Language Server Protocol (https://github.com/Microsoft/language-server-protocol).</description>
<releaseNotes>v4.0.0: Support the protocol version 3.3.0.
v3.0.0: Make breaking changes to some types, such as removing, moving to another namespace, etc.
v2.1.0: Support the protocol version 3.2.0. Add Connection.ReuestHandlers and Connection.NotificationHandlers public properties.
v2.0.0: Support the protocol version 3.0.0. Add ServiceConnection.
v1.0.0: initial release.</releaseNotes>
<copyright>Copyright © 2017 Kentaro Inomata</copyright>
<tags>LanguageServerProtocol language-server-protocol IDE compiler-service vscode omnisharp</tags>
<dependencies>
<group targetFramework="netstandard1.3">
<dependency id="Matarillo.IO" version="1.0.0" />
<dependency id="Newtonsoft.Json" version="10.0.2" />
</group>
</dependencies>
</metadata>
<files>
<file src="..\LanguageServer\bin\Release\netstandard1.3\LanguageServer.deps.json" target="lib\netstandard1.3\LanguageServer.deps.json" />
<file src="..\LanguageServer\bin\Release\netstandard1.3\LanguageServer.dll" target="lib\netstandard1.3\LanguageServer.dll" />
<file src="..\LanguageServer\bin\Release\netstandard1.3\LanguageServer.xml" target="lib\netstandard1.3\LanguageServer.xml" />
<file src="..\LanguageServer\bin\Release\netstandard1.3\LanguageServer.pdb" target="lib\netstandard1.3\LanguageServer.pdb" />
</files>
</package>