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
<!-- Depends on PrepareForBuild because the latter is responsible for calling MakeDir(IntermediateOutputPath).
13
+
Without it, if we do a design-time build of a project (e.g. in Workspace.LoadSolution) immediately following
14
+
a tfpt treeclean, WriteCodeFragment may fail because the obj folder doesn't even exist at that time. -->
15
+
<TargetName="GenerateAssemblyInfoFile"
16
+
Inputs="$(MSBuildThisFileFullPath)"
17
+
Outputs="$(GeneratedAssemblyInfoFile)"
18
+
DependsOnTargets="PrepareForBuild"
19
+
Condition="'$(Language)' == 'C#' or '$(Language)' == 'VB'">
20
+
21
+
<ErrorCondition="'$(BuildVersion)'==''"Text="'BuildVersion' is not defined. Try rebuilding clean. If the problem presists, make sure gdb.settings.targets is included in this project."/>
22
+
<ErrorCondition="'$(AssemblyVersion)'==''"Text="'AssemblyVersion' is not defined. Try rebuilding clean. If the problem presists, make sure gdb.settings.targets is included in this project."/>
0 commit comments