Ron Buckton

Results 539 comments of Ron Buckton

You can test for whether Developer Mode is enabled by checking the value of `HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock\AllowDevelopmentWithoutDevLicense` (DWORD=1) https://docs.microsoft.com/en-us/windows/uwp/get-started/enable-your-device-for-development You can also get the version of windows using `wmic os get Version...

(though its still necessary to elevate to write to \Program Files, so I'm not sure if the above will help)

BTW: If the user has PowerShell installed, you can possibly avoid using VBScript for a UAC prompt using the following command line instead: ```cmd powershell -NoLogo Start -Verb:RunAs -Wait -FilePath:...

Also, if you install nvm-windows with the NodeJS path set to a user-local folder (such as `%USERPROFILE%\AppData\Local\nodejs`), you can switch to junctions and skip elevation by replacing the contents of...

I'd also like to see something like the `nvm alias` feature from `nvm` on Linux. I've "worked around" this by adding a directory symlink in the root for things like...

How would you propose doing this? Replacing `DocDeclarationReference` in `DocLinkTag` with `DocDeclarationReference | DeclarationReference`, or having `DocDeclarationReference` store a `DeclarationReference` as an alternative to `packageName`/`importPath`/`memberReferences`?

There is still an ambiguity with `#` between the old and new formats. `foo#bar` in the previous format would be a package named `foo` with an export named `bar`, but...

@octogonz Can you take a look at this and tell me what you think?

I threw together a [PR](https://github.com/microsoft/tsdoc/pull/204) that adds support for synonyms.

I would also like to see this implemented, as sometimes it doesn't make sense to introduce an interface for optional named parameters. For reference, here is the documentation for the...