martes, 22 de agosto de 2023

Converting .exe project to class library

 https://stackoverflow.com/questions/8524790/converting-exe-project-to-class-library


Project > Properties > Application tab, change Output type to "Class Library".

For the record, this isn't actually necessary. An EXE project works fine as an assembly reference. Assuming classes were declared public, something you might have to fix anyway to make them work in a library.

sábado, 12 de agosto de 2023

revisar si esta mount dispositivo

 mountpoint -q /mnt/externaldrive && echo "mounted" || mount /dev/sdb1 /mnt/externaldrive

jueves, 3 de agosto de 2023