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
Copy file name to clipboardExpand all lines: src/build-msbuild.ps1
+6-7
Original file line number
Diff line number
Diff line change
@@ -77,8 +77,9 @@ if (Test-Path $7z) {
77
77
if (-not ($zipContents|Select-String"Path = "|Select-String"CodegenCS.Core.pdb")) { throw"msbuild failed" }
78
78
}
79
79
80
+
# Visual Studio Design-Time-Builds were keeping msbuild running and eventually building (and locking) our templates. I think this is gone, now that Design-Time-Builds were blocked in CodegenCS.MSBuild.targets
80
81
# handle codegencs.core.dll
81
-
taskkill /f /im msbuild.exe
82
+
#taskkill /f /im msbuild.exe
82
83
83
84
84
85
# If task fails due to missing dependencies then fusion++ might help to identify what's missing: C:\ProgramData\chocolatey\lib\fusionplusplus\tools\Fusion++.exe
C:\ProgramData\chocolatey\lib\dnspyex\tools\dnSpy.Console.exe ..\Samples\SourceGenerator1\bin\$configuration\netstandard2.0\SourceGenerator1.dll -t AnotherSampleClass # should show some methods that were generated on the fly
99
-
if (!$?) { throw"Template failed (classed were not added to the compilation)" }
99
+
if (!$?) { throw"Template failed (classes were not added to the compilation)" }
0 commit comments