C#: Move `BuildScript.cs` and friends to `Semmle.Util`

This commit is contained in:
Tom Hvitved 2024-02-29 08:49:20 +01:00
Родитель 3ab6f222d0
Коммит c6426d8858
9 изменённых файлов: 13 добавлений и 4 удалений

Просмотреть файл

@ -1,5 +1,6 @@
using Semmle.Autobuild.Shared;
using Semmle.Extraction.CSharp;
using Semmle.Util;
namespace Semmle.Autobuild.CSharp
{

Просмотреть файл

@ -1,5 +1,7 @@
using System;
using Semmle.Autobuild.Shared;
using Semmle.Util;
namespace Semmle.Autobuild.CSharp
{

Просмотреть файл

@ -1,4 +1,5 @@
using Semmle.Autobuild.Shared;
using Semmle.Util;
namespace Semmle.Autobuild.CSharp
{

Просмотреть файл

@ -1,5 +1,7 @@
using System.Collections.Generic;
using System.Linq;
using Semmle.Util;
using Semmle.Util.Logging;
namespace Semmle.Autobuild.Shared

Просмотреть файл

@ -1,4 +1,6 @@
namespace Semmle.Autobuild.Shared
using Semmle.Util;
namespace Semmle.Autobuild.Shared
{
/// <summary>
/// Execute the build_command rule.

Просмотреть файл

@ -1,5 +1,6 @@
using System.Collections.Generic;
using System.Linq;
using Semmle.Util;
namespace Semmle.Autobuild.Shared
{

Просмотреть файл

@ -8,7 +8,7 @@ using System.Runtime.InteropServices;
using System.Xml;
using Semmle.Util;
namespace Semmle.Autobuild.Shared
namespace Semmle.Util
{
public delegate void BuildOutputHandler(string? data);

Просмотреть файл

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.IO;
namespace Semmle.Autobuild.Shared
namespace Semmle.Util
{
/// <summary>
/// A build script.

Просмотреть файл

@ -2,7 +2,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Semmle.Autobuild.Shared
namespace Semmle.Util
{
/// <summary>
/// Utility to construct a build command.