Commit 6905cf2
1 parent 6e1cadb commit 6905cf2
File tree
11 files changed
+14
-14
lines changed- repos
- src
11 files changed
+14
-14
lines changedLines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 |
| - | |
| 1 | + |
Lines changed: 4 additions & 4 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
5 | 5 |
| |
6 | 6 |
| |
7 | 7 |
| |
8 |
| - | |
| 8 | + | |
9 | 9 |
| |
10 | 10 |
| |
11 | 11 |
| |
| |||
28 | 28 |
| |
29 | 29 |
| |
30 | 30 |
| |
31 |
| - | |
32 |
| - | |
33 |
| - | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
34 | 34 |
| |
35 | 35 |
| |
36 | 36 |
| |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
6 | 6 |
| |
7 | 7 |
| |
8 | 8 |
| |
9 |
| - | |
| 9 | + | |
10 | 10 |
| |
11 | 11 |
| |
12 | 12 |
| |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
10 | 10 |
| |
11 | 11 |
| |
12 | 12 |
| |
13 |
| - | |
| 13 | + | |
14 | 14 |
| |
15 | 15 |
| |
16 | 16 |
| |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
7 | 7 |
| |
8 | 8 |
| |
9 | 9 |
| |
10 |
| - | |
| 10 | + | |
11 | 11 |
| |
12 | 12 |
| |
13 | 13 |
| |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
5 |
| - | |
| 5 | + | |
6 | 6 |
| |
7 | 7 |
| |
8 | 8 |
| |
|
- src/dotnet/ToolPackage/ToolPackageFactory.cs+4-2
- src/dotnet/commands/dotnet-tool/ToolCommandRestorePassThroughOptions.cs+36
- src/dotnet/commands/dotnet-tool/install/ProjectRestorer.cs+10-1
- src/dotnet/commands/dotnet-tool/install/ToolInstallCommand.cs+7-2
- src/dotnet/commands/dotnet-tool/install/ToolInstallCommandParser.cs+4-1
- src/dotnet/commands/dotnet-tool/update/ToolUpdateCommand.cs+2-1
- src/dotnet/commands/dotnet-tool/update/ToolUpdateCommandParser.cs+5-1
- test/dotnet.Tests/CommandTests/ToolInstallCommandTests.cs+7-6
- test/dotnet.Tests/CommandTests/ToolUninstallCommandTests.cs+1-1
- test/dotnet.Tests/CommandTests/ToolUpdateCommandTests.cs+4-4
- test/dotnet.Tests/ParserTests/InstallToolParserTests.cs+30
- test/dotnet.Tests/ParserTests/UpdateToolParserTests.cs+30
Submodule core-setup updated from 4c49ccd to 58b12b9
- build.cmd+14-4
- build.sh+4-1
- clr.coreclr.props+1-2
- src/mscorlib/ILLinkTrim.xml+2
- src/mscorlib/System.Private.CoreLib.csproj+5-1
- src/mscorlib/shared/System/Diagnostics/Tracing/EventProvider.cs+28-11
- src/mscorlib/shared/System/Diagnostics/Tracing/EventSource.cs+169-48
- src/mscorlib/shared/System/Diagnostics/Tracing/TraceLogging/TraceLoggingEventSource.cs+3-3
- src/mscorlib/src/Internal/Runtime/Augments/RuntimeThread.cs+13
- src/mscorlib/src/System/Diagnostics/Eventing/DotNETRuntimeEventSource.cs+39
- src/mscorlib/src/System/Diagnostics/Eventing/EventPipe.cs+44-4
- src/mscorlib/src/System/Diagnostics/Eventing/EventPipeEventDispatcher.cs+206
- src/mscorlib/src/System/Diagnostics/Eventing/EventPipeMetadataGenerator.cs+7
- src/mscorlib/src/System/Diagnostics/Eventing/EventPipePayloadDecoder.cs+183
- src/mscorlib/src/System/Diagnostics/Eventing/XplatEventLogger.cs+6
- src/pal/inc/pal.h+6
- src/pal/src/thread/thread.cpp+25
- src/scripts/genRuntimeEventSources.py+444
- src/scripts/scripts.pyproj+38
- src/vm/ClrEtwAll.man+106-9
- src/vm/comcallablewrapper.cpp+20-7
- src/vm/comsynchronizable.cpp+21
- src/vm/comsynchronizable.h+1
- src/vm/ecalllist.h+4
- src/vm/eventpipe.cpp+188-45
- src/vm/eventpipe.h+46-5
- src/vm/eventpipebuffermanager.cpp+88-18
- src/vm/eventpipebuffermanager.h+5-1
- src/vm/eventpipeconfiguration.cpp+8-8
- src/vm/eventpipeconfiguration.h+2-1
- src/vm/eventpipeeventsource.cpp+1-1
- src/vm/eventpipeprovider.cpp+2-2
- src/vm/eventpipesession.cpp+4
- src/vm/eventpipesession.h+38
- src/vm/jitinterface.cpp+7-2
- sync.sh+3-1
- tests/issues.targets+2-10
- tests/src/baseservices/threading/coverage/OSThreadId/OSThreadId.cs+98
- tests/src/baseservices/threading/coverage/OSThreadId/osthreadid.csproj+31
- tests/src/tracing/common/EtlFile.cs+33
- tests/src/tracing/common/RuntimeEventSource.cs+52
- tests/src/tracing/common/common.csproj+2
- tests/src/tracing/eventsource/eventpipeandetw/EventPipeAndEtw.cs+293
- tests/src/tracing/eventsource/eventpipeandetw/eventpipeandetw.csproj+30
- tests/src/tracing/eventsource/eventsourcetrace/EventSourceTrace.cs+112
- tests/src/tracing/eventsource/eventsourcetrace/eventsourcetrace.csproj+1-1
- tests/src/tracing/eventsourcetrace/EventSourceTrace.cs-111
- tests/src/tracing/runtimeeventsource/RuntimeEventSourceTest.cs+112
- tests/src/tracing/runtimeeventsource/runtimeeventsource.csproj+32
- tests/testsUnsupportedOutsideWindows.txt+1
- buildpipeline/DotNet-CoreFx-Trusted-Linux.json+1-1
- buildpipeline/README.md+2-2
- buildpipeline/linux.groovy+2-2
- buildpipeline/pipeline.json+1-1
- src/System.IO.FileSystem/tests/Base/BaseGetSetTimes.cs+35-28
- src/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/HttpConnectionPool.cs-1
- src/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/HttpEnvironmentProxy.cs+12-1
- src/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/HttpSystemProxy.cs+6
- src/System.Net.Http/tests/FunctionalTests/HttpClientHandlerTest.cs+16-2
- src/System.Net.Http/tests/UnitTests/HttpEnvironmentProxyTest.cs+2
- src/System.Net.Http/tests/UnitTests/HttpSystemProxyTest.cs+23-1
- src/System.Net.Requests/src/System/Net/HttpWebRequest.cs+12-1
- tools-local/ILAsmVersion.txt+1-1
0 commit comments