![]() |
The best way to compile a .sln file - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: Visual Basic & .NET Framework (https://sinister.ly/Forum-Visual-Basic-NET-Framework) +--- Thread: The best way to compile a .sln file (/Thread-The-best-way-to-compile-a-sln-file) |
The best way to compile a .sln file - vhirp - 12-28-2021 I was looking for a way to compile a .sln file on Debian, being that online resources are highly limited and/or outdated. I've already tried XBuild and installing VS on Wine but nothing was successful. RE: The best way to compile a .sln file - ConcernedCitizen - 12-28-2021 (12-28-2021, 03:43 PM)vhirp Wrote: I was looking for a way to compile a .sln file on Debian, being that online resources are highly limited and/or outdated. Wine is the issue. It has libraries that don't work half of the time. Why install a *nix OS just to install proprietary software? That kind of defeats the entire purpose of using it. The are other IDEs that are free and work completely on Linux without the use of sketchy warez. Nevertheless, the answer to your question is that you can open the file in the Visual Studio program where it was created as a settings file for a project. It's a file only usable with that program. You can, however use any other reasonably safe IDE or even notepad, to open and read the contents of it. RE: The best way to compile a .sln file - convector - 12-29-2021 (12-28-2021, 06:11 PM)vittring Wrote:(12-28-2021, 03:43 PM)vhirp Wrote: I was looking for a way to compile a .sln file on Debian, being that online resources are highly limited and/or outdated. I agree with what vittring says! Especially for the part "why install *nix OS just to install proprietary software". Instead of just hooking up Wine and wasting huge amounts of spaces just for the windows libraries, either you install a virtual machine emulator OR get another PC beside your current PC. It will make life easier and you wouldn't screw up your current linux os. |