Skip to content

Commit 4308002

Browse files
committed
Add .nuspec files for all shippable projects
This change introduces .nuspec files so that NuGet packages can be built for all of the shippable projects in the solution. Initial package build will be performed by AppVeyor and final package build for release will be done through some other means after the binaries have been signed and strong-named.
1 parent 4b9d4a4 commit 4308002

File tree

6 files changed

+72
-21
lines changed

6 files changed

+72
-21
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0"?>
2+
<package>
3+
<metadata>
4+
<id>$id$</id>
5+
<version>$version$</version>
6+
<title>Windows PowerShell Editor Services - Host Process</title>
7+
<authors>$author$</authors>
8+
<owners>$author$</owners>
9+
<licenseUrl>https://raw.githubusercontent.com/PowerShell/PowerShellEditorServices/master/LICENSE</licenseUrl>
10+
<projectUrl>http://github.com/PowerShell/PowerShellEditorServices</projectUrl>
11+
<requireLicenseAcceptance>true</requireLicenseAcceptance>
12+
<description>$description$</description>
13+
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
14+
<tags>Microsoft Windows PowerShell editor</tags>
15+
</metadata>
16+
</package>

src/PowerShellEditorServices.Host/Properties/AssemblyInfo.cs

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
// General Information about an assembly is controlled through the following
66
// set of attributes. Change these attribute values to modify the information
77
// associated with an assembly.
8-
[assembly: AssemblyTitle("PowerShellEditorServices.Host")]
9-
[assembly: AssemblyDescription("")]
8+
[assembly: AssemblyTitle("Windows PowerShell Editor Services - Host Process")]
9+
[assembly: AssemblyDescription("Provides a process for hosting the Windows PowerShell Editor Services library exposed by a corresponding transport library.")]
1010
[assembly: AssemblyConfiguration("")]
11-
[assembly: AssemblyCompany("")]
12-
[assembly: AssemblyProduct("PowerShellEditorServices.Host")]
13-
[assembly: AssemblyCopyright("Copyright © 2015")]
11+
[assembly: AssemblyCompany("Microsoft")]
12+
[assembly: AssemblyProduct("Windows PowerShell Editor Services")]
13+
[assembly: AssemblyCopyright("© Microsoft Corporation. All rights reserved.")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
1616

@@ -32,5 +32,6 @@
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")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
35+
[assembly: AssemblyVersion("0.0.0.0")]
36+
[assembly: AssemblyFileVersion("0.0.0.0")]
37+
[assembly: AssemblyInformationalVersion("0.0.0.0")]
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0"?>
2+
<package>
3+
<metadata>
4+
<id>$id$</id>
5+
<version>$version$</version>
6+
<title>Windows PowerShell Editor Services - Standard I/O Transport</title>
7+
<authors>$author$</authors>
8+
<owners>$author$</owners>
9+
<licenseUrl>https://raw.githubusercontent.com/PowerShell/PowerShellEditorServices/master/LICENSE</licenseUrl>
10+
<projectUrl>http://github.com/PowerShell/PowerShellEditorServices</projectUrl>
11+
<requireLicenseAcceptance>true</requireLicenseAcceptance>
12+
<description>$description$</description>
13+
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
14+
<tags>Microsoft Windows PowerShell editor</tags>
15+
</metadata>
16+
</package>

src/PowerShellEditorServices.Transport.Stdio/Properties/AssemblyInfo.cs

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
// General Information about an assembly is controlled through the following
66
// set of attributes. Change these attribute values to modify the information
77
// associated with an assembly.
8-
[assembly: AssemblyTitle("PowerShellEditorServices.Transport.Stdio")]
9-
[assembly: AssemblyDescription("")]
8+
[assembly: AssemblyTitle("Windows PowerShell Editor Services - Standard I/O Transport")]
9+
[assembly: AssemblyDescription("Provides standard I/O transport for the Windows PowerShell Editor Services host process.")]
1010
[assembly: AssemblyConfiguration("")]
11-
[assembly: AssemblyCompany("")]
12-
[assembly: AssemblyProduct("PowerShellEditorServices.Transport.Stdio")]
13-
[assembly: AssemblyCopyright("Copyright © 2015")]
11+
[assembly: AssemblyCompany("Microsoft")]
12+
[assembly: AssemblyProduct("Windows PowerShell Editor Services")]
13+
[assembly: AssemblyCopyright("© Microsoft Corporation. All rights reserved.")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
1616

@@ -32,5 +32,6 @@
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")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
35+
[assembly: AssemblyVersion("0.0.0.0")]
36+
[assembly: AssemblyFileVersion("0.0.0.0")]
37+
[assembly: AssemblyInformationalVersion("0.0.0.0")]
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0"?>
2+
<package>
3+
<metadata>
4+
<id>$id$</id>
5+
<version>$version$</version>
6+
<title>Windows PowerShell Editor Services Library</title>
7+
<authors>$author$</authors>
8+
<owners>$author$</owners>
9+
<licenseUrl>https://raw.githubusercontent.com/PowerShell/PowerShellEditorServices/master/LICENSE</licenseUrl>
10+
<projectUrl>http://github.com/PowerShell/PowerShellEditorServices</projectUrl>
11+
<requireLicenseAcceptance>true</requireLicenseAcceptance>
12+
<description>$description$</description>
13+
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
14+
<tags>Microsoft Windows PowerShell editor</tags>
15+
</metadata>
16+
</package>

src/PowerShellEditorServices/Properties/AssemblyInfo.cs

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
// General Information about an assembly is controlled through the following
66
// set of attributes. Change these attribute values to modify the information
77
// associated with an assembly.
8-
[assembly: AssemblyTitle("Core")]
9-
[assembly: AssemblyDescription("")]
8+
[assembly: AssemblyTitle("Windows PowerShell Editor Services Library")]
9+
[assembly: AssemblyDescription("Provides common PowerShell editor capabilities as a .NET library.")]
1010
[assembly: AssemblyConfiguration("")]
11-
[assembly: AssemblyCompany("")]
12-
[assembly: AssemblyProduct("Core")]
13-
[assembly: AssemblyCopyright("Copyright © 2015")]
11+
[assembly: AssemblyCompany("Microsoft")]
12+
[assembly: AssemblyProduct("Windows PowerShell Editor Services")]
13+
[assembly: AssemblyCopyright("© Microsoft Corporation. All rights reserved.")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
1616

@@ -32,7 +32,8 @@
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")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
35+
[assembly: AssemblyVersion("0.0.0.0")]
36+
[assembly: AssemblyFileVersion("0.0.0.0")]
37+
[assembly: AssemblyInformationalVersion("0.0.0.0")]
3738

3839
[assembly: InternalsVisibleTo("Microsoft.PowerShell.EditorServices.Test.Shared")]

0 commit comments

Comments
 (0)