You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Log.LogError($"Precompile command succeeded, but can't find the expected temporary output file - {proxyFile.TempFile} for {assembly}.{Environment.NewLine}{output}");
942
-
returnfalse;
943
-
}
944
-
945
939
copied|=proxyFile.CopyOutputFileIfChanged();
946
940
_fileWrites.Add(proxyFile.TargetFile);
947
941
}
@@ -1225,11 +1219,11 @@ public bool CopyOutputFileIfChanged()
1225
1219
if(!_cache.Enabled)
1226
1220
returntrue;
1227
1221
1222
+
if(!File.Exists(TempFile))
1223
+
thrownewLogAsErrorException($"Could not find the temporary file {TempFile} for target file {TargetFile}. Look for any errors/warnings generated earlier in the build.");
1224
+
1228
1225
try
1229
1226
{
1230
-
if(!File.Exists(TempFile))
1231
-
thrownewLogAsErrorException($"Could not find the temporary file {TempFile} for target file {TargetFile}. Look for any errors/warnings generated earlier in the build.");
1232
-
1233
1227
if(!_cache.ShouldCopy(this,outstring?cause))
1234
1228
{
1235
1229
_cache.Log.LogMessage(MessageImportance.Low,$"Skipping copying over {TargetFile} as the contents are unchanged");
@@ -1246,6 +1240,7 @@ public bool CopyOutputFileIfChanged()
0 commit comments