Updated MSBuild Tips & Tricks (markdown)

Kirill Osenkov 2018-07-05 14:10:14 -07:00
Родитель ce81baf107
Коммит ca0bb95c4a
1 изменённых файлов: 2 добавлений и 2 удалений

@ -64,6 +64,6 @@ then build any project. It will have MyCustomProperty set to Value!
Set the property `GenerateTemporaryTargetAssemblyDebuggingInformation` on the `GenerateTemporaryTargetAssembly` task:
https://referencesource.microsoft.com/#PresentationBuildTasks/BuildTasks/Microsoft/Build/Tasks/Windows/GenerateTemporaryTargetAssembly.cs,4571677f19ba0d24,references
If the property `$(GenerateTemporaryTargetAssemblyDebuggingInformation)` is set, the .tmp_proj generated during XAML project build will not be deleted and will be available for inspection. This is only available in the recent versions of .NET Framework, so check if your `Microsoft.WinFX.targets` file has it.
If the property `$(GenerateTemporaryTargetAssemblyDebuggingInformation)` is set, the temporary project generated during XAML project build will not be deleted and will be available for inspection. This is only available in the recent versions of .NET Framework, so check if your `Microsoft.WinFX.targets` file has it.
Also the name of the project was renamed from *.tmp_proj to *_wpftmp.csproj so the file extension is now C#: `WpfApp1_jzmidb3d_wpftmp.csproj`
Also the name of the project was renamed from `*.tmp_proj` to `*_wpftmp.csproj` so the file extension is now C#: `WpfApp1_jzmidb3d_wpftmp.csproj`