mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
21 lines
523 B
C#
21 lines
523 B
C#
// semmle-extractor-options: /nostdlib /noconfig
|
|
// semmle-extractor-options: --load-sources-from-project:${testdir}/../../../resources/stubs/_frameworks/Microsoft.NETCore.App/Microsoft.NETCore.App.csproj
|
|
// semmle-extractor-options: ${testdir}/../../../resources/stubs/System.Web.cs
|
|
|
|
using System;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace Test
|
|
{
|
|
|
|
class CodeBehindPage : Page
|
|
{
|
|
public string chooseImage()
|
|
{
|
|
return "some url";
|
|
}
|
|
}
|
|
}
|