DEV Community

Discussion on: How to update my .NET C# compiler (csc)?

 
baenencalin profile image
Calin Baenen

So, how do I actually use any of that shit?

Primarily;
What happens if I don't make/have a csproj file?
Do I have to do anything with the file when it's generated?
Why the fuck is it always more complicated than just a language and the compiler/interpreter, why is all this bullshit here, when I just want to do something simple (similar concept applies to Java)?

Thread Thread
 
baenencalin profile image
Calin Baenen • Edited

I just generated whatever this bullshit is.

<Project Sdk="Microsoft.NET.Sdk">

    <PropertyGroup>
        <OutputType>Exe</OutputType>
        <TargetFramework>net5.0</TargetFramework>
    </PropertyGroup>

</Project>
Enter fullscreen mode Exit fullscreen mode

LIKE, WHAT EVEN THE FUCK DOES THAT MEAN!?!?