Skip to content

Commit a36a85d

Browse files
committed
Fix nuget removing js files from csproj
1 parent 7d5820e commit a36a85d

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

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

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -828,8 +828,12 @@
828828
<Link>edge\edge.js</Link>
829829
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
830830
</Content>
831-
<Content Include="azurefunctions\http\request.js" />
832-
<Content Include="azurefunctions\http\response.js" />
831+
<Content Include="azurefunctions\http\request.js">
832+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
833+
</Content>
834+
<Content Include="azurefunctions\http\response.js">
835+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
836+
</Content>
833837
<Content Include="azurefunctions\proxy\RequestResponseOverride.json">
834838
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
835839
</Content>

0 commit comments

Comments
 (0)