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% 

source

and here ones pre/postcompile:

%compile:targetframework% %compile:fulltargetframework% %compile:configuration% %compile:outputfile% %compile:outputdir% %compile:responsefile% %compile:runtimeoutputdir% %compile:runtimeidentifier% %compile:compilerexitcode%     // postcompile 

source


Comments

Popular posts from this blog

java - nested exception is org.hibernate.exception.SQLGrammarException: could not extract ResultSet Hibernate+SpringMVC -

sql - Postgresql tables exists, but getting "relation does not exist" when querying -

asp.net mvc - breakpoint on javascript in CSHTML? -