Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: devlooped/nugetizer
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c1d3ab0
Choose a base ref
...
head repository: devlooped/nugetizer
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fefa14c
Choose a head ref
  • 2 commits
  • 11 files changed
  • 1 contributor

Commits on Oct 25, 2020

  1. Configuration menu
    Copy the full SHA
    d1ab5ca View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2020

  1. When referencing relative package content, ensure full path from refe…

    …rencing projects
    
    Given a packaging project, the PackageFile items determined (either explicitly or via inference) will almost always be relative paths. A packaging project will therefore fail to pack in those cases, unless we turn those files into full paths.
    
    For that purpose, we append a new metadata always to all _PackageContent determined in the GetPackageContents target: MSBuildSourceProjectFile (follows same name as when Rebase=true is used in an MSBuild task execution) and the additional MSBuildSourceProjectDirectory. The former provides consistency, the latter can be used to create the full original item path by combining it with OriginalItemSpec. The actual work to make the item full path is done in the AssignPackagePath task, which is invoked always before returning from GetPackageContents.
    
    An escape-hatch mechanism is added nevertheless, where you can annotate the content with `%(IsFile)=false` to avoid it being treated as one.
    kzu committed Oct 26, 2020
    Configuration menu
    Copy the full SHA
    fefa14c View commit details
    Browse the repository at this point in the history
Loading