shorten random package name, address pr feedback
This commit is contained in:
parent
59ae0e2d3d
commit
444dd6a031
3 changed files with 11 additions and 12 deletions
|
@ -1 +1 @@
|
|||
https://github.com/Microsoft/msbuild/issues/927
|
||||
https://github.com/Microsoft/msbuild/issues/927
|
||||
|
|
|
@ -1 +1 @@
|
|||
https://github.com/Microsoft/msbuild/issues/927
|
||||
https://github.com/Microsoft/msbuild/issues/927
|
||||
|
|
|
@ -152,7 +152,9 @@ namespace Microsoft.DotNet.Tests
|
|||
var toolWithRandPkgNameDir = testInstance.Root.Sub("ToolWithRandomPackageName");
|
||||
var pkgsDir = testInstance.Root.CreateSubdirectory("pkgs");
|
||||
|
||||
string randomPackageName = Guid.NewGuid().ToString();
|
||||
// 3ebdd4f1-a194-470a-b01a-4515672791d1
|
||||
// ^-- index = 24
|
||||
string randomPackageName = Guid.NewGuid().ToString().Substring(24);
|
||||
|
||||
// TODO: This is a workround for https://github.com/dotnet/cli/issues/5020
|
||||
SetGeneratedPackageName(appWithDepOnToolDir.GetFile("AppWithDepOnTool.csproj"),
|
||||
|
@ -163,21 +165,18 @@ namespace Microsoft.DotNet.Tests
|
|||
|
||||
new RestoreCommand()
|
||||
.WithWorkingDirectory(toolWithRandPkgNameDir)
|
||||
.ExecuteWithCapturedOutput()
|
||||
.Should().Pass()
|
||||
.And.NotHaveStdErr();
|
||||
.Execute()
|
||||
.Should().Pass();
|
||||
|
||||
new PackCommand()
|
||||
.WithWorkingDirectory(toolWithRandPkgNameDir)
|
||||
.ExecuteWithCapturedOutput($"-o \"{pkgsDir.FullName}\"")
|
||||
.Should().Pass()
|
||||
.And.NotHaveStdErr();
|
||||
.Execute($"-o \"{pkgsDir.FullName}\"")
|
||||
.Should().Pass();
|
||||
|
||||
new RestoreCommand()
|
||||
.WithWorkingDirectory(appWithDepOnToolDir)
|
||||
.ExecuteWithCapturedOutput($"--packages \"{pkgsDir.FullName}\"")
|
||||
.Should().Pass()
|
||||
.And.NotHaveStdErr();
|
||||
.Execute($"--packages \"{pkgsDir.FullName}\"")
|
||||
.Should().Pass();
|
||||
|
||||
new TestCommand("dotnet")
|
||||
.WithWorkingDirectory(appWithDepOnToolDir)
|
||||
|
|
Loading…
Add table
Reference in a new issue