We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2cac86 commit 377c736Copy full SHA for 377c736
test/MsgPack.UnitTest/Serialization/RoslynCodeGeneration.cs
@@ -1,4 +1,4 @@
1
-#region -- License Terms --
+#region -- License Terms --
2
//
3
// MessagePack for CLI
4
@@ -67,7 +67,7 @@ a is string
67
EmitResult result;
68
if ( SerializerDebugging.DumpEnabled )
69
{
70
- var assemblyPath = Path.Combine( SerializerDebugging.DumpDirectory, assemblyName + ".dll" );
+ var assemblyPath = Path.Combine( SerializerDebugging.DumpDirectory ?? Path.GetTempPath(), assemblyName + ".dll" );
71
72
using ( var fileStream = File.OpenWrite( assemblyPath ) )
73
0 commit comments