dnx - How to determine output folder of dnu/dotnet publish -
when publish project
dotnet publish
it outputs folder
bin/debug/dnxcore50/osx.10.11-x64/publish
(or perhaps release equivalent)
is possible determine folder location postpublish script specified in project.json file?
thanks fast response on dotnet/cli gitter channel, can. following variables available:
%publish:projectpath% %publish:configuration% %publish:outputpath% %publish:targetframework% %publish:fulltargetframework% %publish:runtime%
and here ones pre/postcompile:
%compile:targetframework% %compile:fulltargetframework% %compile:configuration% %compile:outputfile% %compile:outputdir% %compile:responsefile% %compile:runtimeoutputdir% %compile:runtimeidentifier% %compile:compilerexitcode% // postcompile
Comments
Post a Comment