File tree 5 files changed +42
-12
lines changed 5 files changed +42
-12
lines changed Original file line number Diff line number Diff line change 296
296
<Uri >https://github.com/dotnet/runtime</Uri >
297
297
<Sha >cf2938f44fc1494ae984c52a1568a03d51e513ca</Sha >
298
298
</Dependency >
299
- <Dependency Name =" Microsoft.DotNet.Arcade.Sdk" Version =" 6.0.0-beta.21329.1 " >
299
+ <Dependency Name =" Microsoft.DotNet.Arcade.Sdk" Version =" 6.0.0-beta.21357.3 " >
300
300
<Uri >https://github.com/dotnet/arcade</Uri >
301
- <Sha >695b2415681884b2afc316877af35018f78b52f5 </Sha >
301
+ <Sha >286d98094b830b8dad769542b2669cb1b75f7097 </Sha >
302
302
<SourceBuild RepoName =" arcade" ManagedOnly =" true" />
303
303
</Dependency >
304
- <Dependency Name =" Microsoft.DotNet.Build.Tasks.Installers" Version =" 6.0.0-beta.21329.1 " >
304
+ <Dependency Name =" Microsoft.DotNet.Build.Tasks.Installers" Version =" 6.0.0-beta.21357.3 " >
305
305
<Uri >https://github.com/dotnet/arcade</Uri >
306
- <Sha >695b2415681884b2afc316877af35018f78b52f5 </Sha >
306
+ <Sha >286d98094b830b8dad769542b2669cb1b75f7097 </Sha >
307
307
</Dependency >
308
- <Dependency Name =" Microsoft.DotNet.Build.Tasks.Templating" Version =" 6.0.0-beta.21329.1 " >
308
+ <Dependency Name =" Microsoft.DotNet.Build.Tasks.Templating" Version =" 6.0.0-beta.21357.3 " >
309
309
<Uri >https://github.com/dotnet/arcade</Uri >
310
- <Sha >695b2415681884b2afc316877af35018f78b52f5 </Sha >
310
+ <Sha >286d98094b830b8dad769542b2669cb1b75f7097 </Sha >
311
311
</Dependency >
312
- <Dependency Name =" Microsoft.DotNet.Helix.Sdk" Version =" 6.0.0-beta.21329.1 " >
312
+ <Dependency Name =" Microsoft.DotNet.Helix.Sdk" Version =" 6.0.0-beta.21357.3 " >
313
313
<Uri >https://github.com/dotnet/arcade</Uri >
314
- <Sha >695b2415681884b2afc316877af35018f78b52f5 </Sha >
314
+ <Sha >286d98094b830b8dad769542b2669cb1b75f7097 </Sha >
315
315
</Dependency >
316
316
</ToolsetDependencies >
317
317
</Dependencies >
Original file line number Diff line number Diff line change 138
138
<MicrosoftEntityFrameworkCoreVersion >6.0.0-preview.7.21351.1</MicrosoftEntityFrameworkCoreVersion >
139
139
<MicrosoftEntityFrameworkCoreDesignVersion >6.0.0-preview.7.21351.1</MicrosoftEntityFrameworkCoreDesignVersion >
140
140
<!-- Packages from dotnet/arcade -->
141
- <MicrosoftDotNetBuildTasksInstallersVersion >6.0.0-beta.21329.1 </MicrosoftDotNetBuildTasksInstallersVersion >
142
- <MicrosoftDotNetBuildTasksTemplatingVersion >6.0.0-beta.21329.1 </MicrosoftDotNetBuildTasksTemplatingVersion >
141
+ <MicrosoftDotNetBuildTasksInstallersVersion >6.0.0-beta.21357.3 </MicrosoftDotNetBuildTasksInstallersVersion >
142
+ <MicrosoftDotNetBuildTasksTemplatingVersion >6.0.0-beta.21357.3 </MicrosoftDotNetBuildTasksTemplatingVersion >
143
143
</PropertyGroup >
144
144
<!--
145
145
Original file line number Diff line number Diff line change @@ -158,4 +158,10 @@ if ($dotnet5Source -ne $null) {
158
158
AddPackageSource - Sources $sources - SourceName " dotnet5-internal-transport" - SourceEndPoint " https://pkgs.dev.azure.com/dnceng/internal/_packaging/dotnet5-internal-transport/nuget/v2" - Creds $creds - Username $userName - Password $Password
159
159
}
160
160
161
+ $dotnet6Source = $sources.SelectSingleNode (" add[@key='dotnet6']" )
162
+ if ($dotnet6Source -ne $null ) {
163
+ AddPackageSource - Sources $sources - SourceName " dotnet6-internal" - SourceEndPoint " https://pkgs.dev.azure.com/dnceng/internal/_packaging/dotnet6-internal/nuget/v2" - Creds $creds - Username $userName - Password $Password
164
+ AddPackageSource - Sources $sources - SourceName " dotnet6-internal-transport" - SourceEndPoint " https://pkgs.dev.azure.com/dnceng/internal/_packaging/dotnet6-internal-transport/nuget/v2" - Creds $creds - Username $userName - Password $Password
165
+ }
166
+
161
167
$doc.Save ($filename )
Original file line number Diff line number Diff line change @@ -129,6 +129,30 @@ if [ "$?" == "0" ]; then
129
129
PackageSources+=(' dotnet5-internal-transport' )
130
130
fi
131
131
132
+ # Ensure dotnet6-internal and dotnet6-internal-transport are in the packageSources if the public dotnet6 feeds are present
133
+ grep -i " <add key=\" dotnet6\" " $ConfigFile
134
+ if [ " $? " == " 0" ]; then
135
+ grep -i " <add key=\" dotnet6-internal\" " $ConfigFile
136
+ if [ " $? " != " 0" ]; then
137
+ echo " Adding dotnet6-internal to the packageSources."
138
+ PackageSourcesNodeFooter=" </packageSources>"
139
+ PackageSourceTemplate=" ${TB} <add key=\" dotnet6-internal\" value=\" https://pkgs.dev.azure.com/dnceng/internal/_packaging/dotnet6-internal/nuget/v2\" />"
140
+
141
+ sed -i.bak " s|$PackageSourcesNodeFooter |$PackageSourceTemplate ${NL} $PackageSourcesNodeFooter |" $ConfigFile
142
+ fi
143
+ PackageSources+=(' dotnet6-internal' )
144
+
145
+ grep -i " <add key=\" dotnet6-internal-transport\" >" $ConfigFile
146
+ if [ " $? " != " 0" ]; then
147
+ echo " Adding dotnet6-internal-transport to the packageSources."
148
+ PackageSourcesNodeFooter=" </packageSources>"
149
+ PackageSourceTemplate=" ${TB} <add key=\" dotnet6-internal-transport\" value=\" https://pkgs.dev.azure.com/dnceng/internal/_packaging/dotnet6-internal-transport/nuget/v2\" />"
150
+
151
+ sed -i.bak " s|$PackageSourcesNodeFooter |$PackageSourceTemplate ${NL} $PackageSourcesNodeFooter |" $ConfigFile
152
+ fi
153
+ PackageSources+=(' dotnet6-internal-transport' )
154
+ fi
155
+
132
156
# I want things split line by line
133
157
PrevIFS=$IFS
134
158
IFS=$' \n '
Original file line number Diff line number Diff line change 30
30
},
31
31
"msbuild-sdks" : {
32
32
"Yarn.MSBuild" : " 1.22.10" ,
33
- "Microsoft.DotNet.Arcade.Sdk" : " 6.0.0-beta.21329.1 " ,
34
- "Microsoft.DotNet.Helix.Sdk" : " 6.0.0-beta.21329.1 "
33
+ "Microsoft.DotNet.Arcade.Sdk" : " 6.0.0-beta.21357.3 " ,
34
+ "Microsoft.DotNet.Helix.Sdk" : " 6.0.0-beta.21357.3 "
35
35
}
36
36
}
You can’t perform that action at this time.
0 commit comments