-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Nuget.Packaging 6.11.0 and dependencies (#1015)
* add Nuget.Packaging version 6.11.0 * revert changes on existing packages * add projects * fix * Explicitly cast number to EventKeywords type * remove init { } * remove System.Formats.Asn1.6.0.0 * add packages
- Loading branch information
1 parent
5dae192
commit 6c26545
Showing
40 changed files
with
27,221 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
src/referencePackages/src/nuget.commands/6.11.0/NuGet.Commands.6.11.0.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net5.0;netstandard2.0</TargetFrameworks> | ||
<AssemblyName>NuGet.Commands</AssemblyName> | ||
<StrongNameKeyId>MicrosoftShared</StrongNameKeyId> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'net5.0'"> | ||
<PackageReference Include="NuGet.Credentials" Version="6.11.0" /> | ||
<PackageReference Include="NuGet.ProjectModel" Version="6.11.0" /> | ||
<PackageReference Include="Microsoft.Extensions.FileProviders.Abstractions" Version="6.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.FileSystemGlobbing" Version="6.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> | ||
<PackageReference Include="NuGet.Credentials" Version="6.11.0" /> | ||
<PackageReference Include="NuGet.ProjectModel" Version="6.11.0" /> | ||
<PackageReference Include="Microsoft.Extensions.FileProviders.Abstractions" Version="6.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.FileSystemGlobbing" Version="6.0.0" /> | ||
</ItemGroup> | ||
|
||
</Project> |
1,737 changes: 1,737 additions & 0 deletions
1,737
src/referencePackages/src/nuget.commands/6.11.0/lib/net5.0/NuGet.Commands.cs
Large diffs are not rendered by default.
Oops, something went wrong.
1,735 changes: 1,735 additions & 0 deletions
1,735
src/referencePackages/src/nuget.commands/6.11.0/lib/netstandard2.0/NuGet.Commands.cs
Large diffs are not rendered by default.
Oops, something went wrong.
31 changes: 31 additions & 0 deletions
31
src/referencePackages/src/nuget.commands/6.11.0/nuget.commands.nuspec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd"> | ||
<metadata> | ||
<id>NuGet.Commands</id> | ||
<version>6.11.0</version> | ||
<authors>Microsoft</authors> | ||
<requireLicenseAcceptance>true</requireLicenseAcceptance> | ||
<license type="expression">Apache-2.0</license> | ||
<licenseUrl>https://licenses.nuget.org/Apache-2.0</licenseUrl> | ||
<projectUrl>https://aka.ms/nugetprj</projectUrl> | ||
<description>Complete commands common to command-line and GUI NuGet clients.</description> | ||
<copyright>© Microsoft Corporation. All rights reserved.</copyright> | ||
<tags>nuget</tags> | ||
<serviceable>true</serviceable> | ||
<repository type="git" url="https://github.com/NuGet/NuGet.Client" commit="324d7272b8526a3826ef1f12fa6fc3a362b5bb79" /> | ||
<dependencies> | ||
<group targetFramework="net5.0"> | ||
<dependency id="NuGet.Credentials" version="6.11.0" exclude="Build,Analyzers" /> | ||
<dependency id="NuGet.ProjectModel" version="6.11.0" exclude="Build,Analyzers" /> | ||
<dependency id="Microsoft.Extensions.FileProviders.Abstractions" version="6.0.0" exclude="Build,Analyzers" /> | ||
<dependency id="Microsoft.Extensions.FileSystemGlobbing" version="6.0.0" exclude="Build,Analyzers" /> | ||
</group> | ||
<group targetFramework=".NETStandard2.0"> | ||
<dependency id="NuGet.Credentials" version="6.11.0" exclude="Build,Analyzers" /> | ||
<dependency id="NuGet.ProjectModel" version="6.11.0" exclude="Build,Analyzers" /> | ||
<dependency id="Microsoft.Extensions.FileProviders.Abstractions" version="6.0.0" exclude="Build,Analyzers" /> | ||
<dependency id="Microsoft.Extensions.FileSystemGlobbing" version="6.0.0" exclude="Build,Analyzers" /> | ||
</group> | ||
</dependencies> | ||
</metadata> | ||
</package> |
13 changes: 13 additions & 0 deletions
13
src/referencePackages/src/nuget.common/6.11.0/NuGet.Common.6.11.0.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0</TargetFrameworks> | ||
<AssemblyName>NuGet.Common</AssemblyName> | ||
<StrongNameKeyId>MicrosoftShared</StrongNameKeyId> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> | ||
<PackageReference Include="NuGet.Frameworks" Version="6.11.0" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Oops, something went wrong.