Create all directories and make it by default (#862)

This commit is contained in:
Pavel Krymets 2018-02-08 11:39:09 -08:00 committed by GitHub
parent 6f814ed536
commit 4040cb9638
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@
</PropertyGroup>
<Target Name="PrepareOutputPaths">
<MakeDir Directories="$(ArtifactsDir);$(BuildDir);$(LineupBuildDir)" />
<MakeDir Directories="$(ArtifactsDir);$(BuildDir);$(LineupBuildDir);$(IntermediateExternalPackageDir);$(IntermediateMirrorPackageDir)" />
</Target>
<Target Name="RestoreExternalDependencies">
@ -88,7 +88,7 @@
<Error Text="No solutions were found in '$(SubmoduleRoot)'" Condition="@(Solution->Count()) == 0" />
</Target>
<Target Name="GeneratePropsFiles" DependsOnTargets="ResolveRepoInfo">
<Target Name="GeneratePropsFiles" DependsOnTargets="PrepareOutputPaths;ResolveRepoInfo">
<ItemGroup>
<_LineupPackages Include="@(ExternalDependency)" />
<_LineupPackages Include="%(ArtifactInfo.PackageId)" Version="%(ArtifactInfo.Version)" Condition=" '%(ArtifactInfo.ArtifactType)' == 'NuGetPackage' " />