Bump Nuke.Common from 6.2.1 to 6.3.0 in /build (#1837)
* Bump Nuke.Common from 6.2.1 to 6.3.0 in /build Bumps [Nuke.Common](https://github.com/nuke-build/nuke) from 6.2.1 to 6.3.0. - [Release notes](https://github.com/nuke-build/nuke/releases) - [Changelog](https://github.com/nuke-build/nuke/blob/develop/CHANGELOG.md) - [Commits](https://github.com/nuke-build/nuke/compare/6.2.1...6.3.0) --- updated-dependencies: - dependency-name: Nuke.Common dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Bump nuke.globaltool to 6.3.0 * Nuke breaking change - now we can have only one OnlyWhen condition Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Piotr Kiełkowicz <pkiekowicz@splunk.com> Co-authored-by: Paulo Janotti <pjanotti@splunk.com>
This commit is contained in:
parent
eab97a0343
commit
47a786d2a0
|
@ -3,7 +3,7 @@
|
|||
"isRoot": true,
|
||||
"tools": {
|
||||
"nuke.globaltool": {
|
||||
"version": "6.2.1",
|
||||
"version": "6.3.0",
|
||||
"commands": [
|
||||
"nuke"
|
||||
]
|
||||
|
|
|
@ -97,8 +97,7 @@ partial class Build
|
|||
Target PublishIisTestApplications => _ => _
|
||||
.Unlisted()
|
||||
.After(CompileManagedTests)
|
||||
.OnlyWhenStatic(() => IsWin)
|
||||
.OnlyWhenStatic(() => Containers == ContainersWindows)
|
||||
.OnlyWhenStatic(() => IsWin && Containers == ContainersWindows)
|
||||
.Executes(() =>
|
||||
{
|
||||
var aspNetProject = TestsDirectory / "test-applications" / "integrations" / "TestApplication.AspNet" / "TestApplication.AspNet.csproj";
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Nuke.Common" Version="6.2.1" />
|
||||
<PackageReference Include="Nuke.Common" Version="6.3.0" />
|
||||
<PackageReference Include="Nuget.CommandLine" Version="6.3.1" ExcludeAssets="all" />
|
||||
</ItemGroup>
|
||||
|
||||
|
|
Loading…
Reference in New Issue