Can I become a programmer in Germany without a degree?

Hello! I'm looking for advice from people who work in the industry or have relevant experience. I'm a foreigner living and working in Germany. My first degree isn't related to IT. I'm currently self-studying programming to completely change industries. It's something I'm truly passionate about. I understand that in Germany, many fields have strict requirements…

Why doesn't the .exe file work in other folders?

Hello, I just created a "Hello World" app in Visual Studio using Visual Basic. C:\Users\name\source\repos\WinFormsApp1\WinFormsApp1\bin\Release\net6.0-windows C:\Users\name\source\repos\WinFormsApp1\WinFormsApp1\bin\Debug\net6.0-windows There's an .exe file in each folder that works when I open it. If I copy the .exe to another folder and run it, it doesn't open. What do I have to do to make it work everywhere? Greetings…

Why does the Docker build of my C# project fail?

I'm currently trying to build my C# project with Docker. I'm building from the repo root context. The Dockerfile is located in the Gateway.WebApi subfolder. Unfortunately the build fails with an error: error MSB3030: Could not copy the file "/Jwt.Service.Shared/Configurations/appsettings.json" because it was not found This is my Dockerfile: FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base WORKDIR /app…

How do I create a local user using a PowerShell script?

I would like to create a form for this purpose. I created the following: Add-Type -AssemblyName System.Windows.Forms Add-Type -AssemblyName System.Drawing $form = New-Object System.Windows.Forms.Form $form.Text = 'lokaler Benutzer' $form.Size = New-Object System.Drawing.Size(300,200) $form.StartPosition = 'CenterScreen' $okButton = New-Object System.Windows.Forms.Button $okButton.Location = New-Object System.Drawing.Point(75,120) $okButton.Size = New-Object System.Drawing.Size(75,23) $okButton.Text = 'OK' $okButton.DialogResult = [System.Windows.Forms.DialogResult]::OK $form.AcceptButton =…

How can authorization be implemented in Dotnet 6?

Hey I'm trying to program a website in dotnet 6 MVC with friends. The question is how I can implement authorization. We don't separate client and server. We only have one dotnet folder. I want the AuthenticationController (View: Login) to forward the login data to the DashboardController (View: Dashboard) if the login data matches. This…

Why ProjectLib / Solution and ProjectFile for MS C# via CLI?

Hello everyone As I mentioned, I'm currently developing C# via dotNet using VS Code. Now I'm trying to move away from Visual Studio and am currently developing, or rather, trying to do so, via the CLI. However, I'm already having major problems creating the folder structure (I'm a relative beginner). With Visual Studio, I don't…

Why work with VS Code and not Visual Studio?

Hello everyone I'm currently taking a TDD C# course. The whole thing is a bit confusing. I'm used to working only with Visual Studio (locally). I then sync everything nicely with GitHub. In any case, the "teacher" in the course uses VS Code as the development environment/editor. He's also setting up a Vagrant environment. I…