Skip to content

Commit

Permalink
Fix build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
shenglol committed Oct 18, 2024
1 parent 46d757f commit dc5238a
Show file tree
Hide file tree
Showing 32 changed files with 66 additions and 44 deletions.
6 changes: 4 additions & 2 deletions src/Bicep.Cli.IntegrationTests/PublishCommandTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -458,13 +458,15 @@ public async Task Publish_BicepModule_WithDescriptionAndDocUri_ShouldPlaceDescri

var manifest = blobClient.Manifests.Single().Value.ToObjectFromJson<OciManifest>(new JsonSerializerOptions { PropertyNamingPolicy = JsonNamingPolicy.CamelCase });

manifest.Should().NotBeNull();

if (expectedDescription is null)
{
manifest.Annotations.Keys.Should().NotContain("org.opencontainers.image.description");
manifest!.Annotations.Keys.Should().NotContain("org.opencontainers.image.description");
}
else
{
manifest.Annotations.Should().ContainKey("org.opencontainers.image.description");
manifest!.Annotations.Should().ContainKey("org.opencontainers.image.description");
manifest.Annotations["org.opencontainers.image.description"].Should().Be(expectedDescription);
}

Expand Down
1 change: 0 additions & 1 deletion src/Bicep.Cli.IntegrationTests/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -1602,7 +1602,6 @@
"Microsoft.Extensions.DependencyInjection": "[8.0.1, )",
"Microsoft.Extensions.Http": "[8.0.1, )",
"Microsoft.Graph.Bicep.Types": "[0.1.7-preview, )",
"Microsoft.PowerPlatform.ResourceStack": "[7.0.0.2070, )",
"Newtonsoft.Json": "[13.0.3, )",
"Semver": "[2.3.0, )",
"SharpYaml": "[2.1.1, )",
Expand Down
1 change: 0 additions & 1 deletion src/Bicep.Cli.UnitTests/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -1474,7 +1474,6 @@
"Microsoft.Extensions.DependencyInjection": "[8.0.1, )",
"Microsoft.Extensions.Http": "[8.0.1, )",
"Microsoft.Graph.Bicep.Types": "[0.1.7-preview, )",
"Microsoft.PowerPlatform.ResourceStack": "[7.0.0.2070, )",
"Newtonsoft.Json": "[13.0.3, )",
"Semver": "[2.3.0, )",
"SharpYaml": "[2.1.1, )",
Expand Down
11 changes: 10 additions & 1 deletion src/Bicep.Cli/Services/TemplateEvaluator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,15 @@ namespace Bicep.Cli.Services
{
public partial class TemplateEvaluator
{
private class NoOpTemplateMetricRecorder : ITemplateMetricsRecorder
{
public static readonly NoOpTemplateMetricRecorder Instance = new();

public void Record(MetricDatum metricDatum)
{
}
}

private class TemplateEvaluationContext : IEvaluationContext
{
private readonly IEvaluationContext context;
Expand All @@ -36,7 +45,7 @@ private TemplateEvaluationContext(IEvaluationContext context, ExpressionScope sc

public static TemplateEvaluationContext Create(Template template, OrdinalInsensitiveDictionary<TemplateResource> resourceLookup, EvaluationConfiguration config)
{
var context = TemplateEngine.GetExpressionEvaluationContext(config.ManagementGroup, config.SubscriptionId, config.ResourceGroup, template, null);
var context = TemplateEngine.GetExpressionEvaluationContext(config.ManagementGroup, config.SubscriptionId, config.ResourceGroup, template, NoOpTemplateMetricRecorder.Instance);

return new TemplateEvaluationContext(context, context.Scope, resourceLookup, config);
}
Expand Down
1 change: 0 additions & 1 deletion src/Bicep.Cli/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -1371,7 +1371,6 @@
"Microsoft.Extensions.DependencyInjection": "[8.0.1, )",
"Microsoft.Extensions.Http": "[8.0.1, )",
"Microsoft.Graph.Bicep.Types": "[0.1.7-preview, )",
"Microsoft.PowerPlatform.ResourceStack": "[7.0.0.2070, )",
"Newtonsoft.Json": "[13.0.3, )",
"Semver": "[2.3.0, )",
"SharpYaml": "[2.1.1, )",
Expand Down
11 changes: 10 additions & 1 deletion src/Bicep.Core.IntegrationTests/TemplateEvaluator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,15 @@ namespace Bicep.Core.IntegrationTests
{
public class TemplateEvaluator
{
private class NoOpTemplateMetricRecorder : ITemplateMetricsRecorder
{
public static readonly NoOpTemplateMetricRecorder Instance = new();

public void Record(MetricDatum metricDatum)
{
}
}

private class TemplateEvaluationContext : IEvaluationContext
{
private readonly IEvaluationContext context;
Expand All @@ -36,7 +45,7 @@ private TemplateEvaluationContext(IEvaluationContext context, ExpressionScope sc

public static TemplateEvaluationContext Create(Template template, OrdinalInsensitiveDictionary<TemplateResource> resourceLookup, EvaluationConfiguration config)
{
var context = TemplateEngine.GetExpressionEvaluationContext(config.ManagementGroup, config.SubscriptionId, config.ResourceGroup, template, null);
var context = TemplateEngine.GetExpressionEvaluationContext(config.ManagementGroup, config.SubscriptionId, config.ResourceGroup, template, NoOpTemplateMetricRecorder.Instance);

return new TemplateEvaluationContext(context, context.Scope, resourceLookup, config);
}
Expand Down
1 change: 0 additions & 1 deletion src/Bicep.Core.IntegrationTests/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -1522,7 +1522,6 @@
"Microsoft.Extensions.DependencyInjection": "[8.0.1, )",
"Microsoft.Extensions.Http": "[8.0.1, )",
"Microsoft.Graph.Bicep.Types": "[0.1.7-preview, )",
"Microsoft.PowerPlatform.ResourceStack": "[7.0.0.2070, )",
"Newtonsoft.Json": "[13.0.3, )",
"Semver": "[2.3.0, )",
"SharpYaml": "[2.1.1, )",
Expand Down
1 change: 0 additions & 1 deletion src/Bicep.Core.Samples/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -1522,7 +1522,6 @@
"Microsoft.Extensions.DependencyInjection": "[8.0.1, )",
"Microsoft.Extensions.Http": "[8.0.1, )",
"Microsoft.Graph.Bicep.Types": "[0.1.7-preview, )",
"Microsoft.PowerPlatform.ResourceStack": "[7.0.0.2070, )",
"Newtonsoft.Json": "[13.0.3, )",
"Semver": "[2.3.0, )",
"SharpYaml": "[2.1.1, )",
Expand Down
1 change: 0 additions & 1 deletion src/Bicep.Core.UnitTests/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -1528,7 +1528,6 @@
"Microsoft.Extensions.DependencyInjection": "[8.0.1, )",
"Microsoft.Extensions.Http": "[8.0.1, )",
"Microsoft.Graph.Bicep.Types": "[0.1.7-preview, )",
"Microsoft.PowerPlatform.ResourceStack": "[7.0.0.2070, )",
"Newtonsoft.Json": "[13.0.3, )",
"Semver": "[2.3.0, )",
"SharpYaml": "[2.1.1, )",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ override public IEnumerable<IDiagnostic> AnalyzeInternal(SemanticModel model, Di
var moduleParamsHolder = new Dictionary<string, ObjectPropertySyntax>();
foreach (var param in moduleParams)
{
moduleParamsInput.Add(param.Key.ToString(), new FunctionExpression("sentinel-placeholder", ImmutableArray.Create<ITemplateLanguageExpression>(new StringExpression(param.Key.ToString(), null, null, null)), ImmutableArray<ITemplateLanguageExpression>.Empty, null, null, null));
moduleParamsInput.Add(param.Key.ToString(), new FunctionExpression("sentinel-placeholder", [new StringExpression(param.Key.ToString(), null, null, null)], [], position: null));
moduleParamsHolder.Add(param.Key.ToString(), param);
}

Expand Down Expand Up @@ -93,8 +93,7 @@ override public IEnumerable<IDiagnostic> AnalyzeInternal(SemanticModel model, Di
suppliedParameterValues: moduleParamsInput,
parameterValuesPositionalMetadata: null,
metadata: metadata,
metricsRecorder: null,
skipEvaluationOfNonDeterministicFunctionsForWhatIf: false);
metricsRecorder: null);
}
catch (Exception ex)
{
Expand Down
1 change: 0 additions & 1 deletion src/Bicep.Core/Bicep.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
<PackageReference Include="Semver" Version="2.3.0" />
<PackageReference Include="SharpYaml" Version="2.1.1" />
<PackageReference Include="Azure.Deployments.Templates" Version="1.152.0" />
<PackageReference Include="Microsoft.PowerPlatform.ResourceStack" Version="7.0.0.2070" />
<PackageReference Include="Azure.Bicep.Types" Version="0.5.110" />
<PackageReference Include="Azure.Bicep.Types.Az" Version="0.2.706" />
<PackageReference Include="Azure.Bicep.Types.K8s" Version="0.1.644" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ public virtual void VisitIntegerExpression(IntegerExpression expression)
{
}

public void VisitInvalidLanguageExpression(InvalidLanguageExpression expression)
{
}

public virtual void VisitNullExpression(NullExpression expression)
{
}
Expand Down
3 changes: 3 additions & 0 deletions src/Bicep.Core/Registry/AzureContainerRegistryManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

using System.Collections.Immutable;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using Azure;
using Azure.Containers.ContainerRegistry;
using Azure.Identity;
Expand Down Expand Up @@ -109,7 +110,9 @@ public async Task PushArtifactAsync(

var manifest = new OciManifest(2, mediaType, artifactType, config, layerDescriptors, annotations.Build());

#pragma warning disable IL2026 // Members annotated with 'RequiresUnreferencedCodeAttribute' require dynamic access otherwise can break functionality when trimming application code
var manifestBinaryData = BinaryData.FromObjectAsJson(manifest, OciManifestSerializationContext.Default.Options);
#pragma warning restore IL2026 // Members annotated with 'RequiresUnreferencedCodeAttribute' require dynamic access otherwise can break functionality when trimming application code
_ = await blobClient.SetManifestAsync(manifestBinaryData, artifactReference.Tag, mediaType: ManifestMediaType.OciImageManifest);
}

Expand Down
5 changes: 5 additions & 0 deletions src/Bicep.Core/Semantics/ArmTemplateSemanticModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,11 @@ private ITypeReference GetType(ITemplateSchemaNode schemaNode, bool allowLooseAs
{
try
{
if (SourceFile.Template is null)
{
return null;
}

return TemplateEngine.ResolveSchemaReferences(SourceFile.Template, schemaNode).Metadata?.Value;
}
catch (TemplateValidationException)
Expand Down
21 changes: 10 additions & 11 deletions src/Bicep.Core/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -189,17 +189,6 @@
"resolved": "8.0.10",
"contentHash": "xT8jYjlroY7SLbGtoV9vUTVW/TPgodL4Egc31a444Xe0TMytLZ3UlKQ0kxMZsy/CrWsFB6wtKnSG1SsXcWreew=="
},
"Microsoft.PowerPlatform.ResourceStack": {
"type": "Direct",
"requested": "[7.0.0.2070, )",
"resolved": "7.0.0.2070",
"contentHash": "QdAUj9es6eD7TJaBHSpzrcKnDeqPIuZVWFRieebnLVSQx87OShgLHEpPJ5Iebk7IRawQgYlC6u0GDA4IZTP63Q==",
"dependencies": {
"Microsoft.Windows.Compatibility": "8.0.8",
"Newtonsoft.Json": "13.0.3",
"System.Formats.Asn1": "8.0.1"
}
},
"Microsoft.SourceLink.GitHub": {
"type": "Direct",
"requested": "[8.0.0, )",
Expand Down Expand Up @@ -500,6 +489,16 @@
"resolved": "1.1.3",
"contentHash": "3Wrmi0kJDzClwAC+iBdUBpEKmEle8FQNsCs77fkiOIw/9oYA07bL1EZNX0kQ2OMN3xpwvl0vAtOCYY3ndDNlhQ=="
},
"Microsoft.PowerPlatform.ResourceStack": {
"type": "Transitive",
"resolved": "7.0.0.2070",
"contentHash": "QdAUj9es6eD7TJaBHSpzrcKnDeqPIuZVWFRieebnLVSQx87OShgLHEpPJ5Iebk7IRawQgYlC6u0GDA4IZTP63Q==",
"dependencies": {
"Microsoft.Windows.Compatibility": "8.0.8",
"Newtonsoft.Json": "13.0.3",
"System.Formats.Asn1": "8.0.1"
}
},
"Microsoft.SourceLink.Common": {
"type": "Transitive",
"resolved": "8.0.0",
Expand Down
1 change: 0 additions & 1 deletion src/Bicep.Decompiler.IntegrationTests/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -1522,7 +1522,6 @@
"Microsoft.Extensions.DependencyInjection": "[8.0.1, )",
"Microsoft.Extensions.Http": "[8.0.1, )",
"Microsoft.Graph.Bicep.Types": "[0.1.7-preview, )",
"Microsoft.PowerPlatform.ResourceStack": "[7.0.0.2070, )",
"Newtonsoft.Json": "[13.0.3, )",
"Semver": "[2.3.0, )",
"SharpYaml": "[2.1.1, )",
Expand Down
1 change: 0 additions & 1 deletion src/Bicep.Decompiler.UnitTests/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -1522,7 +1522,6 @@
"Microsoft.Extensions.DependencyInjection": "[8.0.1, )",
"Microsoft.Extensions.Http": "[8.0.1, )",
"Microsoft.Graph.Bicep.Types": "[0.1.7-preview, )",
"Microsoft.PowerPlatform.ResourceStack": "[7.0.0.2070, )",
"Newtonsoft.Json": "[13.0.3, )",
"Semver": "[2.3.0, )",
"SharpYaml": "[2.1.1, )",
Expand Down
1 change: 0 additions & 1 deletion src/Bicep.Decompiler/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -972,7 +972,6 @@
"Microsoft.Extensions.DependencyInjection": "[8.0.1, )",
"Microsoft.Extensions.Http": "[8.0.1, )",
"Microsoft.Graph.Bicep.Types": "[0.1.7-preview, )",
"Microsoft.PowerPlatform.ResourceStack": "[7.0.0.2070, )",
"Newtonsoft.Json": "[13.0.3, )",
"Semver": "[2.3.0, )",
"SharpYaml": "[2.1.1, )",
Expand Down
1 change: 0 additions & 1 deletion src/Bicep.LangServer.IntegrationTests/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -1533,7 +1533,6 @@
"Microsoft.Extensions.DependencyInjection": "[8.0.1, )",
"Microsoft.Extensions.Http": "[8.0.1, )",
"Microsoft.Graph.Bicep.Types": "[0.1.7-preview, )",
"Microsoft.PowerPlatform.ResourceStack": "[7.0.0.2070, )",
"Newtonsoft.Json": "[13.0.3, )",
"Semver": "[2.3.0, )",
"SharpYaml": "[2.1.1, )",
Expand Down
1 change: 0 additions & 1 deletion src/Bicep.LangServer.UnitTests/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -1542,7 +1542,6 @@
"Microsoft.Extensions.DependencyInjection": "[8.0.1, )",
"Microsoft.Extensions.Http": "[8.0.1, )",
"Microsoft.Graph.Bicep.Types": "[0.1.7-preview, )",
"Microsoft.PowerPlatform.ResourceStack": "[7.0.0.2070, )",
"Newtonsoft.Json": "[13.0.3, )",
"Semver": "[2.3.0, )",
"SharpYaml": "[2.1.1, )",
Expand Down
1 change: 0 additions & 1 deletion src/Bicep.LangServer/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -1364,7 +1364,6 @@
"Microsoft.Extensions.DependencyInjection": "[8.0.1, )",
"Microsoft.Extensions.Http": "[8.0.1, )",
"Microsoft.Graph.Bicep.Types": "[0.1.7-preview, )",
"Microsoft.PowerPlatform.ResourceStack": "[7.0.0.2070, )",
"Newtonsoft.Json": "[13.0.3, )",
"Semver": "[2.3.0, )",
"SharpYaml": "[2.1.1, )",
Expand Down
1 change: 0 additions & 1 deletion src/Bicep.Local.Deploy.IntegrationTests/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -1532,7 +1532,6 @@
"Microsoft.Extensions.DependencyInjection": "[8.0.1, )",
"Microsoft.Extensions.Http": "[8.0.1, )",
"Microsoft.Graph.Bicep.Types": "[0.1.7-preview, )",
"Microsoft.PowerPlatform.ResourceStack": "[7.0.0.2070, )",
"Newtonsoft.Json": "[13.0.3, )",
"Semver": "[2.3.0, )",
"SharpYaml": "[2.1.1, )",
Expand Down
12 changes: 8 additions & 4 deletions src/Bicep.Local.Deploy/LocalDeploymentEngineHost.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,22 +54,25 @@ public override Task<ResourceGroupInfo> GetResourceGroup(
string resourceGroupName,
CancellationToken cancellationToken,
string oboToken,
string oboCorrelationId)
string oboCorrelationId,
string auxToken)
=> throw new NotImplementedException();

public override Task<IReadOnlyList<ResourceId>> GetTrackedResourceIds(
ResourceGroupInfo resourceGroup,
Func<ResourceGroupLevelResourceId, bool> resourceIdFilterFunc,
CancellationToken cancellationToken,
string oboToken,
string oboCorrelationId)
string oboCorrelationId,
string auxToken)
=> throw new NotImplementedException();

public override Task<ResourceTypeRegistrationInfo[]> FindRegistrationsForSubscription(
string subscriptionId,
CancellationToken cancellationToken,
string oboToken,
string oboCorrelationId)
string oboCorrelationId,
string auxToken)
=> throw new NotImplementedException();

public override Task<HttpResponseMessage> CallFrontdoorService(
Expand All @@ -78,6 +81,7 @@ public override Task<HttpResponseMessage> CallFrontdoorService(
CancellationToken cancellationToken,
string oboToken,
string oboCorrelationId,
string auxToken,
HttpRequestMessage requestMessage = null,
HttpContent content = null,
Action<HttpRequestHeaders> addHeadersFunc = null,
Expand Down Expand Up @@ -144,7 +148,7 @@ public override async Task<HttpResponseMessage> CallExtensibilityHostV2(
protected override Task<JToken> GetEnvironmentKey()
=> Task.FromResult<JToken>(new JObject());

public override Task ValidateDeploymentLocationAcceptable(IDeploymentRequestContext deploymentContext, string deploymentLocation, string oboToken, string oboCorrelationId)
public override Task ValidateDeploymentLocationAcceptable(IDeploymentRequestContext deploymentContext, string deploymentLocation, string oboToken, string oboCorrelationId, string auxToken)
=> Task.CompletedTask;

public override void AddAsyncNotificationUri(HttpRequestHeaders httpHeaders, BackgroundJob backgroundJob, DeploymentResourceJobMetadata deploymentJobMetadata, JobLogger jobLogger)
Expand Down
10 changes: 10 additions & 0 deletions src/Bicep.Local.Deploy/LocalDeploymentSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using Azure.Deployments.Engine.Host.Azure.Definitions;
using Azure.Deployments.Engine.Host.Azure.Interfaces;

namespace Bicep.Local.Deploy;
Expand Down Expand Up @@ -256,6 +257,15 @@ public class LocalDeploymentSettings : IAzureDeploymentSettings

public TimeSpan DeploymentSecureOutputsExpirationTime => throw new NotImplementedException();

public ExtensibilityHostRoutingRule[] ExtensibilityHostRoutingRules => [
new()
{
EndpointUri = new Uri("https://example.com"),
Locations = ["*"]
}];

public IReadOnlyDictionary<string, Uri> ExtensibilityHostUriOverridesBySubscriptionId => ImmutableDictionary<string, Uri>.Empty;

IReadOnlyDictionary<string, IEnumerable<string>> IAzureDeploymentSettings.DisabledTenantDictionary => ImmutableDictionary<string, IEnumerable<string>>.Empty;

IReadOnlyDictionary<string, IEnumerable<string>> IAzureDeploymentSettings.DisabledSubscriptionDictionary => ImmutableDictionary<string, IEnumerable<string>>.Empty;
Expand Down
1 change: 0 additions & 1 deletion src/Bicep.Local.Deploy/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -1251,7 +1251,6 @@
"Microsoft.Extensions.DependencyInjection": "[8.0.1, )",
"Microsoft.Extensions.Http": "[8.0.1, )",
"Microsoft.Graph.Bicep.Types": "[0.1.7-preview, )",
"Microsoft.PowerPlatform.ResourceStack": "[7.0.0.2070, )",
"Newtonsoft.Json": "[13.0.3, )",
"Semver": "[2.3.0, )",
"SharpYaml": "[2.1.1, )",
Expand Down
1 change: 0 additions & 1 deletion src/Bicep.Local.Extension.Mock/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -1040,7 +1040,6 @@
"Microsoft.Extensions.DependencyInjection": "[8.0.1, )",
"Microsoft.Extensions.Http": "[8.0.1, )",
"Microsoft.Graph.Bicep.Types": "[0.1.7-preview, )",
"Microsoft.PowerPlatform.ResourceStack": "[7.0.0.2070, )",
"Newtonsoft.Json": "[13.0.3, )",
"Semver": "[2.3.0, )",
"SharpYaml": "[2.1.1, )",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1739,7 +1739,6 @@
"Microsoft.Extensions.DependencyInjection": "[8.0.1, )",
"Microsoft.Extensions.Http": "[8.0.1, )",
"Microsoft.Graph.Bicep.Types": "[0.1.7-preview, )",
"Microsoft.PowerPlatform.ResourceStack": "[7.0.0.2070, )",
"Newtonsoft.Json": "[13.0.3, )",
"Semver": "[2.3.0, )",
"SharpYaml": "[2.1.1, )",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1733,7 +1733,6 @@
"Microsoft.Extensions.DependencyInjection": "[8.0.1, )",
"Microsoft.Extensions.Http": "[8.0.1, )",
"Microsoft.Graph.Bicep.Types": "[0.1.7-preview, )",
"Microsoft.PowerPlatform.ResourceStack": "[7.0.0.2070, )",
"Newtonsoft.Json": "[13.0.3, )",
"Semver": "[2.3.0, )",
"SharpYaml": "[2.1.1, )",
Expand Down
1 change: 0 additions & 1 deletion src/Bicep.RegistryModuleTool.UnitTests/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -1739,7 +1739,6 @@
"Microsoft.Extensions.DependencyInjection": "[8.0.1, )",
"Microsoft.Extensions.Http": "[8.0.1, )",
"Microsoft.Graph.Bicep.Types": "[0.1.7-preview, )",
"Microsoft.PowerPlatform.ResourceStack": "[7.0.0.2070, )",
"Newtonsoft.Json": "[13.0.3, )",
"Semver": "[2.3.0, )",
"SharpYaml": "[2.1.1, )",
Expand Down
1 change: 0 additions & 1 deletion src/Bicep.RegistryModuleTool/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -1203,7 +1203,6 @@
"Microsoft.Extensions.DependencyInjection": "[8.0.1, )",
"Microsoft.Extensions.Http": "[8.0.1, )",
"Microsoft.Graph.Bicep.Types": "[0.1.7-preview, )",
"Microsoft.PowerPlatform.ResourceStack": "[7.0.0.2070, )",
"Newtonsoft.Json": "[13.0.3, )",
"Semver": "[2.3.0, )",
"SharpYaml": "[2.1.1, )",
Expand Down
Loading

0 comments on commit dc5238a

Please sign in to comment.