Don't exclude files starting with . from nupkgs (#994)

This was preventing `dotnet --info` and `dotnet --version` from working
in internal build scenario.
This commit is contained in:
Nick Guerrera 2019-03-12 18:39:16 -07:00 committed by GitHub
parent 2a3f95851a
commit ddc9c162ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -28,5 +28,5 @@ if (Test-Path $NupkgFile) {
Remove-Item -Force $NupkgFile
}
& $NuGetExe pack $NuspecFile -Version $NugetVersion -OutputDirectory $OutputDirectory -NoPackageAnalysis -Properties DOTNET_BUNDLE=$SdkBundlePath
& $NuGetExe pack $NuspecFile -Version $NugetVersion -OutputDirectory $OutputDirectory -NoDefaultExcludes -NoPackageAnalysis -Properties DOTNET_BUNDLE=$SdkBundlePath
Exit $LastExitCode