Skip to content

Instantly share code, notes, and snippets.

@Platonenkov
Created February 20, 2024 07:05
Show Gist options
  • Save Platonenkov/17dc581c89e64040c61dc40fc918e2a5 to your computer and use it in GitHub Desktop.
Save Platonenkov/17dc581c89e64040c61dc40fc918e2a5 to your computer and use it in GitHub Desktop.
run from dll on port

dotnet Server.dll --urls=http://localhost:5001/

@Platonenkov
Copy link
Author

Platonenkov commented Feb 20, 2024

wget https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb && \
sudo dpkg -i packages-microsoft-prod.deb && \
rm packages-microsoft-prod.deb 
sudo apt-get update && \
  sudo apt-get install -y dotnet-sdk-7.0
sudo apt-get update && \
  sudo apt-get install -y aspnetcore-runtime-7.0

sudo apt-get install -y dotnet-runtime-7.0 (alternative)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment