Skip to content

Commit 5fddc87

Browse files
committed
fix(gitignore changed with squash): fix,breaking change not cause major
1 parent e296b88 commit 5fddc87

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,5 +151,5 @@ _Pvt_Extensions
151151
/LH.APIServices/appsettings.json
152152
/NotesWillMakeIntoReadme.md
153153
/Package.BlazorComponentLibrary/PackageSettings.props
154-
/nuget.config
154+
#/nuget.config
155155
/Package.BlazorComponentLibrary/PackageSettings.props

nuget.config

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<packageSources>
4+
<clear />
5+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
6+
<add key="TELBlazorComponentLibrarySource" value="%LocalPackagePath%" />
7+
<!--for ease initial do it as a git package qqqq-->
8+
<!--<add key="github" value="https://nuget.pkg.github.com/phil-nhs/index.json" />-->
9+
</packageSources>
10+
<packageSourceCredentials>
11+
<!--only needed in cicd qqqq-->
12+
<TELBlazorComponentLibrarySource>
13+
<add key="Username" value="%GITHUB_USERNAME%" />
14+
<!--cleartext for benefit of githum actions-->
15+
<add key="ClearTextPassword" value="%GITHUB_PACKAGES_TOKEN%" />
16+
</TELBlazorComponentLibrarySource>
17+
</packageSourceCredentials>
18+
<packageSourceMapping>
19+
<!-- Ensure that TELBlazorComponentLibrary.GitPageBlazorWasm comes from GitHub -->
20+
<packageSource key="TELBlazorComponentLibrarySource">
21+
<package pattern="TELBlazorComponentLibrary.GitPageBlazorWasm" />
22+
</packageSource>
23+
<!-- All other packages will be fetched from NuGet.org -->
24+
<packageSource key="nuget.org">
25+
<package pattern="*" />
26+
</packageSource>
27+
</packageSourceMapping>
28+
</configuration>

0 commit comments

Comments
 (0)