Skip to content

Commit b10d2da

Browse files
committed
Add more NuGet 6.13.2 packages
1 parent 432b22e commit b10d2da

File tree

19 files changed

+7748
-6
lines changed

19 files changed

+7748
-6
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFrameworks>net8.0;netstandard2.0</TargetFrameworks>
5+
<PackageVersion>6.13.2</PackageVersion>
6+
<AssemblyName>NuGet.Commands</AssemblyName>
7+
<StrongNameKeyId>MicrosoftShared</StrongNameKeyId>
8+
</PropertyGroup>
9+
10+
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
11+
<ProjectReference Include="../../nuget.credentials/6.13.2/NuGet.Credentials.6.13.2.csproj" />
12+
<ProjectReference Include="../../nuget.projectmodel/6.13.2/NuGet.ProjectModel.6.13.2.csproj" />
13+
<ProjectReference Include="../../microsoft.extensions.fileproviders.abstractions/6.0.0/Microsoft.Extensions.FileProviders.Abstractions.6.0.0.csproj" />
14+
<ProjectReference Include="../../microsoft.extensions.filesystemglobbing/6.0.0/Microsoft.Extensions.FileSystemGlobbing.6.0.0.csproj" />
15+
</ItemGroup>
16+
17+
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
18+
<ProjectReference Include="../../nuget.credentials/6.13.2/NuGet.Credentials.6.13.2.csproj" />
19+
<ProjectReference Include="../../nuget.projectmodel/6.13.2/NuGet.ProjectModel.6.13.2.csproj" />
20+
<ProjectReference Include="../../microsoft.extensions.fileproviders.abstractions/6.0.0/Microsoft.Extensions.FileProviders.Abstractions.6.0.0.csproj" />
21+
<ProjectReference Include="../../microsoft.extensions.filesystemglobbing/6.0.0/Microsoft.Extensions.FileSystemGlobbing.6.0.0.csproj" />
22+
</ItemGroup>
23+
24+
</Project>

Diff for: src/referencePackages/src/nuget.commands/6.13.2/lib/net8.0/NuGet.Commands.cs

+1,753
Large diffs are not rendered by default.

Diff for: src/referencePackages/src/nuget.commands/6.13.2/lib/netstandard2.0/NuGet.Commands.cs

+1,750
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
3+
<metadata>
4+
<id>NuGet.Commands</id>
5+
<version>6.13.2</version>
6+
<authors>Microsoft</authors>
7+
<requireLicenseAcceptance>true</requireLicenseAcceptance>
8+
<license type="expression">Apache-2.0</license>
9+
<licenseUrl>https://licenses.nuget.org/Apache-2.0</licenseUrl>
10+
<projectUrl>https://aka.ms/nugetprj</projectUrl>
11+
<description>Complete commands common to command-line and GUI NuGet clients.</description>
12+
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
13+
<tags>nuget</tags>
14+
<serviceable>true</serviceable>
15+
<repository type="git" url="https://github.com/NuGet/NuGet.Client" commit="5d81cb8da82eda8a6b47aae92d1e6f888de982ce" />
16+
<dependencies>
17+
<group targetFramework="net8.0">
18+
<dependency id="NuGet.Credentials" version="6.13.2" exclude="Build,Analyzers" />
19+
<dependency id="NuGet.ProjectModel" version="6.13.2" exclude="Build,Analyzers" />
20+
<dependency id="Microsoft.Extensions.FileProviders.Abstractions" version="6.0.0" exclude="Build,Analyzers" />
21+
<dependency id="Microsoft.Extensions.FileSystemGlobbing" version="6.0.0" exclude="Build,Analyzers" />
22+
</group>
23+
<group targetFramework=".NETStandard2.0">
24+
<dependency id="NuGet.Credentials" version="6.13.2" exclude="Build,Analyzers" />
25+
<dependency id="NuGet.ProjectModel" version="6.13.2" exclude="Build,Analyzers" />
26+
<dependency id="Microsoft.Extensions.FileProviders.Abstractions" version="6.0.0" exclude="Build,Analyzers" />
27+
<dependency id="Microsoft.Extensions.FileSystemGlobbing" version="6.0.0" exclude="Build,Analyzers" />
28+
</group>
29+
</dependencies>
30+
</metadata>
31+
</package>

Diff for: src/referencePackages/src/nuget.common/6.13.2/lib/netstandard2.0/NuGet.Common.cs

+6-6
Original file line numberDiff line numberDiff line change
@@ -498,12 +498,12 @@ public static partial class NuGetEventSource
498498

499499
public static partial class Keywords
500500
{
501-
public const System.Diagnostics.Tracing.EventKeywords Common = (System.Diagnostics.Tracing.EventKeywords)1L;
502-
public const System.Diagnostics.Tracing.EventKeywords Configuration = (System.Diagnostics.Tracing.EventKeywords)2L;
503-
public const System.Diagnostics.Tracing.EventKeywords Logging = (System.Diagnostics.Tracing.EventKeywords)4L;
504-
public const System.Diagnostics.Tracing.EventKeywords Performance = (System.Diagnostics.Tracing.EventKeywords)8L;
505-
public const System.Diagnostics.Tracing.EventKeywords Restore = (System.Diagnostics.Tracing.EventKeywords)32L;
506-
public const System.Diagnostics.Tracing.EventKeywords SdkResolver = (System.Diagnostics.Tracing.EventKeywords)16L;
501+
public const System.Diagnostics.Tracing.EventKeywords Common = 1L;
502+
public const System.Diagnostics.Tracing.EventKeywords Configuration = 2L;
503+
public const System.Diagnostics.Tracing.EventKeywords Logging = 4L;
504+
public const System.Diagnostics.Tracing.EventKeywords Performance = 8L;
505+
public const System.Diagnostics.Tracing.EventKeywords Restore = 32L;
506+
public const System.Diagnostics.Tracing.EventKeywords SdkResolver = 16L;
507507
}
508508
}
509509

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFrameworks>net8.0;netstandard2.0</TargetFrameworks>
5+
<PackageVersion>6.13.2</PackageVersion>
6+
<AssemblyName>NuGet.DependencyResolver.Core</AssemblyName>
7+
<StrongNameKeyId>MicrosoftShared</StrongNameKeyId>
8+
</PropertyGroup>
9+
10+
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
11+
<ProjectReference Include="../../nuget.configuration/6.13.2/NuGet.Configuration.6.13.2.csproj" />
12+
<ProjectReference Include="../../nuget.librarymodel/6.13.2/NuGet.LibraryModel.6.13.2.csproj" />
13+
<ProjectReference Include="../../nuget.protocol/6.13.2/NuGet.Protocol.6.13.2.csproj" />
14+
</ItemGroup>
15+
16+
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
17+
<ProjectReference Include="../../nuget.configuration/6.13.2/NuGet.Configuration.6.13.2.csproj" />
18+
<ProjectReference Include="../../nuget.librarymodel/6.13.2/NuGet.LibraryModel.6.13.2.csproj" />
19+
<ProjectReference Include="../../nuget.protocol/6.13.2/NuGet.Protocol.6.13.2.csproj" />
20+
</ItemGroup>
21+
22+
</Project>

0 commit comments

Comments
 (0)