Skip to content

Commit 139a7e1

Browse files
First dogfooder doc feedback (#105)
* Expand prereqs to include preview 7 * Use DOS-style quoting If you don't do this, in cmd shell, the single quotes can make their way into the nuget.config. * Explicitly mention Linux containers Otherwise, `docker load` in publish will fail. * Link to Microsoft docs on linux containers
1 parent 5877f68 commit 139a7e1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

docs/INTEGRATED-DEMO.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ You should expect it to shrink noticeably over time!
55

66
## Prerequisites
77

8-
* Docker should be running
8+
* [.NET SDK 7.0.100-preview.7](https://dotnet.microsoft.com/download/dotnet/7.0) or higher
9+
* Docker should be installed and running
10+
* On Windows, Docker must be [configured for Linux containers](https://docs.microsoft.com/virtualization/windowscontainers/quick-start/quick-start-windows-10-linux)
911
* You should have an environment variable called GITHUB_USERNAME, with your github username in it
1012
* You should have an environment variable called GITHUB_TOKEN, with a github [personal access token](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token) that has `read:packages` permissions.
1113

@@ -25,7 +27,7 @@ dotnet new nugetconfig
2527
# GITHUB_TOKEN environment variables being present, the token should have 'read:packages'
2628
# permissions. (replace the \ with ` if using powershell)
2729
dotnet nuget add source https://nuget.pkg.github.com/rainersigwald/index.json \
28-
--name rainer --username '%GITHUB_USERNAME%' --password '%GITHUB_TOKEN%' \
30+
--name rainer --username "%GITHUB_USERNAME%" --password "%GITHUB_TOKEN%" \
2931
--store-password-in-clear-text --configfile nuget.config
3032

3133
# add a reference to the package

0 commit comments

Comments
 (0)