Skip to content
Snippets Groups Projects
Commit d18fc14e authored by Chris Bacon's avatar Chris Bacon
Browse files

Fix Profilers for coreclr

Coreclr doesn't support the StreamWriter(string) constructor.
Use File.CreateText() instead, which is equivalent and supported on all platforms.
parent 0789c495
No related branches found
No related tags found
No related merge requests found
......@@ -111,7 +111,7 @@ namespace Grpc.Core.Profiling
public void Dump(string filepath)
{
using (var stream = new StreamWriter(filepath))
using (var stream = File.CreateText(filepath))
{
Dump(stream);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment