-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[package] Introduce nuget specification file pending nuget package #2293
Conversation
I've published an unlisted/unsearchable nuget package |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Work on a script to generate the .nuspec
file on prepublish
. This will lower maintenance costs and make this more palatable for the team.
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> | ||
<metadata> | ||
<id>rxjs</id> | ||
<version>5.0.3</version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to do something to keep this in sync... in fact all of this data... the author email, the version, etc... should be pulled from the package.json when we publish. I think I'd be more in favor of this if it included a script to do so, so I wouldn't have to keep it up to date on each publish.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
true, i'll see what I can do.
Closing as stale. |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Description:
Introduce nuspec (nuget equivalent of package.json). Something to get the ball rolling towards having a nuget package for rxjs 5.
TODO
Related issue (if exists):
Fixes issue #1361