Fixing wrong output path passed to pre/post publish scripts
Fixes #1014
This commit is contained in:
parent
ea43482551
commit
813979de0e
1 changed files with 2 additions and 1 deletions
|
@ -89,7 +89,8 @@ namespace Microsoft.DotNet.Tools.Publish
|
||||||
{
|
{
|
||||||
{ "publish:ProjectPath", context.ProjectDirectory },
|
{ "publish:ProjectPath", context.ProjectDirectory },
|
||||||
{ "publish:Configuration", configuration },
|
{ "publish:Configuration", configuration },
|
||||||
{ "publish:OutputPath", outputPathCalculator.BaseCompilationOutputPath },
|
{ "publish:OutputPath", outputPath },
|
||||||
|
{ "publish:PublishOutputPath", outputPathCalculator.BaseCompilationOutputPath },
|
||||||
{ "publish:Framework", context.TargetFramework.Framework },
|
{ "publish:Framework", context.TargetFramework.Framework },
|
||||||
{ "publish:Runtime", context.RuntimeIdentifier },
|
{ "publish:Runtime", context.RuntimeIdentifier },
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue