File tree Expand file tree Collapse file tree
src/Tests/MeasureMap.UnitTest Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5151 - nuke Release --isrc false --buildno "%APPVEYOR_BUILD_NUMBER%" --version "%base_version%"
5252
5353 test : off
54+ -
55+ # branches to build
56+ branches :
57+ # whitelist
58+ except :
59+ - master
60+ - dev
61+
62+ # Do not build on tags (GitHub only)
63+ skip_tags : true
64+
65+ install :
66+ - dotnet tool install Nuke.GlobalTool --global --version 9.0.3 --no-cache
67+
68+ before_build :
69+ - dotnet restore ./build/_build.csproj
70+
71+ build_script :
72+ - nuke Test --isrc false --buildno "%APPVEYOR_BUILD_NUMBER%" --version "%base_version%"
73+
74+ test : off
5475
5576artifacts :
5677 - path : src\MeasureMap\bin\Release\netstandard2.0\MeasureMap.dll
Original file line number Diff line number Diff line change @@ -698,6 +698,7 @@ public void ProfileSession_OnExecuted_MultipleRegistrations()
698698 var second = 0 ;
699699
700700 ProfilerSession . StartSession ( )
701+ . SetThreadBehaviour ( ThreadBehaviour . RunOnMainThread )
701702 . OnExecuted ( r => first ++ )
702703 . OnExecuted ( r => second ++ )
703704 . Task ( ( ) => { } )
You can’t perform that action at this time.
0 commit comments