visual-studio

VS2017 Blank Sign In Screen

微笑、不失礼 提交于 2021-02-06 10:50:06
问题 I have a unique issue with my installation of Visual Studio 2017 where the sign in dialog is blank, and no matter how long I wait it never seems to allow me to log in. I have tried changing the default browser to Chrome, Edge and IE just in case it was using that under the hood for rendering this page. Prior to that I had an issue with the Virtual Machine running the IDE which required me to re-register *.VBS associations to complete the install, that has been resolved and the install has

VS2017 Blank Sign In Screen

谁说胖子不能爱 提交于 2021-02-06 10:49:03
问题 I have a unique issue with my installation of Visual Studio 2017 where the sign in dialog is blank, and no matter how long I wait it never seems to allow me to log in. I have tried changing the default browser to Chrome, Edge and IE just in case it was using that under the hood for rendering this page. Prior to that I had an issue with the Virtual Machine running the IDE which required me to re-register *.VBS associations to complete the install, that has been resolved and the install has

Visual Studio debugging painfully slow when loading symbols

泪湿孤枕 提交于 2021-02-05 20:44:32
问题 I have an issue which is practically similar to Visual Studio debugging/loading very slow but I haven't managed to find a solution to such a problem. I have tried all what is described within that question and still, the symbol loading for the very first time is drastically slow. Similarly to the other question, when starting an MVC project, I get several lines within the Output panel which consist of something similar to: 'iisexpress.exe' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft

Visual Studio debugging painfully slow when loading symbols

走远了吗. 提交于 2021-02-05 20:43:43
问题 I have an issue which is practically similar to Visual Studio debugging/loading very slow but I haven't managed to find a solution to such a problem. I have tried all what is described within that question and still, the symbol loading for the very first time is drastically slow. Similarly to the other question, when starting an MVC project, I get several lines within the Output panel which consist of something similar to: 'iisexpress.exe' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft

Build Succeeded, but no .lib file gets created

倾然丶 夕夏残阳落幕 提交于 2021-02-05 14:21:23
问题 I inherited a substantial amount of code, including a visual studio project that is supposed to (as best as I can tell) build a .lib file. Visual studio says "... Generating Code... Creating Library... Creating browse information file...", and at the end, it says the build succeeded. In the release/debug folder, it has a bunch of .obj files, but it doesn't have a .lib file. What could I be missing? Thanks! 回答1: Open the Project Properties (right-click the project in Solution Explorer, select

Build Succeeded, but no .lib file gets created

前提是你 提交于 2021-02-05 14:21:17
问题 I inherited a substantial amount of code, including a visual studio project that is supposed to (as best as I can tell) build a .lib file. Visual studio says "... Generating Code... Creating Library... Creating browse information file...", and at the end, it says the build succeeded. In the release/debug folder, it has a bunch of .obj files, but it doesn't have a .lib file. What could I be missing? Thanks! 回答1: Open the Project Properties (right-click the project in Solution Explorer, select

Build Succeeded, but no .lib file gets created

南笙酒味 提交于 2021-02-05 14:21:13
问题 I inherited a substantial amount of code, including a visual studio project that is supposed to (as best as I can tell) build a .lib file. Visual studio says "... Generating Code... Creating Library... Creating browse information file...", and at the end, it says the build succeeded. In the release/debug folder, it has a bunch of .obj files, but it doesn't have a .lib file. What could I be missing? Thanks! 回答1: Open the Project Properties (right-click the project in Solution Explorer, select

Build Succeeded, but no .lib file gets created

本秂侑毒 提交于 2021-02-05 14:21:05
问题 I inherited a substantial amount of code, including a visual studio project that is supposed to (as best as I can tell) build a .lib file. Visual studio says "... Generating Code... Creating Library... Creating browse information file...", and at the end, it says the build succeeded. In the release/debug folder, it has a bunch of .obj files, but it doesn't have a .lib file. What could I be missing? Thanks! 回答1: Open the Project Properties (right-click the project in Solution Explorer, select

integrating Git Bash with Visual Studio

流过昼夜 提交于 2021-02-05 12:48:09
问题 I have a windows version of Git Bash, and I want to use it with my Visual Studio Projects. What I want is a way of tweaking some setting so that one click can get Bash opened with the directory on the current visual studio project. It would be great if there's a way to set up short cut in Git Bash for directories, so that one command can get me to a preset directory. 回答1: Have a look at Git Source Control Provider: http://gitscc.codeplex.com/ It has Visual Studio integration for Git and one

How to convert hash data to original data? [duplicate]

邮差的信 提交于 2021-02-05 12:28:59
问题 This question already has answers here : Closed 8 years ago . Possible Duplicate: Is it possible to decrypt md5 hashes? I hashed data with ComputeHash how can I learn original data from hashed data? private void btn_Hash_Click(object sender, EventArgs e) { HashAlgorithm ha = HashAlgorithm.Create(); Stream file = new FileStream(@"C:\temp\simetrik.txt", FileMode.Open, FileAccess.Read); hashClass.hash = ha.ComputeHash(file); listBox1.Items.Add(BitConverter.ToString(hashClass.hash)); } 回答1: You