Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Add the devcontainer feature to your `devcontainer.json` and everything works au
```json
{
"features": {
"ghcr.io/dnegstad/devcontainer-dev-certs/devcontainer-dev-certs:latest": {}
"ghcr.io/dnegstad/devcontainer-dev-certs/devcontainer-dev-certs:1": {}
}
}
```
Expand All @@ -33,7 +33,7 @@ Add the dev container feature to your project's `devcontainer.json`:
```json
{
"features": {
"ghcr.io/dnegstad/devcontainer-dev-certs/devcontainer-dev-certs:latest": {}
"ghcr.io/dnegstad/devcontainer-dev-certs/devcontainer-dev-certs:1": {}
}
}
```
Expand Down Expand Up @@ -131,7 +131,7 @@ test/
```json
{
"features": {
"ghcr.io/dnegstad/devcontainer-dev-certs/devcontainer-dev-certs": {
"ghcr.io/dnegstad/devcontainer-dev-certs/devcontainer-dev-certs:1": {
"trustNss": true
}
}
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"id": "devcontainer-dev-certs",
"version": "1.0.1",
"version": "1.0.2-pre",
"name": "Dev Container Development Certificates",
"description": "Enables trusted HTTPS in Dev Containers by preparing certificate trust infrastructure and installing companion VS Code extensions that automatically generate, trust, and transfer ASP.NET and Aspire compatible development certificates from the host machine. Add to your devcontainer.json: \"features\": { \"ghcr.io/dnegstad/devcontainer-dev-certs/devcontainer-dev-certs\": {} }",
"description": "Enables trusted HTTPS in Dev Containers by preparing certificate trust infrastructure and installing companion VS Code extensions that automatically generate, trust, and transfer ASP.NET and Aspire compatible development certificates from the host machine. Add to your devcontainer.json: \"features\": { \"ghcr.io/dnegstad/devcontainer-dev-certs/devcontainer-dev-certs:1\": {} }",
"documentationURL": "https://github.com/dnegstad/devcontainer-dev-certs",
"keywords": [
"dotnet",
Expand Down
2 changes: 1 addition & 1 deletion src/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devcontainer-dev-certs/shared",
"version": "1.0.1",
"version": "1.0.2-pre",
"private": true,
"main": "./src/index.ts",
"types": "./src/index.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/vscode-ui-extension/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Add the Dev Container feature to your project's `devcontainer.json` (not to any
```json
{
"features": {
"ghcr.io/dnegstad/devcontainer-dev-certs/devcontainer-dev-certs": {}
"ghcr.io/dnegstad/devcontainer-dev-certs/devcontainer-dev-certs:1": {}
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion src/vscode-ui-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "Dev Container Dev Certificates (Host)",
"description": "Generates and trusts ASP.NET and Aspire compatible HTTPS development certificates on the host machine for use in Dev Containers and remote environments.",
"icon": "images/dn_ui_extension_icon_256.png",
"version": "1.0.1",
"version": "1.0.2-pre",
"publisher": "dnegstad",
"license": "MIT",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions src/vscode-workspace-extension/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Add the Dev Container feature to your project's `devcontainer.json` (not to any
```json
{
"features": {
"ghcr.io/dnegstad/devcontainer-dev-certs/devcontainer-dev-certs": {}
"ghcr.io/dnegstad/devcontainer-dev-certs/devcontainer-dev-certs:1": {}
}
}
```
Expand Down Expand Up @@ -89,7 +89,7 @@ When using the Dev Container feature, these options are available:
```json
{
"features": {
"ghcr.io/dnegstad/devcontainer-dev-certs/devcontainer-dev-certs": {
"ghcr.io/dnegstad/devcontainer-dev-certs/devcontainer-dev-certs:1": {
"trustNss": false,
"sslCertDirs": "/etc/ssl/certs:/usr/lib/ssl/certs:/etc/pki/tls/certs:/var/lib/ca-certificates/openssl"
}
Expand Down
2 changes: 1 addition & 1 deletion src/vscode-workspace-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "Dev Container Dev Certificates (Remote)",
"description": "Receives and installs ASP.NET and Aspire compatible HTTPS development certificates inside Dev Containers and remote environments.",
"icon": "images/dn_workspace_extension_icon_256.png",
"version": "1.0.1",
"version": "1.0.2-pre",
"publisher": "dnegstad",
"license": "MIT",
"repository": {
Expand Down
Loading