Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
dotnet: amend dev-cert script in README
  • Loading branch information
sliekens authored Jun 20, 2024
commit 87cafe13ebb65c22d24ec522f63da0deff542ef4
4 changes: 3 additions & 1 deletion src/dotnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,10 @@ The contents of `.devcontainer/setup-dotnet-dev-cert.sh`:
# Change ownership of the .dotnet directory to the vscode user (to avoid permission errors)
sudo chown -R vscode:vscode /home/vscode/.dotnet

# Export the ASP.NET Core HTTPS development certificate to a PEM file
# If there is no development certificate, this command will generate a new one
dotnet dev-certs https

# Export the ASP.NET Core HTTPS development certificate to a PEM file
sudo -E dotnet dev-certs https --export-path /usr/local/share/ca-certificates/dotnet-dev-cert.crt --format pem

# Add the PEM file to the trust store
Expand Down