Fix directory name
This commit is contained in:
parent
eb918fc4b2
commit
6c7d099548
|
|
@ -17,7 +17,7 @@
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<MetaPackagePath>$(RepositoryRoot)src\Microsoft.AspNetCore.All\</MetaPackagePath>
|
<MetaPackagePath>$(RepositoryRoot)src\Microsoft.AspNetCore.All\</MetaPackagePath>
|
||||||
<MetaPackageFile>$(MetaPackagePath)Microsoft.AspNetCore.All.csproj</MetaPackageFile>
|
<MetaPackageFile>$(MetaPackagePath)Microsoft.AspNetCore.All.csproj</MetaPackageFile>
|
||||||
<WorkingDirectory>$(MetaPackagePath)bin\work\</WorkingDirectory>
|
<WorkingDirectory>$(MetaPackagePath)bin\work</WorkingDirectory>
|
||||||
<OutputPath>$(MetaPackagePath)bin\packageCache\</OutputPath>
|
<OutputPath>$(MetaPackagePath)bin\packageCache\</OutputPath>
|
||||||
<OutputZip Condition="'$(OSPlatform)' == 'Windows'">$(RepositoryRoot)artifacts\AspNetCorePackageCache.win.zip</OutputZip>
|
<OutputZip Condition="'$(OSPlatform)' == 'Windows'">$(RepositoryRoot)artifacts\AspNetCorePackageCache.win.zip</OutputZip>
|
||||||
<OutputZip Condition="'$(OSPlatform)' == 'Linux'">$(RepositoryRoot)artifacts\AspNetCorePackageCache.linux.zip</OutputZip>
|
<OutputZip Condition="'$(OSPlatform)' == 'Linux'">$(RepositoryRoot)artifacts\AspNetCorePackageCache.linux.zip</OutputZip>
|
||||||
|
|
@ -32,8 +32,8 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<RemoveDir Directories="$(OutputPath)" />
|
<RemoveDir Directories="$(OutputPath)" />
|
||||||
<RemoveDir Directories="$(WorkingDirectory)-%(RIDs.Identity)" />
|
<RemoveDir Directories="$(WorkingDirectory)-%(RIDs.Identity)\" />
|
||||||
<Exec Command="dotnet cache --entries $(MetaPackageFile) --framework netcoreapp2.0 --runtime %(RIDs.Identity) --output $(OutputPath) --framework-version 2.0.0-* --working-dir $(WorkingDirectory)-%(RIDs.Identity)" />
|
<Exec Command="dotnet cache --entries $(MetaPackageFile) --framework netcoreapp2.0 --runtime %(RIDs.Identity) --output $(OutputPath) --framework-version 2.0.0-* --working-dir $(WorkingDirectory)-%(RIDs.Identity)\" />
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageCacheFiles Include="$(OutputPath)**\*" />
|
<PackageCacheFiles Include="$(OutputPath)**\*" />
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue