Account for missing ArtifactsDir
This commit is contained in:
parent
addbac24aa
commit
3f911fd518
|
|
@ -38,8 +38,9 @@
|
|||
|
||||
<Target Name="_BuildVSIX" Condition="'$(MSBuildExePath)'!=''">
|
||||
<PropertyGroup>
|
||||
<VSIXLogFilePath>$(ArtifactsDir)msbuild\vsix.log</VSIXLogFilePath>
|
||||
<VSIXResponseFilePath>$(ArtifactsDir)msbuild\vsix.rsp</VSIXResponseFilePath>
|
||||
<MSBuildArtifactsDir>$(ArtifactsDir)msbuild\</MSBuildArtifactsDir>
|
||||
<VSIXLogFilePath>$(MSBuildArtifactsDir)vsix.log</VSIXLogFilePath>
|
||||
<VSIXResponseFilePath>$(MSBuildArtifactsDir)vsix.rsp</VSIXResponseFilePath>
|
||||
<VSIXOutputPath>$(BuildDir)$(VSIXName).vsix</VSIXOutputPath>
|
||||
</PropertyGroup>
|
||||
|
||||
|
|
@ -55,6 +56,8 @@
|
|||
/p:Configuration=$(Configuration);" />
|
||||
</ItemGroup>
|
||||
|
||||
<MakeDir Directory="$(MSBuildArtifactsDir)" Condition="!Exists('$(MSBuildArtifactsDir)')" />
|
||||
|
||||
<WriteLinesToFile
|
||||
File="$(VSIXResponseFilePath)"
|
||||
Lines="@(MSBuildArguments)"
|
||||
|
|
|
|||
Loading…
Reference in New Issue