VisualStudio | GitHub Extension for Visual Studio
kandi X-RAY | VisualStudio Summary
kandi X-RAY | VisualStudio Summary
The GitHub Extension for Visual Studio provides GitHub integration in Visual Studio 2015 and newer. Most of the extension UI lives in the Team Explorer pane, which is available from the View menu. Official builds of this extension are available at the Visual Studio Marketplace.
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of VisualStudio
VisualStudio Key Features
VisualStudio Examples and Code Snippets
Community Discussions
Trending Discussions on VisualStudio
QUESTION
Some time ago, a Visual Studio update added a hot reload feature. It be handy, but it also can be annoying especially when you're testing and you don't want to reset the current state of the front end. Visual Studio injects the script whether you're debugging or not.
How can hot reload be disabled? My Visual Studio version is 16.10.3
...ANSWER
Answered 2021-Aug-27 at 14:23You can change this feature here:
Tools > Options > Projects and Solutions > ASP.NET Core > Auto build and refresh option
Options to automatically build and refresh the browser if the web server is running when changes are made to the project.
Your options in this dropdown are the following:
- None
- Auto build on browser request (IIS only)
- Refresh browser after build
- Auto build and refresh browser after saving changes
Also note my version of VS is 16.11.1
.
QUESTION
When i tried to install truffle i got these errors :-
I have installed Node.js earlier and also i have pip installed.
...ANSWER
Answered 2022-Jan-26 at 17:42Here are some references that might help:
Try installing Truffle via PowerShell in Admin mode (very important that you're in Admin mode)
You'll need to allow scripts to run as an Admin in PowerShell. To do this, here are some references in the threads in Stack Overflow:
Enable Execution of PowerShell Scripts
I ran the command Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Bypass -Force
in PowerShell to get this to work, but please reference the threads above before doing this.
QUESTION
My app archive perfectly two weeks age (was the latest update I made).
After some minor changes in the flutter code (I did not add any packages or something), I am trying to archive again and I am getting some estrange errors and I have no clue where are coming from (those are from libraries, so no real changes on it). I am able to run it on the emulator and also I am able to build without any problem. I just can not archive.
This is the error:
...ANSWER
Answered 2022-Mar-20 at 09:40This is an issue that occurs in version 13.3 of Xcode. In Xcode 13.3, if you have a code that uses UI_USER_INTERFACE_IDIOM(), you will get an "Out of Memory" error when you run Archive. Changing "UI_USER_INTERFACE_IDIOM()" to "UIDevice.current.userInterfaceIdiom" resolves the error.
Currently, we have the following solutions.
- Modify the code,
- Downgrade to Xcode 13.2.1
- Wait for Apple to modify Xcode
References
QUESTION
I have downloaded and installed Visual Studio 2022. Then after click on modify
Now, I want to create SSIS package, for this I have started VS22 and in "manage extensions" when I try to find Microsoft SSIS, I am unable to find.
For this, I have downloaded SSIS from market place:
but when I try to install this it throws below error:
...ANSWER
Answered 2022-Feb-15 at 15:08As @Larnu commented, Microsoft SQL Server business intelligence extensions are still not available for Visual Studio 2022.
Many people are still confused about the difference between SQL Server Data Tools used to create SQL databases projects and the business intelligence suite:
Using Visual Studio 2022, currently only the SQL Server Data Tools required to create database projects are available. As mentioned in the official documentation:
The core SSDT functionality to create database projects has remained integral to Visual Studio. The extensions for Analysis Services, Integration Services, and Reporting Services projects are not available for Visual Studio 2022 at this time.
You can note that in the Visual Studio marketplace only Visual Studio 2019 is mentioned:
QUESTION
I get this Error when I try to install Pyodbc , I have already install visual studio and I have Microsoft Visual C++ 12 , 15-19 in my machine but still its giving this error.
...ANSWER
Answered 2021-Nov-12 at 13:38The current release of pyodbc (4.0.32) does not have pre-built wheel files for Python 3.10. The easiest way to get it installed at the moment is to download the appropriate wheel from
https://www.lfd.uci.edu/~gohlke/pythonlibs/#pyodbc
and then install it. For example, if you are running 64-bit Python then you would download the 64-bit wheel and use
QUESTION
ANSWER
Answered 2022-Jan-31 at 04:58You have to install Visual Studio Community 2022 as well as Visual Studio Code. And when installing Visual Studio Community, you have to install desktop development with C++ with some optional packages.
QUESTION
I have run in to an odd problem after converting a bunch of my YAML pipelines to use templates for holding job logic as well as for defining my pipeline variables. The pipelines run perfectly fine, however I get a "Some recent issues detected related to pipeline trigger." warning at the top of the pipeline summary page and viewing details only states: "Configuring the trigger failed, edit and save the pipeline again."
The odd part here is that the pipeline works completely fine, including triggers. Nothing is broken and no further details are given about the supposed issue. I currently have YAML triggers overridden for the pipeline, but I did also define the same trigger in the YAML to see if that would help (it did not).
I'm looking for any ideas on what might be causing this or how I might be able to further troubleshoot it given the complete lack of detail that the error/warning provides. It's causing a lot of confusion among developers who think there might be a problem with their builds as a result of the warning.
Here is the main pipeline. the build repository is a shared repository for holding code that is used across multiple repos in the build system. dev.yaml contains dev environment specific variable values. Shared holds conditionally set variables based on the branch the pipeline is running on.
...ANSWER
Answered 2021-Aug-17 at 14:58I think I may have figured out the problem. It appears that this is related to the use of conditionals in the variable setup. While the variables will be set in any valid trigger configuration, it appears that the proper values are not used during validation and that may have been causing the problem. Switching my conditional variables to first set a default value and then replace the value conditionally seems to have fixed the problem.
It would be nice if Microsoft would give a more useful error message here, something to the extent of the values not being found for a given variable, but adding defaults does seem to have fixed the problem.
QUESTION
I just did a fresh install of windows to clean up my computer, moved everything over to my D drive and installed Python through Windows Store (somehow it defaulted to my C drive, so I left it there because Pycharm was getting confused about its location), now I'm trying to pip install the python-docx module for the first time and I'm stuck. I have a recent version of Microsoft C++ Visual Build Tools installed. Excuse me for any irrelevant information I provided, just wishing to be thorough. Here's what's returning in command:
...ANSWER
Answered 2022-Feb-06 at 17:04One of the dependencies for python-docx
is lxml
. The latest stable version of lxml
is 4.6.3, released on March 21, 2021. On PyPI there is no lxml wheel for 3.10, yet. So it try to compile from source and for that Microsoft Visual C++ 14.0 or greater is required, as stated in the error.
However you can manually install lxml
, before install python-docx
. Download and install unofficial binary from Gohlke
Alternatively you can use pipwin to install it from Gohlke. Note there may still be problems with dependencies for lxml
.
Of course, you can also downgrade to python3.9.
EDIT: As of 14 Dec 2021 the latest lxml version 4.7.1 supports python 3.10
QUESTION
I've started receiving this error recently when trying to publish my Visual Studio 2019 extension. Best I can tell the manifest file isn't corrupted [this has been uploading for years now], this fails both with the VsixPublisher.exe and when I manually try to upload the VSIX to the MSFT marketplace. There is a schema warning on the internalName ('codestream-vs') but we've had that for years. Here is the error:
VSSDK: error VsixPub0029 : An error occurred while communicating with the marketplace: UploadFile: The package contains an invalid VSIX manifest file. This VSIX does not apply to any product installed on this machine. The problem could be that the VSIX manifest's format is not recognized, or that the manifest has been corrupted.
https://github.com/TeamCodeStream/codestream/blob/master/vs/publishManifest.json https://github.com/TeamCodeStream/codestream/blob/master/vs/src/CodeStream.VisualStudio/source.extension.vsixmanifest
...ANSWER
Answered 2022-Jan-28 at 08:00The VS Marketplace team has resolved the issue. Please try again.
QUESTION
I'm attempting to scaffold the Identity pages for a new .NET 6.0 project (created from the ASP.NET Core MVC template). When I run the following command I get the error "path is empty" (I also included the build command output to show the project builds successfully).
...ANSWER
Answered 2022-Jan-20 at 15:49As mentioned by the comment on the question and on this site
https://github.com/dotnet/Scaffolding/issues/1713
Removing the nuget package Microsoft.AspNetCore.Identity
from all projects in the relevant solution solves the problem.
In many cases (also in mine) its enough to reference the nuget package Microsoft.AspNetCore.Identity.EntityFrameworkCore
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install VisualStudio
Visual Studio 2019 .NET desktop development workload .NET Core cross platform development workload Visual Studio extension development workload
Clone the repository and its submodules.
Register a new developer application in your profile
Create an environment variable GitHubVS_ClientID with your Client ID
Create an environment variable GitHubVS_ClientSecret with your Client Secret
Build GitHubVS.sln using Visual Studio 2019.
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page