Skip to content

Commit 254da35

Browse files
committed
Fixed: Loading .sln picked -rc1 from nuget.org, instead of dev feed
1 parent 8c85282 commit 254da35

File tree

21 files changed

+300
-40
lines changed

21 files changed

+300
-40
lines changed
Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
This file exists for `cf push`. The file from the repository root is used on solution build.
4+
-->
25
<configuration>
36
<packageSources>
4-
<add key="SteeltoeDev" value="https://pkgs.dev.azure.com/dotnet/Steeltoe/_packaging/ci/nuget/v3/index.json" />
5-
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
7+
<clear />
8+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
9+
<add key="SteeltoeCI" value="https://pkgs.dev.azure.com/dotnet/Steeltoe/_packaging/ci/nuget/v3/index.json" />
610
</packageSources>
11+
<packageSourceMapping>
12+
<packageSource key="nuget.org">
13+
<package pattern="*" />
14+
</packageSource>
15+
<packageSource key="SteeltoeCI">
16+
<package pattern="Steeltoe.*" />
17+
</packageSource>
18+
</packageSourceMapping>
719
</configuration>
Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
This file exists for `cf push`. The file from the repository root is used on solution build.
4+
-->
25
<configuration>
36
<packageSources>
4-
<add key="SteeltoeDev" value="https://pkgs.dev.azure.com/dotnet/Steeltoe/_packaging/ci/nuget/v3/index.json" />
5-
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
7+
<clear />
8+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
9+
<add key="SteeltoeCI" value="https://pkgs.dev.azure.com/dotnet/Steeltoe/_packaging/ci/nuget/v3/index.json" />
610
</packageSources>
11+
<packageSourceMapping>
12+
<packageSource key="nuget.org">
13+
<package pattern="*" />
14+
</packageSource>
15+
<packageSource key="SteeltoeCI">
16+
<package pattern="Steeltoe.*" />
17+
</packageSource>
18+
</packageSourceMapping>
719
</configuration>
Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
This file exists for `cf push`. The file from the repository root is used on solution build.
4+
-->
25
<configuration>
36
<packageSources>
4-
<add key="SteeltoeDev" value="https://pkgs.dev.azure.com/dotnet/Steeltoe/_packaging/ci/nuget/v3/index.json" />
5-
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
7+
<clear />
8+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
9+
<add key="SteeltoeCI" value="https://pkgs.dev.azure.com/dotnet/Steeltoe/_packaging/ci/nuget/v3/index.json" />
610
</packageSources>
11+
<packageSourceMapping>
12+
<packageSource key="nuget.org">
13+
<package pattern="*" />
14+
</packageSource>
15+
<packageSource key="SteeltoeCI">
16+
<package pattern="Steeltoe.*" />
17+
</packageSource>
18+
</packageSourceMapping>
719
</configuration>

Connectors/src/MySql/nuget.config

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
This file exists for `cf push`. The file from the repository root is used on solution build.
4+
-->
25
<configuration>
36
<packageSources>
4-
<add key="SteeltoeDev" value="https://pkgs.dev.azure.com/dotnet/Steeltoe/_packaging/ci/nuget/v3/index.json" />
5-
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
7+
<clear />
8+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
9+
<add key="SteeltoeCI" value="https://pkgs.dev.azure.com/dotnet/Steeltoe/_packaging/ci/nuget/v3/index.json" />
610
</packageSources>
11+
<packageSourceMapping>
12+
<packageSource key="nuget.org">
13+
<package pattern="*" />
14+
</packageSource>
15+
<packageSource key="SteeltoeCI">
16+
<package pattern="Steeltoe.*" />
17+
</packageSource>
18+
</packageSourceMapping>
719
</configuration>
Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
This file exists for `cf push`. The file from the repository root is used on solution build.
4+
-->
25
<configuration>
36
<packageSources>
4-
<add key="SteeltoeDev" value="https://pkgs.dev.azure.com/dotnet/Steeltoe/_packaging/ci/nuget/v3/index.json" />
5-
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
7+
<clear />
8+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
9+
<add key="SteeltoeCI" value="https://pkgs.dev.azure.com/dotnet/Steeltoe/_packaging/ci/nuget/v3/index.json" />
610
</packageSources>
11+
<packageSourceMapping>
12+
<packageSource key="nuget.org">
13+
<package pattern="*" />
14+
</packageSource>
15+
<packageSource key="SteeltoeCI">
16+
<package pattern="Steeltoe.*" />
17+
</packageSource>
18+
</packageSourceMapping>
719
</configuration>
Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
This file exists for `cf push`. The file from the repository root is used on solution build.
4+
-->
25
<configuration>
36
<packageSources>
4-
<add key="SteeltoeDev" value="https://pkgs.dev.azure.com/dotnet/Steeltoe/_packaging/ci/nuget/v3/index.json" />
5-
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
7+
<clear />
8+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
9+
<add key="SteeltoeCI" value="https://pkgs.dev.azure.com/dotnet/Steeltoe/_packaging/ci/nuget/v3/index.json" />
610
</packageSources>
11+
<packageSourceMapping>
12+
<packageSource key="nuget.org">
13+
<package pattern="*" />
14+
</packageSource>
15+
<packageSource key="SteeltoeCI">
16+
<package pattern="Steeltoe.*" />
17+
</packageSource>
18+
</packageSourceMapping>
719
</configuration>
Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
This file exists for `cf push`. The file from the repository root is used on solution build.
4+
-->
25
<configuration>
36
<packageSources>
4-
<add key="SteeltoeDev" value="https://pkgs.dev.azure.com/dotnet/Steeltoe/_packaging/ci/nuget/v3/index.json" />
5-
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
7+
<clear />
8+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
9+
<add key="SteeltoeCI" value="https://pkgs.dev.azure.com/dotnet/Steeltoe/_packaging/ci/nuget/v3/index.json" />
610
</packageSources>
11+
<packageSourceMapping>
12+
<packageSource key="nuget.org">
13+
<package pattern="*" />
14+
</packageSource>
15+
<packageSource key="SteeltoeCI">
16+
<package pattern="Steeltoe.*" />
17+
</packageSource>
18+
</packageSourceMapping>
719
</configuration>
Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
This file exists for `cf push`. The file from the repository root is used on solution build.
4+
-->
25
<configuration>
36
<packageSources>
4-
<add key="SteeltoeDev" value="https://pkgs.dev.azure.com/dotnet/Steeltoe/_packaging/ci/nuget/v3/index.json" />
5-
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
7+
<clear />
8+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
9+
<add key="SteeltoeCI" value="https://pkgs.dev.azure.com/dotnet/Steeltoe/_packaging/ci/nuget/v3/index.json" />
610
</packageSources>
11+
<packageSourceMapping>
12+
<packageSource key="nuget.org">
13+
<package pattern="*" />
14+
</packageSource>
15+
<packageSource key="SteeltoeCI">
16+
<package pattern="Steeltoe.*" />
17+
</packageSource>
18+
</packageSourceMapping>
719
</configuration>

Connectors/src/Redis/nuget.config

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
This file exists for `cf push`. The file from the repository root is used on solution build.
4+
-->
25
<configuration>
36
<packageSources>
4-
<add key="SteeltoeDev" value="https://pkgs.dev.azure.com/dotnet/Steeltoe/_packaging/ci/nuget/v3/index.json" />
5-
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
7+
<clear />
8+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
9+
<add key="SteeltoeCI" value="https://pkgs.dev.azure.com/dotnet/Steeltoe/_packaging/ci/nuget/v3/index.json" />
610
</packageSources>
11+
<packageSourceMapping>
12+
<packageSource key="nuget.org">
13+
<package pattern="*" />
14+
</packageSource>
15+
<packageSource key="SteeltoeCI">
16+
<package pattern="Steeltoe.*" />
17+
</packageSource>
18+
</packageSourceMapping>
719
</configuration>
Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
This file exists for `cf push`. The file from the repository root is used on solution build.
4+
-->
25
<configuration>
36
<packageSources>
4-
<add key="SteeltoeDev" value="https://pkgs.dev.azure.com/dotnet/Steeltoe/_packaging/ci/nuget/v3/index.json" />
5-
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
7+
<clear />
8+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
9+
<add key="SteeltoeCI" value="https://pkgs.dev.azure.com/dotnet/Steeltoe/_packaging/ci/nuget/v3/index.json" />
610
</packageSources>
11+
<packageSourceMapping>
12+
<packageSource key="nuget.org">
13+
<package pattern="*" />
14+
</packageSource>
15+
<packageSource key="SteeltoeCI">
16+
<package pattern="Steeltoe.*" />
17+
</packageSource>
18+
</packageSourceMapping>
719
</configuration>

0 commit comments

Comments
 (0)