forked from microsoft/coyote
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
streamline logging API (microsoft#377)
- Loading branch information
Showing
188 changed files
with
6,495 additions
and
4,371 deletions.
There are no files selected for viewing
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
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
25 changes: 0 additions & 25 deletions
25
Samples/DrinksServingRobotActors/DrinksServingRobotActors.sln
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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,20 @@ | ||
param( | ||
[string]$dotnet="dotnet" | ||
) | ||
|
||
Import-Module $PSScriptRoot/../../Scripts/common.psm1 -Force | ||
CheckPSVersion | ||
|
||
Write-Comment -prefix "." -text "Testing the Coyote samples" -color "yellow" | ||
|
||
$framework = "net6.0" | ||
$tests = "$PSScriptRoot/../Common/bin/$framework/TestDriver.dll" | ||
if (-not (Test-Path $tests)) { | ||
Write-Error "tests for the Coyote samples not found." | ||
exit | ||
} | ||
|
||
$error_msg = "Failed to test the Coyote samples" | ||
Invoke-ToolCommand -tool $dotnet -cmd $tests -error_msg $error_msg | ||
|
||
Write-Comment -prefix "." -text "Successfully tested the Coyote samples" -color "green" |
This file was deleted.
Oops, something went wrong.
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
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.