Skip to content

Commit 8a5507a

Browse files
committed
Update IntelliSenseServer and package version to 1.0.0
1 parent bae56c1 commit 8a5507a

File tree

8 files changed

+11
-28
lines changed

8 files changed

+11
-28
lines changed

NuGet/ExcelDna.IntelliSense/ExcelDna.IntelliSense.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata>
44
<id>ExcelDna.IntelliSense</id>
5-
<version>0.1.11-beta11</version>
5+
<version>1.0.0</version>
66
<title>Excel-DNA IntelliSense Extension</title>
77
<authors>Excel-DNA Contributors</authors>
88
<owners>Excel-DNA Contributors</owners>
@@ -13,7 +13,7 @@
1313
<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>
1414
<tags>excel exceldna udf excel-dna intellisense</tags>
1515
<dependencies>
16-
<dependency id="ExcelDna.Integration" version="[0.33.9,0.34)" />
16+
<dependency id="ExcelDna.Integration" version="0.33.9" />
1717
<dependency id="UIAComWrapper" version="1.1.0.14" />
1818
</dependencies>
1919
</metadata>

Source/ExcelDna.IntelliSense.Host/ExcelDna.IntelliSense.Host-AddIn.IntelliSense.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Function Name="AdxThem" Description="A function described in XML with a very long description that goes on and on for a very long time, until it scrolls off the screen no matter which side we pick to display it on."
44
HelpTopic="MyFile.chm!100" >
55
<Argument Name="tag" Description="Whatever you want to put in here" />
6-
<Argument Name="Addend" Description="Actually the second arg" />
6+
<Argument Name="[Addend]" Description="Actually the second arg" />
77
</Function>
88
</FunctionInfo>
99
</IntelliSense>

Source/ExcelDna.IntelliSense.Host/MyFunctions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ public static double AddThem(
2121
[ExcelFunction(Description = "--------------------",
2222
HelpTopic = "MyFile.chm!100")]
2323
public static double AdxThem(
24-
[ExcelArgument(Name = "tag", Description = "is the first number, to which will be added")] double v1,
25-
[ExcelArgument(Name = "Addend", Description = "is the second number that will be added")] double v2)
24+
[ExcelArgument(Name = "[tag]", Description = "is the first number, to which will be added")] double v1,
25+
[ExcelArgument(Name = "[Addend]", Description = "is the second number that will be added")] double v2)
2626
{
2727
return v1 + v2;
2828
}

Source/ExcelDna.IntelliSense.Host/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("0.1.10")]
36-
[assembly: AssemblyFileVersion("0.1.10.0")]
35+
[assembly: AssemblyVersion("1.0.0.*")]
36+
[assembly: AssemblyFileVersion("1.0.0.0")]
Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,3 @@
11
<DnaLibrary Name="ExcelDna.IntelliSense.Tools Add-In" RuntimeVersion="v4.0">
22
<ExternalLibrary Path="ExcelDna.IntelliSense.Tools.dll" LoadFromBytes="true" Pack="true" />
3-
4-
<!--
5-
The RuntimeVersion attribute above allows two settings:
6-
* RuntimeVersion="v2.0" - for .NET 2.0, 3.0 and 3.5
7-
* RuntimeVersion="v4.0" - for .NET 4 and 4.5
8-
9-
Additional referenced assemblies can be specified by adding 'Reference' tags.
10-
These libraries will not be examined and registered with Excel as add-in libraries,
11-
but will be packed into the -packed.xll file and loaded at runtime as needed.
12-
For example:
13-
14-
<Reference Path="Another.Library.dll" Pack="true" />
15-
16-
Excel-DNA also allows the xml for ribbon UI extensions to be specified in the .dna file.
17-
See the main Excel-DNA site at http://excel-dna.net for downloads of the full distribution.
18-
-->
19-
203
</DnaLibrary>

Source/ExcelDna.IntelliSense.Tools/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
35+
[assembly: AssemblyVersion("1.0.0.*")]
3636
[assembly: AssemblyFileVersion("1.0.0.0")]

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.1.11"; // TODO: Define and manage this somewhere else
31+
const string ServerVersion = "1.0.0"; // 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.

Source/ExcelDna.IntelliSense/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("0.1.11")]
36-
[assembly: AssemblyFileVersion("0.1.11.0")]
35+
[assembly: AssemblyVersion("1.0.0.*")]
36+
[assembly: AssemblyFileVersion("1.0.0.0")]

0 commit comments

Comments
 (0)