Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Microsoft.Extensions.Caching.Memory from 8.0.0 to 8.0.1 in /Usage #12

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Usage/Usage.csproj
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Http.Polly" Version="8.0.7" />

Unchanged files with check annotations Beta

return await GetAsync(tenant, link, new RequestHeaderOptions(), cancellationToken).ConfigureAwait(false);
}
IAsyncEnumerable<JsonDocument> ISlimGraphAdministrativeUnitsClient.GetMembersAsync(IAzureTenant tenant, Guid adminUnitID, ListRequestOptions? options, [EnumeratorCancellation] CancellationToken cancellationToken)

Check warning on line 28 in SlimLib.Microsoft.Graph/Impl/SlimGraphClientImpl.AdministrativeUnits.cs

GitHub Actions / build

The EnumeratorCancellationAttribute applied to parameter 'cancellationToken' will have no effect. The attribute is only effective on a parameter of type CancellationToken in an async-iterator method returning IAsyncEnumerable
{
var nextLink = BuildLink(options, $"directory/administrativeUnits/{adminUnitID}/members");
return GetArrayAsync(tenant, nextLink, options, cancellationToken);
}
IAsyncEnumerable<JsonDocument> ISlimGraphAdministrativeUnitsClient.GetMembersAsync(IAzureTenant tenant, Guid adminUnitID, string type, ListRequestOptions? options, [EnumeratorCancellation] CancellationToken cancellationToken)

Check warning on line 35 in SlimLib.Microsoft.Graph/Impl/SlimGraphClientImpl.AdministrativeUnits.cs

GitHub Actions / build

The EnumeratorCancellationAttribute applied to parameter 'cancellationToken' will have no effect. The attribute is only effective on a parameter of type CancellationToken in an async-iterator method returning IAsyncEnumerable
{
var nextLink = BuildLink(options, $"directory/administrativeUnits/{adminUnitID}/members/{type}");
return await GetAsync(tenant, link, new RequestHeaderOptions(), cancellationToken).ConfigureAwait(false);
}
IAsyncEnumerable<JsonDocument> ISlimGraphApplicationsClient.GetApplicationsAsync(IAzureTenant tenant, ListRequestOptions? options, [EnumeratorCancellation] CancellationToken cancellationToken)

Check warning on line 20 in SlimLib.Microsoft.Graph/Impl/SlimGraphClientImpl.ApplicationsClient.cs

GitHub Actions / build

The EnumeratorCancellationAttribute applied to parameter 'cancellationToken' will have no effect. The attribute is only effective on a parameter of type CancellationToken in an async-iterator method returning IAsyncEnumerable
{
var nextLink = BuildLink(options, "applications");
return await GetAsync(tenant, link, new RequestHeaderOptions(), cancellationToken).ConfigureAwait(false);
}
IAsyncEnumerable<JsonDocument> ISlimGraphAuditEventsClient.GetAuditEventsAsync(IAzureTenant tenant, ListRequestOptions? options, [EnumeratorCancellation] CancellationToken cancellationToken)

Check warning on line 20 in SlimLib.Microsoft.Graph/Impl/SlimGraphClientImpl.AuditEvents.cs

GitHub Actions / build

The EnumeratorCancellationAttribute applied to parameter 'cancellationToken' will have no effect. The attribute is only effective on a parameter of type CancellationToken in an async-iterator method returning IAsyncEnumerable
{
var nextLink = BuildLink(options, "deviceManagement/auditEvents");
return await GetAsync(tenant, link, new RequestHeaderOptions(), cancellationToken).ConfigureAwait(false);
}
IAsyncEnumerable<JsonDocument> ISlimGraphAuditLogsClient.GetSignInsAsync(IAzureTenant tenant, ListRequestOptions? options, [EnumeratorCancellation] CancellationToken cancellationToken)

Check warning on line 20 in SlimLib.Microsoft.Graph/Impl/SlimGraphClientImpl.AuditLogs.cs

GitHub Actions / build

The EnumeratorCancellationAttribute applied to parameter 'cancellationToken' will have no effect. The attribute is only effective on a parameter of type CancellationToken in an async-iterator method returning IAsyncEnumerable
{
var nextLink = BuildLink(options, "auditLogs/signIns");
return await GetAsync(tenant, link, new RequestHeaderOptions(), cancellationToken).ConfigureAwait(false);
}
IAsyncEnumerable<JsonDocument> ISlimGraphDetectedAppsClient.GetDetectedAppsAsync(IAzureTenant tenant, ListRequestOptions? options, [EnumeratorCancellation] CancellationToken cancellationToken)

Check warning on line 19 in SlimLib.Microsoft.Graph/Impl/SlimGraphClientImpl.DetectedApps.cs

GitHub Actions / build

The EnumeratorCancellationAttribute applied to parameter 'cancellationToken' will have no effect. The attribute is only effective on a parameter of type CancellationToken in an async-iterator method returning IAsyncEnumerable
{
var nextLink = BuildLink(options, "deviceManagement/detectedApps");
return GetArrayAsync(tenant, nextLink, options, cancellationToken);
}
IAsyncEnumerable<JsonDocument> ISlimGraphDetectedAppsClient.GetManagedDevicesAsync(IAzureTenant tenant, string appID, ListRequestOptions? options, [EnumeratorCancellation] CancellationToken cancellationToken)

Check warning on line 26 in SlimLib.Microsoft.Graph/Impl/SlimGraphClientImpl.DetectedApps.cs

GitHub Actions / build

The EnumeratorCancellationAttribute applied to parameter 'cancellationToken' will have no effect. The attribute is only effective on a parameter of type CancellationToken in an async-iterator method returning IAsyncEnumerable
{
var nextLink = BuildLink(options, $"deviceManagement/detectedApps/{appID}/managedDevices");
return await GetAsync(tenant, link, new RequestHeaderOptions { UserAgent = "Mozilla/5.0 (Windows NT 10; Win64; x64; rv:60.0) Gecko/20100101 Firefox/60.0" }, cancellationToken).ConfigureAwait(false);
}
IAsyncEnumerable<JsonDocument> ISlimGraphDeviceLocalCredentialsClient.GetDeviceLocalCredentialsAsync(IAzureTenant tenant, ListRequestOptions? options, [EnumeratorCancellation] CancellationToken cancellationToken)

Check warning on line 21 in SlimLib.Microsoft.Graph/Impl/SlimGraphClientImpl.DeviceLocalCredentials.cs

GitHub Actions / build

The EnumeratorCancellationAttribute applied to parameter 'cancellationToken' will have no effect. The attribute is only effective on a parameter of type CancellationToken in an async-iterator method returning IAsyncEnumerable
{
var nextLink = BuildLink(options, "directory/deviceLocalCredentials");
return await GetAsync(tenant, link, new RequestHeaderOptions(), cancellationToken).ConfigureAwait(false);
}
IAsyncEnumerable<JsonDocument> ISlimGraphDevicesClient.GetDevicesAsync(IAzureTenant tenant, ListRequestOptions? options, [EnumeratorCancellation] CancellationToken cancellationToken)

Check warning on line 20 in SlimLib.Microsoft.Graph/Impl/SlimGraphClientImpl.Devices.cs

GitHub Actions / build

The EnumeratorCancellationAttribute applied to parameter 'cancellationToken' will have no effect. The attribute is only effective on a parameter of type CancellationToken in an async-iterator method returning IAsyncEnumerable
{
var nextLink = BuildLink(options, "devices");
return GetArrayAsync(tenant, nextLink, options, cancellationToken);
}
IAsyncEnumerable<JsonDocument> ISlimGraphDevicesClient.GetRegisteredOwnersAsync(IAzureTenant tenant, Guid deviceID, ListRequestOptions? options, [EnumeratorCancellation] CancellationToken cancellationToken)

Check warning on line 27 in SlimLib.Microsoft.Graph/Impl/SlimGraphClientImpl.Devices.cs

GitHub Actions / build

The EnumeratorCancellationAttribute applied to parameter 'cancellationToken' will have no effect. The attribute is only effective on a parameter of type CancellationToken in an async-iterator method returning IAsyncEnumerable
{
var nextLink = BuildLink(options, $"devices/{deviceID}/registeredOwners");