-
Notifications
You must be signed in to change notification settings - Fork 7.7k
add ability to package all of powershell core as a NuGet Package #4363
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
34aa196
ignore staging folders
TravisEz13 6d249a6
Add csproj for package of entire CLI
TravisEz13 f8bedca
add nuspec for package of entire CLI
TravisEz13 3bfe9e6
ignore nupkg packages
TravisEz13 8d5b5ee
Move Get-PackageSemanticVersion to packaging.psm1
TravisEz13 d2b561b
Add ability to package full PowerShell core using nuget
TravisEz13 7976494
change folder in nupkg with PowerShell from tools to content
TravisEz13 6ca45e6
Add publishing to daily NuGet feed
TravisEz13 b47a933
Give the packages a meaningful version that can be tied back to the C…
TravisEz13 8b9a81f
make sure the CI systems always have the latest tags
TravisEz13 1122f6b
Add code to get the various forms of commitId and tag from the proper…
TravisEz13 8b620e6
update travis to use the build.psm1 code to get the lastest
TravisEz13 de8218b
add newline to end of file
TravisEz13 4ce585b
address PR feedback
TravisEz13 b7902a7
make get-psLatestTag Get latest tag for the current branch
TravisEz13 ac6c62a
make appveyor version consistent with travis-ci
TravisEz13 f65f48d
Address PR Feedback
TravisEz13 bfdece5
make sure errors are handled correctly for git commands
TravisEz13 eeaad46
fix typo in package
TravisEz13 a9a29db
add comments for new functions
TravisEz13 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add csproj for package of entire CLI
- Loading branch information
commit 6d249a66ee3551254e2985ce1d6f9a5a80e1730b
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<!-- | ||
Due to https://github.com/dotnet/sdk/issues/1021 | ||
When packaging we must build something. | ||
So, we are building an empty assembly called NotUsed, and discarding it. | ||
--> | ||
<PropertyGroup> | ||
<AssemblyName>NotUsed</AssemblyName> | ||
<Description>PowerShell top-level project with .NET CLI host</Description> | ||
<NuspecFile>powershell.nuspec</NuspecFile> | ||
<NuspecProperties>runtime=$(RID);version=$(SemVer)</NuspecProperties> | ||
<NuspecBasePath>$(StagingPath)</NuspecBasePath> | ||
<IsTool>True</IsTool> | ||
<TargetFramework>netcoreapp2.0</TargetFramework> | ||
</PropertyGroup> | ||
</Project> |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
This description needs to be updated
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.
#resloved