Skip to content

Commit 2e0702c

Browse files
committed
instead of lib_nupkgs, reference nuget.sourcegear.com
1 parent 03446cc commit 2e0702c

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

.github/workflows/dotnet.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ jobs:
3232
run: dotnet workload install tvos
3333
- name: Install T4
3434
run: dotnet tool install --global dotnet-t4
35+
- name: Import password for packages
36+
env:
37+
SG_NUGET_TOKEN: ${{ secrets.SG_NUGET_TOKEN }}
3538
- name: Build
3639
run: |
3740
cd SQLitePCL.raw/build

Directory.Build.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<Copyright>Copyright 2014-2025 SourceGear, LLC</Copyright>
55
<Company>SourceGear</Company>
66
<Authors>Eric Sink</Authors>
7-
<Version>3.0.0-pre20250717091040</Version>
8-
<AssemblyVersion>3.0.0.2754</AssemblyVersion>
9-
<FileVersion>3.0.0.2754</FileVersion>
7+
<Version>3.0.0-pre20250722110806</Version>
8+
<AssemblyVersion>3.0.0.2759</AssemblyVersion>
9+
<FileVersion>3.0.0.2759</FileVersion>
1010
<Description>SQLitePCLRaw is a Portable Class Library (PCL) for low-level (raw) access to SQLite</Description>
1111
<ProviderLangVersion>10.0</ProviderLangVersion>
1212
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>

nuget.config

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,17 @@
33
<packageSources>
44
<add key="mysqlitepclraw" value="./nupkgs" />
55
<add key="sqlite_lib_packages" value="./lib_nupkgs" />
6+
<add key="sourcegear_see" value="https://nuget.sourcegear.com/see/nuget/index.json" />
7+
<add key="sourcegear_main" value="https://nuget.sourcegear.com/main/nuget/index.json" />
68
</packageSources>
9+
<packageSourceCredentials>
10+
<sourcegear_see>
11+
<add key="Username" value="sqlitepclraw_build" />
12+
<add key="ClearTextPassword" value="%SG_NUGET_TOKEN%" />
13+
</sourcegear_see>
14+
<sourcegear_main>
15+
<add key="Username" value="sqlitepclraw_build" />
16+
<add key="ClearTextPassword" value="%SG_NUGET_TOKEN%" />
17+
</sourcegear_main>
18+
</packageSourceCredentials>
719
</configuration>

0 commit comments

Comments
 (0)