Skip to content

Commit e34b65a

Browse files
committed
Add nuGet packages
1 parent 00e23a4 commit e34b65a

File tree

37 files changed

+35708
-9250
lines changed

37 files changed

+35708
-9250
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFrameworks>netstandard2.0</TargetFrameworks>
5+
<AssemblyName>NuGet.Common</AssemblyName>
6+
<ProjectTemplateVersion>2</ProjectTemplateVersion>
7+
<StrongNameKeyId>MicrosoftShared</StrongNameKeyId>
8+
</PropertyGroup>
9+
10+
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
11+
<PackageReference Include="NuGet.Frameworks" Version="6.7.0" />
12+
</ItemGroup>
13+
14+
</Project>

src/referencePackages/src/nuget.common/6.7.0/lib/netstandard2.0/NuGet.Common.cs

Lines changed: 1088 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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.Common</id>
5+
<version>6.7.0</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>Common utilities and interfaces for all NuGet libraries.</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="b46f5f64159a81d930ac8cdfde96e76f90796c62" />
16+
<dependencies>
17+
<group targetFramework=".NETStandard2.0">
18+
<dependency id="NuGet.Frameworks" version="6.7.0" exclude="Build,Analyzers" />
19+
</group>
20+
</dependencies>
21+
</metadata>
22+
</package>
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFrameworks>netstandard2.0</TargetFrameworks>
5+
<AssemblyName>NuGet.Configuration</AssemblyName>
6+
<ProjectTemplateVersion>2</ProjectTemplateVersion>
7+
<StrongNameKeyId>MicrosoftShared</StrongNameKeyId>
8+
</PropertyGroup>
9+
10+
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
11+
<PackageReference Include="NuGet.Common" Version="6.7.0" />
12+
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="4.4.0" />
13+
</ItemGroup>
14+
15+
</Project>

src/referencePackages/src/nuget.configuration/6.7.0/lib/netstandard2.0/NuGet.Configuration.cs

Lines changed: 1025 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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.Configuration</id>
5+
<version>6.7.0</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>NuGet's configuration settings implementation.</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="b46f5f64159a81d930ac8cdfde96e76f90796c62" />
16+
<dependencies>
17+
<group targetFramework=".NETStandard2.0">
18+
<dependency id="NuGet.Common" version="6.7.0" exclude="Build,Analyzers" />
19+
<dependency id="System.Security.Cryptography.ProtectedData" version="4.4.0" exclude="Build,Analyzers" />
20+
</group>
21+
</dependencies>
22+
</metadata>
23+
</package>
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFrameworks>net5.0;netstandard2.0</TargetFrameworks>
5+
<AssemblyName>NuGet.Credentials</AssemblyName>
6+
<ProjectTemplateVersion>2</ProjectTemplateVersion>
7+
<StrongNameKeyId>MicrosoftShared</StrongNameKeyId>
8+
</PropertyGroup>
9+
10+
<ItemGroup Condition="'$(TargetFramework)' == 'net5.0'">
11+
<PackageReference Include="NuGet.Protocol" Version="6.7.0" />
12+
</ItemGroup>
13+
14+
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
15+
<PackageReference Include="NuGet.Protocol" Version="6.7.0" />
16+
</ItemGroup>
17+
18+
</Project>
Lines changed: 204 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,204 @@
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
// See the LICENSE file in the project root for more information.
4+
// ------------------------------------------------------------------------------
5+
// Changes to this file must follow the http://aka.ms/api-review process.
6+
// ------------------------------------------------------------------------------
7+
[assembly: System.Runtime.CompilerServices.CompilationRelaxations(8)]
8+
[assembly: System.Runtime.CompilerServices.RuntimeCompatibility(WrapNonExceptionThrows = true)]
9+
[assembly: System.Diagnostics.Debuggable(System.Diagnostics.DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
10+
[assembly: System.CLSCompliant(true)]
11+
[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("NuGet.Credentials.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
12+
[assembly: System.Runtime.Versioning.TargetFramework(".NETCoreApp,Version=v5.0", FrameworkDisplayName = ".NET 5.0")]
13+
[assembly: System.Reflection.AssemblyCompany("Microsoft Corporation")]
14+
[assembly: System.Reflection.AssemblyConfiguration("release")]
15+
[assembly: System.Reflection.AssemblyCopyright("© Microsoft Corporation. All rights reserved.")]
16+
[assembly: System.Reflection.AssemblyDescription("NuGet client's authentication models.")]
17+
[assembly: System.Reflection.AssemblyFileVersion("6.7.0.127")]
18+
[assembly: System.Reflection.AssemblyInformationalVersion("6.7.0+b46f5f64159a81d930ac8cdfde96e76f90796c62.b46f5f64159a81d930ac8cdfde96e76f90796c62")]
19+
[assembly: System.Reflection.AssemblyProduct("NuGet")]
20+
[assembly: System.Reflection.AssemblyTitle("NuGet.Credentials")]
21+
[assembly: System.Reflection.AssemblyMetadata("RepositoryUrl", "https://github.com/NuGet/NuGet.Client")]
22+
[assembly: System.Resources.NeutralResourcesLanguage("en-US")]
23+
[assembly: System.Reflection.AssemblyVersionAttribute("6.7.0.127")]
24+
[assembly: System.Runtime.CompilerServices.ReferenceAssembly]
25+
[assembly: System.Reflection.AssemblyFlagsAttribute((System.Reflection.AssemblyNameFlags)0x70)]
26+
namespace NuGet.Credentials
27+
{
28+
public partial class CredentialResponse
29+
{
30+
public CredentialResponse(CredentialStatus status) { }
31+
32+
public CredentialResponse(System.Net.ICredentials credentials) { }
33+
34+
public System.Net.ICredentials Credentials { get { throw null; } }
35+
36+
public CredentialStatus Status { get { throw null; } }
37+
}
38+
39+
public static partial class CredentialsConstants
40+
{
41+
public static readonly int ProviderTimeoutSecondsDefault;
42+
public static readonly string ProviderTimeoutSecondsEnvar;
43+
public static readonly string ProviderTimeoutSecondsSetting;
44+
}
45+
46+
public partial class CredentialService : Configuration.ICredentialService
47+
{
48+
public CredentialService(Common.AsyncLazy<System.Collections.Generic.IEnumerable<ICredentialProvider>> providers, bool nonInteractive, bool handlesDefaultCredentials) { }
49+
50+
public bool HandlesDefaultCredentials { get { throw null; } }
51+
52+
public System.Threading.Tasks.Task<System.Net.ICredentials> GetCredentialsAsync(System.Uri uri, System.Net.IWebProxy proxy, Configuration.CredentialRequestType type, string message, System.Threading.CancellationToken cancellationToken) { throw null; }
53+
54+
public bool TryGetLastKnownGoodCredentialsFromCache(System.Uri uri, bool isProxy, out System.Net.ICredentials credentials) { throw null; }
55+
}
56+
57+
public enum CredentialStatus
58+
{
59+
Success = 0,
60+
ProviderNotApplicable = 1,
61+
UserCanceled = 2
62+
}
63+
64+
public static partial class DefaultCredentialServiceUtility
65+
{
66+
public static void SetupDefaultCredentialService(Common.ILogger logger, bool nonInteractive) { }
67+
68+
public static void UpdateCredentialServiceDelegatingLogger(Common.ILogger log) { }
69+
}
70+
71+
public partial class DefaultNetworkCredentialsCredentialProvider : ICredentialProvider
72+
{
73+
public string Id { get { throw null; } }
74+
75+
public System.Threading.Tasks.Task<CredentialResponse> GetAsync(System.Uri uri, System.Net.IWebProxy proxy, Configuration.CredentialRequestType type, string message, bool isRetry, bool nonInteractive, System.Threading.CancellationToken cancellationToken) { throw null; }
76+
}
77+
78+
public partial interface ICredentialProvider
79+
{
80+
string Id { get; }
81+
82+
System.Threading.Tasks.Task<CredentialResponse> GetAsync(System.Uri uri, System.Net.IWebProxy proxy, Configuration.CredentialRequestType type, string message, bool isRetry, bool nonInteractive, System.Threading.CancellationToken cancellationToken);
83+
}
84+
85+
public partial class PluginCredentialProvider : ICredentialProvider
86+
{
87+
public PluginCredentialProvider(Common.ILogger logger, string path, int timeoutSeconds, string verbosity) { }
88+
89+
public string Id { get { throw null; } }
90+
91+
public string Path { get { throw null; } }
92+
93+
public int TimeoutSeconds { get { throw null; } }
94+
95+
public virtual int Execute(System.Diagnostics.ProcessStartInfo startInfo, System.Threading.CancellationToken cancellationToken, out string stdOut) { throw null; }
96+
97+
public System.Threading.Tasks.Task<CredentialResponse> GetAsync(System.Uri uri, System.Net.IWebProxy proxy, Configuration.CredentialRequestType type, string message, bool isRetry, bool nonInteractive, System.Threading.CancellationToken cancellationToken) { throw null; }
98+
}
99+
100+
public partial class PluginCredentialProviderBuilder
101+
{
102+
public PluginCredentialProviderBuilder(Configuration.IExtensionLocator extensionLocator, Configuration.ISettings settings, Common.ILogger logger, Common.IEnvironmentVariableReader envarReader) { }
103+
104+
public PluginCredentialProviderBuilder(Configuration.IExtensionLocator extensionLocator, Configuration.ISettings settings, Common.ILogger logger) { }
105+
106+
public System.Collections.Generic.IEnumerable<ICredentialProvider> BuildAll(string verbosity) { throw null; }
107+
}
108+
109+
public partial class PluginCredentialRequest
110+
{
111+
public bool IsRetry { get { throw null; } set { } }
112+
113+
public bool NonInteractive { get { throw null; } set { } }
114+
115+
public string Uri { get { throw null; } set { } }
116+
117+
public string Verbosity { get { throw null; } set { } }
118+
}
119+
120+
public partial class PluginCredentialResponse
121+
{
122+
public System.Collections.Generic.IList<string> AuthTypes { get { throw null; } set { } }
123+
124+
public bool IsValid { get { throw null; } }
125+
126+
public string Message { get { throw null; } set { } }
127+
128+
public string Password { get { throw null; } set { } }
129+
130+
public string Username { get { throw null; } set { } }
131+
}
132+
133+
public enum PluginCredentialResponseExitCode
134+
{
135+
Success = 0,
136+
ProviderNotApplicable = 1,
137+
Failure = 2
138+
}
139+
140+
public partial class PluginException : System.Exception
141+
{
142+
public PluginException() { }
143+
144+
public PluginException(string message, System.Exception inner) { }
145+
146+
public PluginException(string message) { }
147+
148+
public static PluginException Create(string path, System.Exception inner) { throw null; }
149+
150+
public static PluginException CreateAbortMessage(string path, string message) { throw null; }
151+
152+
public static PluginException CreateInvalidResponseExceptionMessage(string path, PluginCredentialResponseExitCode status, PluginCredentialResponse response) { throw null; }
153+
154+
public static PluginException CreateNotStartedMessage(string path) { throw null; }
155+
156+
public static PluginException CreatePathNotFoundMessage(string path, string attempted) { throw null; }
157+
158+
public static PluginException CreateTimeoutMessage(string path, int timeoutMillis) { throw null; }
159+
160+
public static PluginException CreateUnreadableResponseExceptionMessage(string path, PluginCredentialResponseExitCode status) { throw null; }
161+
}
162+
163+
public partial class PluginUnexpectedStatusException : PluginException
164+
{
165+
public PluginUnexpectedStatusException() { }
166+
167+
public PluginUnexpectedStatusException(string message, System.Exception inner) { }
168+
169+
public PluginUnexpectedStatusException(string message) { }
170+
171+
public static PluginException CreateUnexpectedStatusMessage(string path, PluginCredentialResponseExitCode status) { throw null; }
172+
}
173+
174+
public static partial class PreviewFeatureSettings
175+
{
176+
public const string DefaultCredentialsAfterCredentialProvidersEnvironmentVariableName = "NUGET_CREDENTIAL_PROVIDER_OVERRIDE_DEFAULT";
177+
public static bool DefaultCredentialsAfterCredentialProviders { get { throw null; } set { } }
178+
}
179+
180+
public partial class ProviderException : System.Exception
181+
{
182+
public ProviderException() { }
183+
184+
public ProviderException(string message, System.Exception inner) { }
185+
186+
public ProviderException(string message) { }
187+
}
188+
189+
public sealed partial class SecurePluginCredentialProvider : ICredentialProvider
190+
{
191+
public SecurePluginCredentialProvider(Protocol.Plugins.IPluginManager pluginManager, Protocol.Plugins.PluginDiscoveryResult pluginDiscoveryResult, bool canShowDialog, Common.ILogger logger) { }
192+
193+
public string Id { get { throw null; } }
194+
195+
public System.Threading.Tasks.Task<CredentialResponse> GetAsync(System.Uri uri, System.Net.IWebProxy proxy, Configuration.CredentialRequestType type, string message, bool isRetry, bool nonInteractive, System.Threading.CancellationToken cancellationToken) { throw null; }
196+
}
197+
198+
public partial class SecurePluginCredentialProviderBuilder
199+
{
200+
public SecurePluginCredentialProviderBuilder(Protocol.Plugins.IPluginManager pluginManager, bool canShowDialog, Common.ILogger logger) { }
201+
202+
public System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<ICredentialProvider>> BuildAllAsync() { throw null; }
203+
}
204+
}

0 commit comments

Comments
 (0)