We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93eaeae commit cca78caCopy full SHA for cca78ca
csharp/ql/integration-tests/all-platforms/dotnet_pack/test.py
@@ -2,10 +2,10 @@
2
from create_database_utils import *
3
from diagnostics_test_utils import *
4
5
-run_codeql_database_create(['dotnet pack'], db=None, lang="csharp")
+run_codeql_database_create(['dotnet pack -o nugetpackage'], db=None, lang="csharp")
6
7
## Check that the NuGet package is created.
8
-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"):
9
raise Exception("The NuGet package was not created.")
10
11
check_diagnostics()
0 commit comments