asp.net core - Custom variables in project.json -
is there syntax declaring custom variables , having them expanded in project.json?
{ "aspnetversion": "1.0.0-beta4", // custom variable "dependencies": { "microsoft.aspnet.testhost": "$(aspnetversion)", // expansion }, "frameworks": { "dnx451": { } } }
you cannot add custom data in project.json can use configuration system add application settings https://github.com/aspnet/configuration
Comments
Post a Comment