What does the suffix #DEN mean on the value of a variable
This is for “denormalized number”.
This is for “denormalized number”.
I just created a small Visual Studio extension that can help: http://visualstudiogallery.msdn.microsoft.com/f3f23845-5b1e-4811-882f-60b7181fa6d6 This small extension will detect whenever two instances of Visual Studio are running and change the window title of Visual Studio to include the parent folder name of the solution. It will therefore change SolutionFolder – Microsoft Visual Studio into SolutionFolderParent\SolutionFolder – Microsoft … Read more
This solved my issue: Most likely, you have accidentally gotten the bit flipped to debug with ClickOnce security settings. Can you get the project properties for your app, go to the “Security” tab, and make sure to uncheck “Enable ClickOnce Security settings” or check the “This is a full trust application” radio button.
If you are wondering why you should use windbg over Visual Studio, then you need to read Advanced Windows Debugging. Any time you need to debug a truly ugly problem windbg has better technology to do it with than Visual Studio. Windbg has a more powerful scripting language and allows you to write DLLs to … Read more
You can manually enable Visual Studio 2017 compatibility with WiX 3.10 or earlier: Close all instances of Visual Studio. Copy C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\Extensions\Microsoft\WiX to C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\IDE\Extensions\Microsoft\WiX (In the destination path, replace “Enterprise” with “Professional” or “Community” depending on your edition.) You may need to provide Administrator permission: The result … Read more
The option to give consent in the UI has been added with NuGet Package Manager 1.8. It’s the 3rd item under Tools-> Options-> Package Manager-> General : “Package Restore : Allow NuGet to download missing packages during build”. Please make sure NuGet is up-to-date in Tools->Extension Manager. Alternatively you can give consent by setting the … Read more
Add a reference to ‘Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore’, it appears that function is in that package now.
You should commit the .sln and the .csproj, but not the .suo or the .user files. You can add the following to .gitignore: #ignore thumbnails created by windows Thumbs.db #Ignore files build by Visual Studio *.obj *.exe *.pdb *.user *.aps *.pch *.vspscc *_i.c *_p.c *.ncb *.suo *.tlb *.tlh *.bak *.cache *.ilk *.log [Bb]in [Dd]ebug*/ *.lib … Read more
I got the errors to go away by installing the Windows Universal CRT SDK component, which adds support for legacy Windows SDKs. You can install this using the Visual Studio Installer: If the problem still persists, you should change the Target SDK in the Visual Studio Project : check whether the Windows SDK version is … Read more
Yep! Go to Tools -> Python Tools -> Python Environments. This will open a new pane where you can select pip (VS 2015) or Packages (VS 2017) from the menu (it will say Overview by default) and then you can enter your module and double click to install. Some packages have complex dependencies, and you … Read more