Skip to content

Commit

Permalink
Merge branch 'hotfix/0.22.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
matkoch committed Sep 29, 2019
2 parents 5e6919f + 05de0e0 commit 64e1eff
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
2 changes: 0 additions & 2 deletions build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)));
Expand Down
12 changes: 11 additions & 1 deletion source/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand All @@ -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>
Expand Down

0 comments on commit 64e1eff

Please sign in to comment.