Skip to content

Commit 4aaf2ff

Browse files
Merge pull request #4 from markcowl/storage-sync3
Fixing issue with wildcard expansion with long paths
2 parents 4c70412 + 6b1b894 commit 4aaf2ff

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

build.proj

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -401,12 +401,7 @@
401401
<Exec Command="dotnet sln Azure.PowerShell.sln add $(LibraryRoot)tools/ScenarioTest.ResourceManager/ScenarioTest.ResourceManager.csproj $(LibraryRoot)tools/TestFx/TestFx.csproj" />
402402
<!-- https://github.com/Microsoft/msbuild/issues/3157#issuecomment-378002971 -->
403403
<!-- https://github.com/xunit/xunit/issues/1154#issuecomment-405366373 -->
404-
<Exec Command="dotnet test Azure.PowerShell.sln --filter &quot;AcceptanceType=CheckIn%26RunType!=DesktopOnly&quot; --configuration $(Configuration) --framework $(Framework) --logger trx" />
405-
406-
<ItemGroup>
407-
<TestResults Include="$(LibraryRoot)src/**/TestResults/*.trx" />
408-
</ItemGroup>
409-
<Copy SourceFiles="@(TestResults)" DestinationFolder="$(TestOutputDirectory)" />
404+
<Exec Command="dotnet test Azure.PowerShell.sln --filter &quot;AcceptanceType=CheckIn%26RunType!=DesktopOnly&quot; --configuration $(Configuration) --framework netcoreapp2.0 --logger trx --results-directory &quot;$(TestOutputDirectory)&quot;" />
410405

411406
<OnError ExecuteTargets="TestFailureErrorMessage" />
412407
</Target>

0 commit comments

Comments
 (0)