From 75ed1f7b001b1a5f8f6444363c3719c329363432 Mon Sep 17 00:00:00 2001 From: Michael Hohn Date: Tue, 3 Dec 2024 11:44:45 -0800 Subject: [PATCH] Add solution file --- README.org | 6 ++++++ codeql-intro-csharp.sln | 31 +++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 codeql-intro-csharp.sln diff --git a/README.org b/README.org index 77bc9d3..3a9e5f0 100644 --- a/README.org +++ b/README.org @@ -223,6 +223,12 @@ #+END_SRC +* TODO Optional: Multiple Builds + #+BEGIN_SRC sh + dotnet sln codeql-intro-csharp.sln list + dotnet build codeql-intro-csharp.sln + #+END_SRC + * TODO CodeQL VS Code Setup * TODO CodeQL for Devops and Administrators - https://docs.github.com/en/code-security/codeql-cli/codeql-cli-manual diff --git a/codeql-intro-csharp.sln b/codeql-intro-csharp.sln new file mode 100644 index 0000000..800c1f8 --- /dev/null +++ b/codeql-intro-csharp.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.5.002.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HelloWorld", "HelloWorld\HelloWorld.csproj", "{CF5EBE3E-C110-4AFE-A855-8B1976FD6A93}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SqliDemo", "SqliDemo\SqliDemo.csproj", "{B6AA7037-01B1-4E62-A601-DAEA3124A38A}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {CF5EBE3E-C110-4AFE-A855-8B1976FD6A93}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CF5EBE3E-C110-4AFE-A855-8B1976FD6A93}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CF5EBE3E-C110-4AFE-A855-8B1976FD6A93}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CF5EBE3E-C110-4AFE-A855-8B1976FD6A93}.Release|Any CPU.Build.0 = Release|Any CPU + {B6AA7037-01B1-4E62-A601-DAEA3124A38A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B6AA7037-01B1-4E62-A601-DAEA3124A38A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B6AA7037-01B1-4E62-A601-DAEA3124A38A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B6AA7037-01B1-4E62-A601-DAEA3124A38A}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {809D2D7A-143C-4EF5-8C1A-30FD9973FD78} + EndGlobalSection +EndGlobal