Created
February 15, 2016 09:56
-
-
Save flowsprenger/8280a7f0f2cf5f64b8b1 to your computer and use it in GitHub Desktop.
Paket 2.50.7 breaks globbing in pack
This file contains 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
mkdir -p src/A/Folder | |
mkdir -p src/A.Source | |
mv src-A.Source-paket.template src/A.Source/paket.template | |
mv src-A-Folder-source.cs src/A/Folder/source.cs | |
mono .paket/.paket.exe init | |
mono .paket/paket.exe pack --version 1 | |
expected | |
unzip A.Source.1.nupkg | |
Archive: A.Source.1.nupkg | |
inflating: content/A/Folder/source.cs | |
inflating: A.Source.nuspec | |
inflating: package/services/metadata/core-properties/coreProp.psmdcp | |
inflating: _rels/.rels | |
inflating: [Content_Types].xml | |
with >= 2.50.7 | |
unzip A.Source.1.nupkg | |
Archive: A.Source.1.nupkg | |
inflating: A.Source.nuspec | |
inflating: package/services/metadata/core-properties/coreProp.psmdcp | |
inflating: _rels/.rels | |
inflating: [Content_Types].xml |
This file contains 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
// just an empty file i expect to be packaged |
This file contains 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
type file | |
id A.Source | |
owners Team | |
authors Team | |
projectUrl | |
https://github.com/ | |
iconUrl | |
http://github.io/ | |
licenseUrl | |
https://github.com/ | |
requireLicenseAcceptance | |
false | |
copyright | |
Copyright 2015 | |
tags | |
tag | |
summary | |
summary | |
description | |
Project has no description | |
files | |
../A/**/*.cs ==> content/A |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment