Issues with Nuget 2.8.50126.477 in Visual Studio 2013 - visual-studio-2013

I am trying to add a package through Nuget 2.8.50126.477 in Visual Studio 2013 on my office laptop. But Nuget seems to be stuck retrieving information forever.
Note that I am able to use Nuget 1.2 with Visual Studio 2010 from the same laptop. My devenv.exe.config files for both versions of visual studio have the following entries:
<system.net>
<defaultProxy useDefaultCredentials="true" enabled="true">
<proxy proxyaddress="http://MYPROXYHERE:8080" bypassonlocal="True"/>
</defaultProxy>
<settings>
<ipv6 enabled="true"/>
</settings>
</system.net>
I even tried running VS in admin mode as someone suggested in another thread, but Nuget doesn't work still.

Please report this issue on https://nuget.codeplex.com/ and provide as many details as you can. Thanks.

Related

VS 2015 Custom TFS Policy Error

We have some custom policies in TFS and are getting errors on the Pending Changes screen in VS 2015. The policies are working in VS 2013 and earlier.
'Microsoft.TeamFoundation.PowerTools.CheckinPolicies.ChangesetComments, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' is not registered
Any ideas?
Thanks!
The custom policies have to be compiled for the version of the .NET framework used by TFS 2015 / VS 2015.
I have also faced the same issue. But, installing TFS power tool solved my problem. What I have done was, Downloaded and installed TFS power tool for the Visual Studio version I'm using and restarted the machine. that's it the issue got resolved.
Had the same problem with VS2013. Installing TFS Power Tools and restarting machine resolved the problem.

Can't Sign into Visual Studio 2013

I have Visual Studio 2013. It was licensed under a Microsoft partners/MSDN subscription and became expired. I re subscribed and have been signed out, but everytime I try to sign in I get
The online service is not available. Please try again later.
Visual Studio online is indeed up and running, but I have tried uninstalling and reinstalling, resetting all VS settings and still I can't sign in under any circumstances.
I am stuck not able to do any work because of this bug. How can I reset everything about VS so I can get this working?
Change the Visual Studio proxy settings in
C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\devenv.exe.config
to
<system.net>
<defaultProxy useDefaultCredentials="true" enabled="true">
<proxy usesystemdefault="True" />
</defaultProxy>
<settings>
<ipv6 enabled="true"/>
</settings>
</system.net>

How do I make Visual Studio 2012 deploy the VSIX to Visual Studio 2010 experimental instance?

I have a Visual Studio addin that is opened with Visual Studio 2012. If I click F5 the addin is deployed to Visual Studio 2012 experimental instance and everything works fine. I want to see how the addin works in Visual Studio 2010 and it's be great if I could just have a VS2010 experimental instance started with the addin registered there.
I changed the manifest so that it reads
<Installation InstalledByMsi="false">
<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="[10.0,12.0]" />
<InstallationTarget Id="Microsoft.VisualStudio.Premium" Version="[10.0,12.0]" />
<InstallationTarget Id="Microsoft.VisualStudio.Ultimate" Version="[10.0,12.0]" />
</Installation>
and on the "Debug" tab of the project settings I changed the path to point to VS2010 devenv.exe
When I click F5 I get Visual Studio 2010 experimental instance running just fine, but my addin is not initialized - clearly it is not deployed there.
How can I have it deployed in this scenario?
When you build an extension, it's deployed into just one experimental hive for a single version of Visual Studio. Generally, it should target the same version you're building with, so if you want to try it in Visual Studio 2010, you should build your extension with Visual Studio 2010. If that doesn't work, you can try a command line build of your project with something like
msbuild /p:DeployExtension=true /p:VSSDKTargetPlatformVersion=10.0
where the "target platform version" specifies which version you want to target. That normally defaults to the SDK version.

how to open vs 2008 solution in vs2010

Please help me how can I open Visual Studio 2008 solution in Visual Studio 2010 and what changes I have to do here in web.config file.
<add assembly="CrystalDecisions.CrystalReports.Engine, Version=10.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
It is showing error in this line when I run the solution in VS2010

NetFx40_LegacySecurityPolicy in design-time mode

Is there any way to make legacy design-time code execute with NetFx40_LegacySecurityPolicy switched on?
More specificaly, is there any way to make DevExpress 8.2 winforms designer work in VisualStudio 2010?
I got errors due to this issue and found no help about design-time mode, just about run-time:
<runtime>
<NetFx40_LegacySecurityPolicy enabled="true"/>
</runtime>
How should I fix problems with winforms designer?
Just add this
<NetFx40_LegacySecurityPolicy enabled="true"/>
into your VS2010 DevEnv configuration file, you'll find it in C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\devenv.exe.config
There is a <runtime> section, just copy it at the first place.
I've had the same problem with DevExpress 8.2
If some people face the same problem while developing ASP.Net apps, they should add the Attribute to the Cassini config file placed in C:\Program Files (x86)\Common Files\microsoft shared\DevServer\10.0\WebDev.WebServer40.exe.config

Resources