Forum Widgets
Latest Discussions
Android SDK Manager - Visual Studio 2022
Today, I opened up Visual Studio 2022 and went to Tools -> Android -> Android SDK Manager. I noticed nothing shows up past Android 8.1 (oreo), is this by design or is something broken ? How do I install android sdk's > 8.1 ?SolvedDMcCollough1795Nov 22, 2021Copper Contributor55KViews0likes8CommentsReview GitHub Pull Requests in Visual Studio 2022
Used the GitHub Extension for Visual Studio 2019 to review Pull Requests. Now it looks like that extension is included in VS 2022. However, when going to 'Git/GitHub/View Pull Requests' it redirects me to the browser. Do you know how you can review pull requests in VS 2022 ?CristianG31Nov 23, 2021Copper Contributor9.9KViews7likes5CommentsVisual Studio and problems with custom controls
Hello @all, to first: sorry for my bad english ! And now to my problem: I have for some time with VisualStudio 2019 the following problem: In a project have custom controls. For example, a custom button that inherited from System.Windows.Forms. Public Class clsButton Inherits System.Windows.Controls.Button .... or Public Class clsMasterForm Inherits System.Windows.Forms.Form ... Everything works, the "new" button works great, the new properties are active and can be used without any problems. Suddenly, from one close of the project to the next open, VS2019 can't find the new controls. Also from the toolbox (for WinForms) these controls have disappeared. If I now exclude these controls from the project, and after a VS2019 restart, add them back to the project, everything works again. The controls are in the toolbox until the next time. Without that I can see any pattern/regularity. (Environment: W10 current patch level, VS2019 current patch level, 64 GB memory, in an ADS). Do any of you know what is happening here ? As I said it is rare and sporadic. I also had this under VS2010 (on W7 PC). Oh well, with VS2022 I could not test yet if it occurs there too. Thanks a lot SHSachsenHessiNov 21, 2022Copper Contributor2KViews0likes4CommentsMSB4011 warnings
Got a project with 2 of these warnings and it seems there's nothing I can do in VS to fix these. Where does it come from and how to solve it ? All I see when showing all files is a Imports folder with subfolders that seems to be links and there's nothing I can do with them in this project. The weird part is that from 12 projects in my solutions only this project exhibit this issue. I wish I could remove these warnings or know how to fix them Severity Code Description Project File Line Suppression State Warning MSB4011 "C:\Program Files\dotnet\sdk\8.0.100\Sdks\Microsoft.NET.Sdk.Publish\Sdk\Sdk.props" cannot be imported again. It was already imported at "C:\Program Files\dotnet\sdk\8.0.100\Sdks\Microsoft.NET.Sdk.Worker\targets\Microsoft.NET.Sdk.Worker.props (50,3)". This is most likely a build authoring error. This subsequent import will be ignored. waInvoiceSystem 1 Severity Code Description Project File Line Suppression State Warning MSB4011 "C:\Program Files\dotnet\sdk\8.0.100\Sdks\Microsoft.NET.Sdk.Publish\Sdk\Sdk.targets" cannot be imported again. It was already imported at "C:\Program Files\dotnet\sdk\8.0.100\Sdks\Microsoft.NET.Sdk.Worker\targets\Microsoft.NET.Sdk.Worker.targets (24,3)". This is most likely a build authoring error. This subsequent import will be ignored. waInvoiceSystem 1SolvedMarc RousselNov 29, 2023Iron Contributor1.4KViews0likes3CommentsForm1 Rename Problem in Visual Studio
If you create a Windows Forms project in Visual Studio 2022, it creates a Form1.cs file, a Form1.cs [Design] form, and a Form1.Designer.cs file. You can then drag items from the toolbox onto the form or select the form and using the form properties window to add event handlers like OnPaintForm1, and the Designer will handle those actions appropriately. However, if after creating the project, you immediately rename Form1.cs and its counterparts to, say, MyForm.cs, etc. and then drag items from the toolbox to the form or select the form and use the properties window to add event handlers, the Designer does not appropriately update the renamed form files or form design. What I have to do is use the original Form1 files, add the tools and event handlers, and build the application. After that, I can rename the files and they still work. Is there a way to fix the problem of renaming first?Solvednick1941May 02, 2023Copper Contributor1.6KViews0likes3Commentsfont size in the debugger watch1 to 4 window
Hi, How to increase the size of the watch windows, in the debugger. It's just horrible, such tiny size. - I can increase the size of the editor, impossible to find where I can increase the size of this window. I have the same question with the output windows, with errors of compilation Tx for your helpcrazyfroggyNov 13, 2022Copper Contributor941Views0likes3CommentsUWP SDK version issue (Your project does not reference "UAP,Version)
In UWP apps, does anyone know how to get rid of the following errors permanently? This happens when I switch between GIT branches where the source code is targeted to different Windows SDK versions. Your project does not reference "UAP,Version=v10.0.18362" framework. Add a reference to "UAP,Version=v10.0.18362" in the "frameworks" section of your project.json and then re-run NuGet restore. BoardPACWinAppBO NOTE: By removing bin and obj folders + cleaning the project + close and reopening VS randomly fix this issue. But this is not convenient. I'm using the latest version of VS 2022.SolvedsurensalukaFeb 08, 2022Copper Contributor3.5KViews1like3CommentsHow to install android apps on the computer by downloading apk files form internet in window 11?
I know how to install android apps in computer but there is a problem disturbing me. It can only be done in window 11. Steps to do it-download windows subsystem for android form Microsoft store>Open windows subsystem for android>turn on developer mod>get the Ip address below the developer mode settings or the Ip address in the developer mode turn on off>Turn on Visualization Technology form your BIOS>download SKD platform tools -https://developer.android.com/studio/releases/platform-tools >go to your download folder and extract this developer file and name it as adb and save it>open the adb folder>open platform tools>click the tab at the top bottom where it shows the file location>type cmd>type adb connect and the IP address you got>it will connect but it will show you that it is not connected>keep typing adb connect and your IP address and it will show already to connected to this and this>download a apk file and open the cmd again form the same process of platform tools>go to download folder>cops as path of the apk file>go to cmd>type adb install and paste the path of the apk> it should get installed but the problem showing is adb: error.Ravi_777Nov 26, 2021Copper Contributor2.4KViews0likes3CommentsUsing an AI Agent to Automate Jira Updates, PR Reviews, and Code Deployment
In modern software development, teams juggle multiple tools: Jira for project management, GitHub/GitLab for code collaboration, and CI/CD pipelines for deployment. Developers often spend significant time switching contexts—updating Jira tickets, reviewing pull requests, and triggering deployments. An AI agent can automate much of this workflow, acting as a “digital teammate” that fetches Jira data, helps review PRs, and pushes deployments. In this blog, we’ll explore how to set it up step by step. https://dellenny.com/supercharging-your-workflow-using-an-ai-agent-to-automate-jira-updates-pr-reviews-and-code-deployment/82Views0likes1CommentAny recommended UI/UX framework?
Hi, I am new to .net. May I know if there is any UI/UX framework that is good for .net webpage with search criteria? I would like to have a textbox with the following input methods: - Exact text match - Wildchars * - Copy and paste the list - Enter number range Thank you!TinaAvtJun 04, 2024Copper Contributor331Views0likes1Comment