C
C#6mo ago
Dylan

✅ Dotnet on Ubuntu

Hey! I would like to download C# onto my Ubuntu installation however, the terminal can't find any packages with the name 'dotnet-sdk-8.0'. I have tried looking on the MS docs but they tell me to do what I did which didn't work. Any ideas on how I can install it on Ubuntu? The image attahced is the file the tutorial told me to type: Types: deb URIs: https://packages.microsoft.com/ubuntu/22.04/prod/ Suites: jammy Components: main Architectures: amd64 Signed-By: /etc/apt/keyrings/microsoft.gpg
No description
4 Replies
phetoush
phetoush6mo ago
if you still haven't solved it yet, this post worked for me https://stackoverflow.com/questions/77498786/unable-to-locate-package-dotnet-sdk-8-0
Stack Overflow
Unable to locate package dotnet-sdk-8.0
I've moved of my applications to .Net 8 and I use ubuntu 22.04.3 LTS VPS to host my web applications. I'm trying to install .net 8 on the VPS but I can't I've tried the Scripted install by microsof...
Dylan
Dylan6mo ago
I have tried it but it wouldn't work, but thanks for trying tho
phetoush
phetoush6mo ago
have you tried installing dotnet 7?
Dylan
Dylan6mo ago
I tried 6.0 and it also failed ^close
Want results from more Discord servers?
Add your server
More Posts
Updating Packages on old application problemsHello, I'm currently trying to upgrade some old apps I'm currently working on and I'm facing a weirRepo pattern - is it okay to call one repo from multiple services?Hi, pretty much the title summarizes it all. In one code base I am refactoring I am seeing a lot oferror MSB4006: A circular dependency exists in the target dependency graph in which the destinationHi how are things. The error is in Spanish, but the error is the same. Below I leave the structure oNpgsql 8.0 + EFCore 8.0 + JSON Colums with type List<T> not workingHello! I'm not sure if this is a bug or intended behavior, but I'm trying to have a `Patient` entitTrying to compile a script at runtimeim trying to compile a script at runtime using CSharpCompilation.Emit this is the script i want to I am trying to host .NET8 application in IISExpress but facing error.There is a duplicate 'system.web.extensions/scripting/scriptResourceHandler' section defined", this How can i create .exe file?Hello, I have the source code of an application and would like to create the .exe file to run and tePreventing TextBlock from getting deletedI'm using a RichTextBox and setting some inline as TextBlock but the user is able to delete that texNull Reference error but it's not null?System.NullReferenceException: 'Object reference not set to an instance of an object.' Typically yeC++ struct initializing in C#in C++, we can do this - ```cpp struct Foo { int A; int B; }; Foo a = { 5, 7 }; std::cout << a.