Right now the Sdk value is treated as a literal string with no expansion. If a user specifies something like:
<Project Sdk="$(Property1)" />
Then the value "$(Property1)" is passed to the resolver which would probably return a message stating that it couldn't be found. We should instead check if the value contains expandable characters and throw an invalid project error.
Right now the Sdk value is treated as a literal string with no expansion. If a user specifies something like:
Then the value "$(Property1)" is passed to the resolver which would probably return a message stating that it couldn't be found. We should instead check if the value contains expandable characters and throw an invalid project error.