Skip to content

Commit

Permalink
Merge pull request #14852 from github/aeisenberg/backport/14825
Browse files Browse the repository at this point in the history
Backport PR #14825
  • Loading branch information
oscarsj authored Nov 21, 2023
2 parents 79b044d + 9db4f1a commit 67e0725
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions csharp/ql/integration-tests/all-platforms/dotnet_pack/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
from create_database_utils import *
from diagnostics_test_utils import *

run_codeql_database_create(['dotnet pack'], db=None, lang="csharp")
run_codeql_database_create(['dotnet pack -o nugetpackage'], db=None, lang="csharp")

## Check that the NuGet package is created.
if not os.path.isfile("bin/Debug/dotnet_pack.1.0.0.nupkg"):
if not os.path.isfile("nugetpackage/dotnet_pack.1.0.0.nupkg"):
raise Exception("The NuGet package was not created.")

check_diagnostics()
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

<IsPackable>false</IsPackable>
<OutputType>Exe</OutputType>
<SelfContained>false</SelfContained>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 67e0725

Please sign in to comment.