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: nuke-build/nuke
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.22.1
Choose a base ref
...
head repository: nuke-build/nuke
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.22.2
Choose a head ref
  • 3 commits
  • 3 files changed
  • 1 contributor

Commits on Sep 29, 2019

  1. Fix SourceLink integration

    matkoch committed Sep 29, 2019
    Copy the full SHA
    b6b5672 View commit details
  2. Copy the full SHA
    05de0e0 View commit details
  3. Merge branch 'hotfix/0.22.2'

    matkoch committed Sep 29, 2019
    Copy the full SHA
    64e1eff View commit details
Showing with 16 additions and 4 deletions.
  1. +5 −1 CHANGELOG.md
  2. +0 −2 build/Build.cs
  3. +11 −1 source/Directory.Build.props
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [vNext]

## [0.22.2] / 2019-09-29
- Fixed SourceLink integration

## [0.22.1] / 2019-09-21
- Fixed assertion message for missing packages

@@ -413,7 +416,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Added CLT tasks for Git
- Fixed background color in console output

[vNext]: https://github.com/nuke-build/common/compare/0.22.1...HEAD
[vNext]: https://github.com/nuke-build/common/compare/0.22.2...HEAD
[0.22.2]: https://github.com/nuke-build/common/compare/0.22.1...0.22.2
[0.22.1]: https://github.com/nuke-build/common/compare/0.22.0...0.22.1
[0.22.0]: https://github.com/nuke-build/common/compare/0.21.2...0.22.0
[0.21.2]: https://github.com/nuke-build/common/compare/0.21.1...0.21.2
2 changes: 0 additions & 2 deletions build/Build.cs
Original file line number Diff line number Diff line change
@@ -131,8 +131,6 @@ from framework in project.GetTargetFrameworks()
.SetProject(Solution)
.SetNoBuild(IsLocalBuild)
.SetConfiguration(Configuration)
.EnableIncludeSymbols()
.SetSymbolPackageFormat(DotNetSymbolPackageFormat.snupkg)
.SetOutputDirectory(OutputDirectory)
.SetVersion(GitVersion.NuGetVersionV2)
.SetPackageReleaseNotes(GetNuGetReleaseNotes(ChangelogFile, GitRepository)));
12 changes: 11 additions & 1 deletion source/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@
<PackageTags>build automation continuous-integration tools orchestration</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://nuke.build</PackageProjectUrl>
<RepositoryUrl>https://github.com/nuke-build/nuke</RepositoryUrl>
<RepositoryUrl>https://github.com/nuke-build/common</RepositoryUrl>
<PackageIconUrl>https://raw.githubusercontent.com/nuke-build/nuke/master/icon.png</PackageIconUrl>
</PropertyGroup>

@@ -42,6 +42,16 @@
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
</PropertyGroup>

<PropertyGroup>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19367-01" PrivateAssets="All"/>
</ItemGroup>

<ItemGroup Condition="$(TargetFramework.StartsWith('net4'))">
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0-preview.2" PrivateAssets="All" />
</ItemGroup>