Skip to content

Commit 421f014

Browse files
pinning transitive dependency forward (#3760) (#3813)
Co-authored-by: Matthew Henderson <[email protected]>
1 parent ba74a6e commit 421f014

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/Azure.Functions.Cli/Azure.Functions.Cli.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk" InitialTargets="ExcludeWorkersFromReadyToRun">
1+
<Project Sdk="Microsoft.NET.Sdk" InitialTargets="ExcludeWorkersFromReadyToRun">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
44
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
@@ -297,6 +297,7 @@
297297
<PackageReference Include="Microsoft.Identity.Client" Version="4.61.3" />
298298
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
299299
<PackageReference Include="NuGet.Packaging" Version="5.11.6" />
300+
<PackageReference Include="System.Formats.Asn1" Version="6.0.1" />
300301
<PackageReference Include="WindowsAzure.Storage" Version="9.3.1" />
301302
<PackageReference Include="YamlDotNet" Version="6.0.0" />
302303
</ItemGroup>

test/Azure.Functions.Cli.Tests/E2E/InitTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ public Task init_with_worker_runtime(string workerRuntime)
5454
"Writing local.settings.json",
5555
$".vscode{Path.DirectorySeparatorChar}extensions.json",
5656
},
57-
OutputDoesntContain = new[] { "Initialized empty Git repository" }
57+
OutputDoesntContain = new[] { "Initialized empty Git repository" },
58+
CommandTimeout = TimeSpan.FromSeconds(60)
5859
}, _output);
5960
}
6061

0 commit comments

Comments
 (0)