Skip to content

Commit a8a85d0

Browse files
committed
Update to server version 0.1.1 and prepare nuspec
1 parent 5390fa3 commit a8a85d0

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

NuGet/ExcelDna.IntelliSense/ExcelDna.IntelliSense.nuspec

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata>
44
<id>ExcelDna.IntelliSense</id>
5-
<version>0.33.0-alpha1</version>
6-
<title>Excel-DNA IntelliSense Server</title>
5+
<version>0.1.1-b1</version>
6+
<title>Excel-DNA IntelliSense Extension</title>
77
<authors>Excel-DNA Contributors</authors>
88
<owners>Excel-DNA Contributors</owners>
99
<projectUrl>http://excel-dna.net</projectUrl>
1010
<iconUrl>http://docs.excel-dna.net/NuGetIcon.png</iconUrl>
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
12-
<description>Excel-DNA IntelliSense is an extension library for Excel-DNA that provides on-sheet IntelliSense in Excel.</description>
13-
<summary>Excel-DNA IntelliSense is an extension library for Excel-DNA that provides on-sheet IntelliSense in Excel.</summary>
14-
<tags>excel exceldna udf excel-dna</tags>
15-
<dependencies>
16-
<dependency id="Excel-DNA.Lib" version="[0.32.0,0.33)" />
17-
</dependencies>
12+
<description>Excel-DNA IntelliSense is an extension library that provides on-sheet IntelliSense for Excel UDFs.</description>
13+
<summary>Excel-DNA IntelliSense is an extension library that can be added to an Excel-DNA add-in to provide an integrated IntelliSense server, providing IntelliSense services for all loaded Excel-DNA add-ins and appropriately configured VBA functions.</summary>
14+
<tags>excel exceldna udf excel-dna intellisense</tags>
15+
<dependencies>
16+
<dependency id="ExcelDna.Integration" version="[0.33.9,0.34)" />
17+
</dependencies>
1818
</metadata>
1919
<files>
2020
<file src="..\....\Source\ExcelDna.IntelliSense\bin\Release\ExcelDna.IntelliSense.dll" target="lib\net40\ExcelDna.IntelliSense.dll" />

Source/ExcelDna.IntelliSense/IntelliSenseServer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ namespace ExcelDna.IntelliSense
2828
// REMEMBER: COM events are not necessarily safe macro contexts.
2929
public static class IntelliSenseServer
3030
{
31-
const string ServerVersion = "0.0.11"; // TODO: Define and manage this somewhere else
31+
const string ServerVersion = "0.1.1"; // TODO: Define and manage this somewhere else
3232

3333
// NOTE: Do not change these constants in custom versions.
3434
// They are part of the co-operative safety mechanism allowing different add-ins providing IntelliSense to work together safely.

0 commit comments

Comments
 (0)