Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions eng/Version.Details.props
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@ This file should be imported by eng/Versions.props
<!-- dotnet/core-setup dependencies -->
<NETStandardLibraryRefPackageVersion>2.1.0</NETStandardLibraryRefPackageVersion>
<!-- microsoft/testfx dependencies -->
<MicrosoftTestingPlatformPackageVersion>2.1.0-preview.25553.3</MicrosoftTestingPlatformPackageVersion>
<MSTestPackageVersion>4.1.0-preview.25553.3</MSTestPackageVersion>
<MicrosoftTestingPlatformPackageVersion>2.1.0-preview.25561.13</MicrosoftTestingPlatformPackageVersion>
<MSTestPackageVersion>4.1.0-preview.25561.13</MSTestPackageVersion>
</PropertyGroup>
<!--Property group for alternate package version names-->
<PropertyGroup>
Expand Down
8 changes: 4 additions & 4 deletions eng/Version.Details.xml
Original file line number Diff line number Diff line change
Expand Up @@ -557,13 +557,13 @@
<Uri>https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet</Uri>
<Sha>89c8f6a112d37d2ea8b77821e56d170a1bccdc5a</Sha>
</Dependency>
<Dependency Name="Microsoft.Testing.Platform" Version="2.1.0-preview.25553.3">
<Dependency Name="Microsoft.Testing.Platform" Version="2.1.0-preview.25561.13">
<Uri>https://github.com/microsoft/testfx</Uri>
<Sha>b2b75ecb52bcff592001df6d08f5fffccd945fdd</Sha>
<Sha>c60f4f766766774d2b45ff4f62abe3d9b269ebee</Sha>
</Dependency>
<Dependency Name="MSTest" Version="4.1.0-preview.25553.3">
<Dependency Name="MSTest" Version="4.1.0-preview.25561.13">
<Uri>https://github.com/microsoft/testfx</Uri>
<Sha>b2b75ecb52bcff592001df6d08f5fffccd945fdd</Sha>
<Sha>c60f4f766766774d2b45ff4f62abe3d9b269ebee</Sha>
</Dependency>
<Dependency Name="Microsoft.Extensions.Configuration.Ini" Version="10.0.0-rc.2.25502.107">
<Uri>https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet</Uri>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@ public async Task ExecuteRequestAsync(ExecuteRequestContext context)
{
Uid = "Test5",
DisplayName = "Test5",
#pragma warning disable CS0618 // Type or member is obsolete
Properties = new PropertyBag(new CancelledTestNodeStateProperty(new Exception("this is a cancelled exception"), "not OK")),
#pragma warning restore CS0618 // Type or member is obsolete
}));

await context.MessageBus.PublishAsync(this, new FileArtifact(new FileInfo("file.txt"), "file", "file description"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@ public async Task ExecuteRequestAsync(ExecuteRequestContext context)
{
Uid = "Test5",
DisplayName = "Test5",
#pragma warning disable CS0618 // Type or member is obsolete
Properties = new PropertyBag(new CancelledTestNodeStateProperty(new Exception("this is a cancelled exception"), "not OK")),
#pragma warning restore CS0618 // Type or member is obsolete
}));

await context.MessageBus.PublishAsync(this, new FileArtifact(new FileInfo("file.txt"), "file", "file description"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@ public async Task ExecuteRequestAsync(ExecuteRequestContext context)
{
Uid = "Test5",
DisplayName = "Test5",
#pragma warning disable CS0618 // Type or member is obsolete
Properties = new PropertyBag(new CancelledTestNodeStateProperty(new Exception("this is a cancelled exception"), "not OK")),
#pragma warning restore CS0618 // Type or member is obsolete
}));

await context.MessageBus.PublishAsync(this, new FileArtifact(new FileInfo("file.txt"), "file", "file description"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@ public async Task ExecuteRequestAsync(ExecuteRequestContext context)
{
Uid = "Test5",
DisplayName = "Test5",
#pragma warning disable CS0618 // Type or member is obsolete
Properties = new PropertyBag(new CancelledTestNodeStateProperty(new Exception("this is a cancelled exception"), "")),
#pragma warning restore CS0618 // Type or member is obsolete
}));

context.Complete();
Expand Down
Loading