Skip to content

Commit 27cbca3

Browse files
authored
Merge pull request #10054 from NuGet/dev
[ReleasePrep][2024.07.02]RI of dev into main
2 parents 8c5180c + 9482371 commit 27cbca3

364 files changed

Lines changed: 7596 additions & 4178 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CREDITS.txt

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,6 @@ The .NET Foundation (http://www.dotnetfoundation.org).
66

77
NuGet includes works distributed under the licenses listed below. The full text for most of the licenses listed below can be found in the LICENSE.txt file accompanying each work. The original copyright notices have been preserved within the respective files and or packages. Please refer to the specific files and/or packages for more detailed information about the authors, copyright notices, and licenses.
88

9-
Elmah 1.1
10-
-----
11-
Website: http://code.google.com/p/elmah/
12-
Copyright: Copyright (c) 2010 Atif Azis
13-
License: Apache 2.0
14-
15-
Elmah.Contrib.Mvc 1.0
16-
----
17-
Website: http://nuget.org/List/Packages/Elmah.Contrib.Mvc
18-
Copyright: Copyright (c) 2011, Fabian Vilers
19-
License: Ms-PL
20-
219
jQuery 1.6.2
2210
----
2311
Website: http://jquery.com/

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<NuGetClientPackageVersion>6.9.1</NuGetClientPackageVersion>
44
<ServerCommonPackageVersion>2.120.0</ServerCommonPackageVersion>
5-
<NuGetJobsPackageVersion>4.3.0-main-9408418</NuGetJobsPackageVersion>
5+
<NuGetJobsPackageVersion>4.3.0-agr-gal-stsdk-9768098</NuGetJobsPackageVersion>
66
</PropertyGroup>
77
<ItemGroup>
88
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers">

NuGet.config

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,7 @@
6969
<package pattern="Microsoft.Internal.*" />
7070
</packageSource>
7171
</packageSourceMapping>
72-
<activePackageSource>
73-
<add key="All" value="(Aggregate source)" />
74-
</activePackageSource>
7572
<disabledPackageSources>
7673
<clear />
7774
</disabledPackageSources>
78-
</configuration>
75+
</configuration>

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "6.0.300",
3+
"version": "8.0.301",
44
"rollForward": "latestFeature"
55
}
66
}

src/AccountDeleter/Configuration/GalleryConfiguration.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,15 @@ public string SiteRoot
2828
public string AzureStorage_Auditing_ConnectionString { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
2929
public string AzureStorage_UserCertificates_ConnectionString { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
3030
public string AzureStorage_Content_ConnectionString { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
31-
public string AzureStorage_Errors_ConnectionString { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
3231
public string AzureStorage_Packages_ConnectionString { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
3332
public string AzureStorage_FlatContainer_ConnectionString { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
3433
public string AzureStorage_Statistics_ConnectionString { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
3534
public string AzureStorage_Statistics_ConnectionString_Alternate { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
3635
public string AzureStorage_Uploads_ConnectionString { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
3736
public string AzureStorage_Revalidation_ConnectionString { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
3837
public bool AzureStorageReadAccessGeoRedundant { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
38+
public bool AzureStorageUseMsi { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
39+
public string AzureStorageMsiClientId { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
3940
public TimeSpan FeatureFlagsRefreshInterval { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
4041
public bool AdminPanelEnabled { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
4142
public bool AdminPanelDatabaseAccessEnabled { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }

src/Bootstrap/Gruntfile.js

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,6 @@ module.exports = function (grunt) {
124124
core: {
125125
src: 'dist/css/<%= pkg.name %>.css'
126126
},
127-
theme: {
128-
src: 'dist/css/<%= pkg.name %>-theme.css'
129-
}
130127
},
131128

132129
cssmin: {
@@ -141,13 +138,9 @@ module.exports = function (grunt) {
141138
}
142139
},
143140
core: {
144-
src: 'dist/css/<%= pkg.name %>.css',
141+
src: ['dist/css/<%= pkg.name %>.css', 'dist/css/<%= pkg.name %>-theme.css'],
145142
dest: 'dist/css/<%= pkg.name %>.min.css'
146143
},
147-
theme: {
148-
src: 'dist/css/<%= pkg.name %>-theme.css',
149-
dest: 'dist/css/<%= pkg.name %>-theme.min.css'
150-
}
151144
},
152145

153146
copy: {
@@ -160,8 +153,7 @@ module.exports = function (grunt) {
160153
expand: true,
161154
cwd: 'dist/css/',
162155
src: [
163-
'bootstrap.css',
164-
'bootstrap-theme.css'
156+
'bootstrap.min.css',
165157
],
166158
dest: '../NuGetGallery/Content/gallery/css/'
167159
},
@@ -191,7 +183,7 @@ module.exports = function (grunt) {
191183
grunt.registerTask('dist-js', ['concat', 'uglify:core']);
192184

193185
// CSS distribution task.
194-
grunt.registerTask('dist-css', ['less:core', 'less:theme', 'postcss:core', 'postcss:theme', 'cssmin:core', 'cssmin:theme']);
186+
grunt.registerTask('dist-css', ['less:core', 'less:theme', 'postcss:core', 'cssmin:core']);
195187

196188
// Full distribution task.
197189
grunt.registerTask('dist', ['clean:dist', 'dist-css', 'copy:fonts', 'dist-js', 'copy:gallerycss', 'copy:galleryjs']);

0 commit comments

Comments
 (0)