Skip to content

Commit 6f80504

Browse files
committed
update readme #6
1 parent 77e3e52 commit 6f80504

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

.github/workflows/publish.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
branches:
66
- master
7-
- feat/building-blocks-nuget
87
pull_request:
98
types: [closed]
109
branches:

README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,33 @@ public class OutboxEntity
243243

244244
- Dapr provider
245245

246+
# Private `nuget` for NetCoreKit
247+
248+
Fork this repository!
249+
250+
Set global nuget for accessing in Visual Studio
251+
252+
```
253+
# edit C:\Users\<current user>\AppData\Roaming\NuGet\NuGet.Config
254+
255+
```
256+
257+
```xml
258+
<?xml version="1.0" encoding="utf-8"?>
259+
<configuration>
260+
<packageSources>
261+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
262+
<add key="github" value="https://nuget.pkg.github.com/thangchung/index.json" />
263+
</packageSources>
264+
<packageSourceCredentials>
265+
<github>
266+
<add key="Username" value="<your github username>" />
267+
<add key="ClearTextPassword" value="<Github Token>" />
268+
</github>
269+
</packageSourceCredentials>
270+
</configuration>
271+
```
272+
246273
# Sample pages
247274

248275
![](assets/products_screen.png)

0 commit comments

Comments
 (0)