I cannot find my project dll in visual studio code - g1ant

enter image description here
Can anyone help me find the problem here even after I am uninstalling and reinstalling G1ANT and its extension I am getting this error.Please give me a solution for this

First you build then debug if required..

Related

Error : Build Project through error on Telerik Web UI

Actually i was trying to build MVC project on Visual Studio 2019 but when i'm switching to visual studio 2019 so i get some reference error so finally i resolve all the issues then build solution so i have one error on Telerik.Web.UI reference. I'm already spend 2 hours on this issue but still i don't have an idea about it please help.
'Could not load file or assembly 'Telerik.Web.UI, Version=2015.1.225.45,
Culture=neutral, PublicKeyToken=121fae78165ba3d4' or one of its dependencies. Operation is not
supported
Solved, problem is that i have telerik license file so delete this license file and add reference then build project, its working.
I am glad you've managed to solve the problem.
For anyone else who is experiencing this issue in the future, let he/she checks the following KB article: https://www.telerik.com/support/kb/aspnet-ajax/details/how-to-fix-license-file-related-errors

My VSIX extension is not showing on VS2017 (Was on 2015)

I have a VSIX extension (https://github.com/eduelias/AssociateRecentWorkItems) that worked really well on my VS2015 but, as I built/run it on VS2017 (yeah, I've put the prerequisites on the .csproj properties), it is not appearing at 2017's TFS Pending Changes tab.
I've tried updating MIcrosoft.TeamfoundationServer.Controls to the 2017 version but still no success.
As I try to debug it, it seems that VS2017 isn't loading the extension at all. (Breakpoints aren't not been loaded)
Any help is welcome. Thanks!
Give a try with another new extension on VS2017(from marketplace) in your side. If this could also not installed successfully and you are using VS2017 RC.
You may encountered this issue--Unable to install extensions after updating VS2017 RC
Either update to latest VS version or use Stefan Z Camilleri 's workaround in above link.
If only your old extension could not be installed, since
Huge changes have been made by Microsoft on the installation, so
previous approaches of detecting VS won't work any more. For example,
to detect VS installation folder, now a few extra tools or scripts are
required, https://github.com/Microsoft/vswhere
So guides such as How to: Migrate Extensibility Projects to Visual
Studio
2017
are critical and you can follow the tips.
You could also refer more details in this similar question Visual Studio 2017 is not detected by extensions for installation
Looking through the log, I was able to find that some of my references were asking for Microsoft.TeamFoundation.Client Version=14.0.0, in fact, It was the Microsoft.TeamFoundation.VersionControl version=12.0 that were looking for it.
To solve it, I've made a 'binding redirect' like this:
[assembly: ProvideBindingRedirection(AssemblyName = "Microsoft.TeamFoundation.Client", NewVersion = "15.0.0.0", OldVersionLowerBound = "12.0.0.0", OldVersionUpperBound = "14.0.0.0")]
It started appearing at the Exp instance and I was able to debug it.
Note that I strongly advise against doing such kind of workaround but, in my case, it was the only way I could make it load my extension so I could debug it.

Finding Reference to System.IO.FileSystem.Watcher.dll

I have a Xamarin Forms cross platform solution. When I build the solution, the iOS project can't resolve the reference: C:/Program Files (x86)/Reference Assemblies/Microsoft/Framework/Xamarin.iOS/v1.0/Facades/System.IO.FileSystem.Watcher.dll even though it is physically there. All the other projects build just fine.
I can't find a reference to the DLL or the class anywhere in the solution files. I don't need the capability.
Ideas? Thanks.
I had the exact same issue. I found out that the issue happened because of different versions of Xamarin.iOS on my development and mac machine. By updating Xamarin through Xamarin Studio, the problem was solved.
Source: Xamarin Forums

Error Loading Assemblies in Mono for android

Mono for android was working just fine but after a pc restart I get the following error for my project? The error title is just "Error Loading Assemblies" and the details are in the image below.
Any idea what could be the cause? This is happening in monodroid 4.2.2 and it happens both on emulator and a physcal android:
Through xamarin forum I found that cleaning the solution in Visual Studio will fix this problem. Hope this helps somone else.

ASP.NET MVC CTP5 Crashing IDE

I've recently installed the MVC CTP5 and VS is now crashing on me when I try to open an aspx, I get the following error in event viewer:
.NET Runtime version 2.0.50727.3053 - Fatal Execution Engine Error (7A035E00) (80131506)
I was able to find This post on the asp.net forums relating to the same issue but nobody has had a working solution yet (at least not for me).
Just wondering if anyone else has run into this issue and what they have done to resolve it?
EDIT: Wanted to add that I have tried all the tips in the article and can open the markup with a code editor but was wondering an actual solution had been found to resolve this issue.. Thanks!
EDIT: I don't have this issue on my Vista box, seems to only occur on my XP VM.
I had a problem with Power Commands and Preview 5. If you have Power Commands installed, try updating or uninstalling it to fix the issue.
Here are a steps to work around from the post that work for me:
1.Open project based on CTP5
2.IN solution Explorer, enable "Show All files"
3.Open "bin" folder and delete "Microsoft.Web.Mvc.dll", "System.Web.Mvc.dll", "System.Web.Abstractions.dll", "System.Web.Routing.dll"
4.Open "References" folder, click ONCE "System.Web.Abstractions" and in Properties window change "Copy Local" to true. Repeat same with System.Web.Routing.
5.Build application (Ctrl+Shift+B)
6.Open site.master in designer. VS will not crash.
FYI - Microsoft has released a hotfix that fixes [at least some variations of] this problem:
https://connect.microsoft.com/VisualStudio/Downloads/DownloadDetails.aspx?DownloadID=16827&wa=wsignin1.0
http://blogs.msdn.com/jnak/archive/2009/02/26/fix-available-asp-net-mvc-rc-crash-in-a-windows-azure-cloud-service-project.aspx
A bit of a null answer but I’ve been having this too. Not that I restart VS often but cleaning out the bin folder before opening the web project is my workaround.
Have same problem, on vista x64 and vs2008 sp1. Have to do probably something with cleaning bin folder and system.web.routing/abstraction, because it crashes even on webforms project with (mvc) routing in it. When I delete all files from bin, and add references again, it works fine.
Really annoying bug in vs2008+ctp5!

Resources