From 21cb95f05a4cbd9d9f4e576e7660e47c5cae1eef Mon Sep 17 00:00:00 2001 From: mlorbetske Date: Wed, 31 May 2017 14:07:34 -0700 Subject: [PATCH] Shorten names a bit more, make project names match folder names --- ...nchSettings.csproj => AppWithCorruptedLaunchSettings.csproj} | 0 ...ppWithLaunchSettings.csproj => AppWithLaunchSettings.csproj} | 0 .../AppWithLaunchSettingsNoDefault.csproj} | 0 .../Program.cs | 0 .../Properties/launchSettings.json | 0 test/dotnet-run.Tests/GivenDotnetRunRunsCsProj.cs | 2 +- 6 files changed, 1 insertion(+), 1 deletion(-) rename TestAssets/TestProjects/AppWithCorruptedLaunchSettings/{MSBuildTestAppWithCorruptedLaunchSettings.csproj => AppWithCorruptedLaunchSettings.csproj} (100%) rename TestAssets/TestProjects/AppWithLaunchSettings/{MSBuildTestAppWithLaunchSettings.csproj => AppWithLaunchSettings.csproj} (100%) rename TestAssets/TestProjects/{AppWithLaunchSettingsWithoutDefault/MSBuildTestAppWithLaunchSettingsWithoutDefault.csproj => AppWithLaunchSettingsNoDefault/AppWithLaunchSettingsNoDefault.csproj} (100%) rename TestAssets/TestProjects/{AppWithLaunchSettingsWithoutDefault => AppWithLaunchSettingsNoDefault}/Program.cs (100%) rename TestAssets/TestProjects/{AppWithLaunchSettingsWithoutDefault => AppWithLaunchSettingsNoDefault}/Properties/launchSettings.json (100%) diff --git a/TestAssets/TestProjects/AppWithCorruptedLaunchSettings/MSBuildTestAppWithCorruptedLaunchSettings.csproj b/TestAssets/TestProjects/AppWithCorruptedLaunchSettings/AppWithCorruptedLaunchSettings.csproj similarity index 100% rename from TestAssets/TestProjects/AppWithCorruptedLaunchSettings/MSBuildTestAppWithCorruptedLaunchSettings.csproj rename to TestAssets/TestProjects/AppWithCorruptedLaunchSettings/AppWithCorruptedLaunchSettings.csproj diff --git a/TestAssets/TestProjects/AppWithLaunchSettings/MSBuildTestAppWithLaunchSettings.csproj b/TestAssets/TestProjects/AppWithLaunchSettings/AppWithLaunchSettings.csproj similarity index 100% rename from TestAssets/TestProjects/AppWithLaunchSettings/MSBuildTestAppWithLaunchSettings.csproj rename to TestAssets/TestProjects/AppWithLaunchSettings/AppWithLaunchSettings.csproj diff --git a/TestAssets/TestProjects/AppWithLaunchSettingsWithoutDefault/MSBuildTestAppWithLaunchSettingsWithoutDefault.csproj b/TestAssets/TestProjects/AppWithLaunchSettingsNoDefault/AppWithLaunchSettingsNoDefault.csproj similarity index 100% rename from TestAssets/TestProjects/AppWithLaunchSettingsWithoutDefault/MSBuildTestAppWithLaunchSettingsWithoutDefault.csproj rename to TestAssets/TestProjects/AppWithLaunchSettingsNoDefault/AppWithLaunchSettingsNoDefault.csproj diff --git a/TestAssets/TestProjects/AppWithLaunchSettingsWithoutDefault/Program.cs b/TestAssets/TestProjects/AppWithLaunchSettingsNoDefault/Program.cs similarity index 100% rename from TestAssets/TestProjects/AppWithLaunchSettingsWithoutDefault/Program.cs rename to TestAssets/TestProjects/AppWithLaunchSettingsNoDefault/Program.cs diff --git a/TestAssets/TestProjects/AppWithLaunchSettingsWithoutDefault/Properties/launchSettings.json b/TestAssets/TestProjects/AppWithLaunchSettingsNoDefault/Properties/launchSettings.json similarity index 100% rename from TestAssets/TestProjects/AppWithLaunchSettingsWithoutDefault/Properties/launchSettings.json rename to TestAssets/TestProjects/AppWithLaunchSettingsNoDefault/Properties/launchSettings.json diff --git a/test/dotnet-run.Tests/GivenDotnetRunRunsCsProj.cs b/test/dotnet-run.Tests/GivenDotnetRunRunsCsProj.cs index cc5195e48..234f890e9 100644 --- a/test/dotnet-run.Tests/GivenDotnetRunRunsCsProj.cs +++ b/test/dotnet-run.Tests/GivenDotnetRunRunsCsProj.cs @@ -409,7 +409,7 @@ namespace Microsoft.DotNet.Cli.Run.Tests [Fact] public void ItSkipsLaunchProfilesWhenThereIsNoUsableDefault() { - var testAppName = "AppWithLaunchSettingsWithoutDefault"; + var testAppName = "AppWithLaunchSettingsNoDefault"; var testInstance = TestAssets.Get(testAppName) .CreateInstance() .WithSourceFiles();