Skip to content

Commit

Permalink
pinning transitive dependency forward (#3760) (#3813)
Browse files Browse the repository at this point in the history
Co-authored-by: Matthew Henderson <mattchenderson@users.noreply.github.com>
  • Loading branch information
v-imohammad and mattchenderson authored Sep 5, 2024
1 parent ba74a6e commit 421f014
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/Azure.Functions.Cli/Azure.Functions.Cli.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk" InitialTargets="ExcludeWorkersFromReadyToRun">
<Project Sdk="Microsoft.NET.Sdk" InitialTargets="ExcludeWorkersFromReadyToRun">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
Expand Down Expand Up @@ -297,6 +297,7 @@
<PackageReference Include="Microsoft.Identity.Client" Version="4.61.3" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="NuGet.Packaging" Version="5.11.6" />
<PackageReference Include="System.Formats.Asn1" Version="6.0.1" />
<PackageReference Include="WindowsAzure.Storage" Version="9.3.1" />
<PackageReference Include="YamlDotNet" Version="6.0.0" />
</ItemGroup>
Expand Down
3 changes: 2 additions & 1 deletion test/Azure.Functions.Cli.Tests/E2E/InitTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ public Task init_with_worker_runtime(string workerRuntime)
"Writing local.settings.json",
$".vscode{Path.DirectorySeparatorChar}extensions.json",
},
OutputDoesntContain = new[] { "Initialized empty Git repository" }
OutputDoesntContain = new[] { "Initialized empty Git repository" },
CommandTimeout = TimeSpan.FromSeconds(60)
}, _output);
}

Expand Down

0 comments on commit 421f014

Please sign in to comment.