This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REGEDIT4 | |
[HKEY_CURRENT_USER\Software\Microsoft\Command Processor] | |
"DisableUNCCheck"=dword:00000001 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Determine why Visual Studio is rebuilding a project: | |
-- add a block to enable debug view output (devenv.exe.config); check DebugView for the reason. | |
VS2010 | |
<system.diagnostics> | |
<switches> | |
<add name="CPS" value="4" /> | |
</switches> | |
</system.diagnostics> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If you have installed the .Net Core RC2 on OS X 10.11 but still can’t use it because the `dotnet restore` command fails with the cryptic error: | |
~/w/dotnet_hello ❯❯❯ dotnet restore | |
log : Restoring packages for /Users/mike/wrk/dotnet_hello/project.json... | |
error: Unable to load the service index for source https://dotnet.myget.org/F/dotnet-core/api/v3/index.json. | |
error: The type initializer for 'Crypto' threw an exception. | |
error: The type initializer for 'CryptoInitializer' threw an exception. | |
error: Unable to load DLL 'System.Security.Cryptography.Native': The specified module could not be found. | |
error: (Exception from HRESULT: 0x8007007E) |