-
-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix merge so that tests don't regress
- Loading branch information
Showing
4 changed files
with
376 additions
and
330 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
test/Nerdbank.GitVersioning.Tests/BuildIntegrationInProjectManagedTests.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// Copyright (c) .NET Foundation and Contributors. All rights reserved. | ||
// Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
|
||
using Xunit; | ||
using Xunit.Abstractions; | ||
|
||
[Trait("Engine", EngineString)] | ||
[Collection("Build")] // msbuild sets current directory in the process, so we can't have it be concurrent with other build tests. | ||
public class BuildIntegrationInProjectManagedTests : BuildIntegrationManagedTests | ||
{ | ||
public BuildIntegrationInProjectManagedTests(ITestOutputHelper logger) | ||
: base(logger) | ||
{ | ||
} | ||
|
||
/// <inheritdoc/> | ||
protected override void ApplyGlobalProperties(IDictionary<string, string> globalProperties) | ||
{ | ||
base.ApplyGlobalProperties(globalProperties); | ||
globalProperties["NBGV_CacheMode"] = "None"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.