Skip to content

Instantly share code, notes, and snippets.

View AlejandroMFe's full-sized avatar

Alejandro AlejandroMFe

  • Chaco, Argentina
View GitHub Profile
@dougwaldron
dougwaldron / InstallSoftware.ps1
Last active April 13, 2025 18:26
Install software with winget / automate installation with PowerShell
# 1. Make sure the Microsoft App Installer is installed:
# https://www.microsoft.com/en-us/p/app-installer/9nblggh4nns1
# 2. Edit the list of apps to install.
# 3. Run this script as administrator.
Write-Output "Installing Apps"
$apps = @(
@{name = "7zip.7zip" },
@{name = "Axosoft.GitKraken" },
@{name = "Devolutions.RemoteDesktopManager" },
@n3dst4
n3dst4 / renaming.markdown
Last active January 13, 2025 16:46
How to rename Visual Studio solutions and projects

How to rename solutions and projects in Visual Studio

  1. Don't.

How to rename solutions and projects that were created in Visual Studio

  1. Close Visual Studio and don't open it again until I tell you. Visual Studio is not competent at renaming things.
  2. Assuming you're using git, clean the working folder to remove anything that's not in version control (this will help the search-and-replace step because it won't have to go through a bunch of generated files)

git clean -fdx