Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
this is might be really weird, but I have no idea what kinda wizardry of this. Basically, my Visual Studio stopped responding to my changes, it stopped building solution. I can comment code, which would completely ruin the logic of program, and Visual Studio will still run program that I guess it has in memory. It's really annoying, and I have no idea what it is. I keep restarting software, but it's still does the same. It's a licensed software. I was wondering If someone knew what was going on. Thanks!
I've seen this a few times, and usually one of or a combination of the following will work:
Clean the solution, then build it.
Change the from "Release" to Debug (or vice-cversa) then clean and build, then revert back.
Close visual studio and manually delete everything in the \bin directory
For an asp.net website, close visual studio and delete the files in C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Temporary ASP.NET Files (Path will vary depending on your machine setup This is where my ASP.NET versino 4 files are compiled to.)
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
In Visual Studio 2019 all files like .aspx, .aspx.cs, .js, images are showing. I am missing .csproj and .sln files. to open and try to complie. What might have happened? any sort of idea appreciated.
Create a new project and copy the files from the old project to the new project.
Cheers
Pick one:
You deleted them by accident.
Some other software (or add-on) you were messing with deleted them.
Whatever you actually did is something that normally will not lead to the creation of .csproj/.sln files, such as opening the .aspx, .aspx.cs, .js, images, etc. manually in VS without opening or creating an actual project or solution.
The .csproj/.sln files are not missing. Whatever you experienced led you to the false belief the .csproj and .sln files would be missing. But in reality, whatever you saw and witnessed is an expression of another problem, not of the .csproj/.sln files missing.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
So, I want to share my DLL pack code and be able to collaborate in real time with a friend :) but I don't know how to upload my .sln file to the free tfs server. can can anyone help? Did some research, and couldn't find how :(
I am a bit unsure about if you already have a TFS server or not. So I included a link right below here where to get one if you don't.
Go to https://www.visualstudio.com/team-services/ if you wanna use free TFS.
This is a very easy way to do this, as I assume you never done this before. But if you done some research you should know the Team Explorer in Visual studio
Create a project in your TFS and Go into your Visual Studio and connect
to your TFS
"Map and Get" to a location on your computer. It will
created a folder where you can decide what you want to add to your
TFS Project(It should ask you when you connected, but if not you can
find it Source Control Explorer)
Add your solution into that folder
If you go into Pending changes you should now have some "Detected
add(s)" in the bottom at exclude changes. You wanna click on that
and include all the files you want to share.
Now your friend can do the first 2 steps and also have the same solution and stuff as you.
If you decide to use Git by any chance, is kinda the same process, just different names.
If you need more details on this, feel free to throw a comment. However if you done some basic research into this and already been playing around. There should be no issues at all. There are hundred of videos on youtube about TFS, How to set it up and much more.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I only know html and css.
And now I need to study c#
Can someone please explain what happens when i click the run button on my visual studio?
When does translating the souce code into machine code happens?
when does visual studio create an .exe?
Does this executable is already MSIL code already?
I already read some introduction of c#. But still i dont understand a thing.
I only need idea on how things works.
Thank you so much.
When you press the run button, it compiles and build the assemblies and executable file from the source code.
You can find your exe in the bin folder.
Check this link
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
I was working on a c# project on my computer when I accidentally removed the power cord.
When I started my computer back up I tried to load my project, but I got a error:
There is no editor available for 'c\user\documents\visualstudio 2013\projects\project_name\from1.cs
make sure the application for the file type(.cs) is installed
On the same project I have different forms and those still work, only from1 is not working. The data set only contains 0's.
What can I do to fix this?
Either something got corrupted in your Visual Studio installation, or (more likely) the file you were working on before your computer was shut down (which I assume was from1.cs).
Are you able to open from1.cs and from1.Designer.cs in something like Notepad? You may want to look for NULL terminators in your file as suggested by this answer on this (possibly duplicate) question.
If that doesn't work, either try copying the existing code from from1.cs and from1.Designer.cs into new files in your project, or repairing/reinstalling Visual Studio. Just make sure to make a backup of your project first, just in case! ;)
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
i have problems with visual studio 2013:
when i try to create any project (f.e: c# console app), then i see always this window:
and when i try to click anywhere, then i see the cloud:
"microsoft visual studio is busy waiting for an internal operation to complete"
but when i'm open visual studio 2013 by developer command prompt for vs2013 → devenv/safemode
then i can everything, but i can't open team explorer (for git).
how can i resolve this problem?
Edit:
I try do it for 10 minutes. after ~8 minutes i see my project solution...but it's to sloow :/
Edit2:
it's my extensions:
A few things that come to mind, which you may want to verify:
Do you have a virus, malware or hung CPU hogging process or memory leaking process? Check how much system resources are free in Task Manager. Install and update anti-virus software such as Microsoft Security Essentials (free), if you don't have any.
Is Visual Studio up to date with the latest updates and software patches?
Do you have any Visual Studio extensions or addons installed which may be causing the lag? Try disabling them all to see if the problem still occurs.
Are your projects being created and saved to a network drive which is extremely slow to access, or is your hard disk unresponsive due to other I/O happening in the background?