[Infrastructure] Fix invalid variable names
ProcDumpPath -> ProcDumpToolPath
_BuildConfiguration -> _BuildConfig\n\nCommit migrated from f283e4a7c0
This commit is contained in:
parent
bcd542a1bb
commit
dfbb36ee10
|
|
@ -159,7 +159,7 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests
|
||||||
.GetCustomAttributes<AssemblyMetadataAttribute>();
|
.GetCustomAttributes<AssemblyMetadataAttribute>();
|
||||||
|
|
||||||
var procDumpPath = metadataAttributes
|
var procDumpPath = metadataAttributes
|
||||||
.SingleOrDefault(ama => ama.Key == "ProcDumpPath")?.Value;
|
.SingleOrDefault(ama => ama.Key == "ProcDumpToolPath")?.Value;
|
||||||
|
|
||||||
if (string.IsNullOrEmpty(procDumpPath))
|
if (string.IsNullOrEmpty(procDumpPath))
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@
|
||||||
|
|
||||||
<AssemblyAttribute Include="System.Reflection.AssemblyMetadataAttribute">
|
<AssemblyAttribute Include="System.Reflection.AssemblyMetadataAttribute">
|
||||||
<_Parameter1>ArtifactsLogDir</_Parameter1>
|
<_Parameter1>ArtifactsLogDir</_Parameter1>
|
||||||
<_Parameter2>$([MSBuild]::NormalizeDirectory('$(ArtifactsDir)', 'log', '$(_BuildConfiguration)'))</_Parameter2>
|
<_Parameter2>$([MSBuild]::NormalizeDirectory('$(ArtifactsDir)', 'log', '$(_BuildConfig)'))</_Parameter2>
|
||||||
</AssemblyAttribute>
|
</AssemblyAttribute>
|
||||||
|
|
||||||
<AssemblyAttribute Include="System.Reflection.AssemblyMetadataAttribute">
|
<AssemblyAttribute Include="System.Reflection.AssemblyMetadataAttribute">
|
||||||
|
|
@ -123,7 +123,7 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
<Target Name="EnsureLogFolder" AfterTargets="Build">
|
<Target Name="EnsureLogFolder" AfterTargets="Build">
|
||||||
<MakeDir Directories="$([MSBuild]::NormalizeDirectory('$(ArtifactsDir)', 'log', '$(_BuildConfiguration)'))" />
|
<MakeDir Directories="$([MSBuild]::NormalizeDirectory('$(ArtifactsDir)', 'log', '$(_BuildConfig)'))" />
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue