2018-11-22 04:57:18 +01:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Diagnostics;
|
2019-06-07 00:15:43 +02:00
|
|
|
using System.Diagnostics.CodeAnalysis;
|
2018-11-22 04:57:18 +01:00
|
|
|
using System.IO;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Security.Cryptography;
|
2019-02-17 02:03:56 +01:00
|
|
|
using System.Text;
|
|
|
|
using System.Text.RegularExpressions;
|
2019-06-07 00:15:43 +02:00
|
|
|
using System.Xml.Linq;
|
2018-11-22 04:57:18 +01:00
|
|
|
using ICSharpCode.SharpZipLib.Zip;
|
|
|
|
using ILRepacking;
|
|
|
|
using Nuke.Common;
|
2019-10-15 04:10:53 +02:00
|
|
|
using Nuke.Common.CI.AppVeyor;
|
2018-11-22 04:57:18 +01:00
|
|
|
using Nuke.Common.Git;
|
2019-05-31 03:20:01 +02:00
|
|
|
using Nuke.Common.IO;
|
2018-11-22 04:57:18 +01:00
|
|
|
using Nuke.Common.ProjectModel;
|
|
|
|
using Nuke.Common.Tools.DotNet;
|
2019-02-17 02:03:56 +01:00
|
|
|
using Nuke.Common.Tools.GitVersion;
|
|
|
|
using Nuke.Common.Tools.SignTool;
|
2018-11-22 04:57:18 +01:00
|
|
|
using static Nuke.Common.IO.FileSystemTasks;
|
|
|
|
using static Nuke.Common.IO.PathConstruction;
|
|
|
|
using static Nuke.Common.Tools.DotNet.DotNetTasks;
|
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
namespace LibHacBuild
|
2018-11-22 04:57:18 +01:00
|
|
|
{
|
2019-02-17 02:03:56 +01:00
|
|
|
partial class Build : NukeBuild
|
|
|
|
{
|
|
|
|
public static int Main() => Execute<Build>(x => x.Results);
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
[Parameter("Configuration to build - Default is 'Debug' (local) or 'Release' (server)")]
|
2019-05-31 04:00:22 +02:00
|
|
|
public readonly string Configuration = IsLocalBuild ? "Debug" : "Release";
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-04-19 22:13:07 +02:00
|
|
|
[Solution("LibHac.sln")] readonly Solution _solution;
|
|
|
|
[GitRepository] readonly GitRepository _gitRepository;
|
|
|
|
[GitVersion] readonly GitVersion _gitVersion;
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
AbsolutePath SourceDirectory => RootDirectory / "src";
|
|
|
|
AbsolutePath TestsDirectory => RootDirectory / "tests";
|
|
|
|
AbsolutePath ArtifactsDirectory => RootDirectory / "artifacts";
|
|
|
|
AbsolutePath SignedArtifactsDirectory => ArtifactsDirectory / "signed";
|
|
|
|
AbsolutePath TempDirectory => RootDirectory / ".tmp";
|
2019-10-15 04:10:53 +02:00
|
|
|
AbsolutePath CliCoreDir => TempDirectory / "hactoolnet_netcoreapp3.0";
|
2019-02-17 02:03:56 +01:00
|
|
|
AbsolutePath CliFrameworkDir => TempDirectory / "hactoolnet_net46";
|
2019-06-07 00:15:43 +02:00
|
|
|
AbsolutePath CliNativeDir => TempDirectory / "hactoolnet_native";
|
2019-02-17 02:03:56 +01:00
|
|
|
AbsolutePath CliFrameworkZip => ArtifactsDirectory / "hactoolnet.zip";
|
|
|
|
AbsolutePath CliCoreZip => ArtifactsDirectory / "hactoolnet_netcore.zip";
|
2019-06-07 00:15:43 +02:00
|
|
|
AbsolutePath NugetConfig => RootDirectory / "nuget.config";
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
AbsolutePath CliMergedExe => ArtifactsDirectory / "hactoolnet.exe";
|
2019-06-07 00:15:43 +02:00
|
|
|
AbsolutePath CliNativeExe => ArtifactsDirectory / "hactoolnet_native.exe";
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-04-19 22:13:07 +02:00
|
|
|
Project LibHacProject => _solution.GetProject("LibHac").NotNull();
|
|
|
|
Project LibHacTestProject => _solution.GetProject("LibHac.Tests").NotNull();
|
|
|
|
Project HactoolnetProject => _solution.GetProject("hactoolnet").NotNull();
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
string AppVeyorVersion { get; set; }
|
|
|
|
Dictionary<string, object> VersionProps { get; set; } = new Dictionary<string, object>();
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-10-15 04:10:53 +02:00
|
|
|
private const string DotNetFeedSource = "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json";
|
2019-02-17 02:03:56 +01:00
|
|
|
const string CertFileName = "cert.pfx";
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-06-07 00:15:43 +02:00
|
|
|
private bool IsMasterBranch => _gitVersion?.BranchName.Equals("master") ?? false;
|
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
Target SetVersion => _ => _
|
2019-04-19 22:13:07 +02:00
|
|
|
.OnlyWhenStatic(() => _gitRepository != null)
|
2019-02-17 02:03:56 +01:00
|
|
|
.Executes(() =>
|
|
|
|
{
|
2019-04-19 22:13:07 +02:00
|
|
|
AppVeyorVersion = $"{_gitVersion.AssemblySemVer}";
|
|
|
|
if (!string.IsNullOrWhiteSpace(_gitVersion.PreReleaseTag))
|
2019-02-17 03:50:41 +01:00
|
|
|
{
|
2019-04-19 22:13:07 +02:00
|
|
|
AppVeyorVersion += $"-{_gitVersion.PreReleaseTag}+{_gitVersion.Sha.Substring(0, 8)}";
|
2019-02-17 03:50:41 +01:00
|
|
|
}
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-04-19 22:13:07 +02:00
|
|
|
string suffix = _gitVersion.PreReleaseTag;
|
2019-02-17 03:31:35 +01:00
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(suffix))
|
|
|
|
{
|
2019-04-19 22:13:07 +02:00
|
|
|
if (!_gitRepository.IsOnMasterBranch())
|
2019-02-17 03:31:35 +01:00
|
|
|
{
|
|
|
|
suffix = $"-{suffix}";
|
|
|
|
}
|
|
|
|
|
2019-04-19 22:13:07 +02:00
|
|
|
suffix += $"+{_gitVersion.Sha.Substring(0, 8)}";
|
2019-02-17 03:31:35 +01:00
|
|
|
}
|
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
VersionProps = new Dictionary<string, object>
|
|
|
|
{
|
2019-04-19 22:13:07 +02:00
|
|
|
["VersionPrefix"] = _gitVersion.AssemblySemVer,
|
2019-02-17 03:31:35 +01:00
|
|
|
["VersionSuffix"] = suffix
|
2019-02-17 02:03:56 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
Console.WriteLine($"Building version {AppVeyorVersion}");
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
if (Host == HostType.AppVeyor)
|
|
|
|
{
|
|
|
|
SetAppVeyorVersion(AppVeyorVersion);
|
|
|
|
}
|
|
|
|
});
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
Target Clean => _ => _
|
|
|
|
.Executes(() =>
|
|
|
|
{
|
2019-05-31 03:20:01 +02:00
|
|
|
List<string> toDelete = GlobDirectories(SourceDirectory, "**/bin", "**/obj")
|
|
|
|
.Concat(GlobDirectories(TestsDirectory, "**/bin", "**/obj")).ToList();
|
|
|
|
|
|
|
|
foreach (string dir in toDelete)
|
|
|
|
{
|
|
|
|
DeleteDirectory(dir);
|
|
|
|
}
|
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
EnsureCleanDirectory(ArtifactsDirectory);
|
|
|
|
EnsureCleanDirectory(CliCoreDir);
|
|
|
|
EnsureCleanDirectory(CliFrameworkDir);
|
2019-06-07 00:15:43 +02:00
|
|
|
EnsureCleanDirectory(CliNativeDir);
|
2019-02-17 02:03:56 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
Target Restore => _ => _
|
|
|
|
.DependsOn(Clean)
|
|
|
|
.Executes(() =>
|
|
|
|
{
|
|
|
|
DotNetRestoreSettings settings = new DotNetRestoreSettings()
|
2019-04-19 22:13:07 +02:00
|
|
|
.SetProjectFile(_solution);
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
DotNetRestore(s => settings);
|
|
|
|
});
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
Target Compile => _ => _
|
|
|
|
.DependsOn(Restore, SetVersion)
|
|
|
|
.Executes(() =>
|
2018-11-22 04:57:18 +01:00
|
|
|
{
|
2019-02-17 02:03:56 +01:00
|
|
|
DotNetBuildSettings buildSettings = new DotNetBuildSettings()
|
2019-04-19 22:13:07 +02:00
|
|
|
.SetProjectFile(_solution)
|
2019-02-17 02:03:56 +01:00
|
|
|
.EnableNoRestore()
|
2019-05-31 04:00:22 +02:00
|
|
|
.SetConfiguration(Configuration)
|
2019-03-15 18:27:43 +01:00
|
|
|
.SetProperties(VersionProps)
|
|
|
|
.SetProperty("BuildType", "Release");
|
2019-02-17 02:03:56 +01:00
|
|
|
|
|
|
|
DotNetBuild(s => buildSettings);
|
|
|
|
|
|
|
|
DotNetPublishSettings publishSettings = new DotNetPublishSettings()
|
|
|
|
.EnableNoRestore()
|
2019-05-31 04:00:22 +02:00
|
|
|
.SetConfiguration(Configuration);
|
2019-02-17 02:03:56 +01:00
|
|
|
|
2018-11-22 04:57:18 +01:00
|
|
|
DotNetPublish(s => publishSettings
|
|
|
|
.SetProject(HactoolnetProject)
|
2019-10-15 04:10:53 +02:00
|
|
|
.SetFramework("netcoreapp3.0")
|
2019-02-17 02:03:56 +01:00
|
|
|
.SetOutput(CliCoreDir)
|
2019-08-10 03:29:06 +02:00
|
|
|
.SetNoBuild(true)
|
2019-02-17 02:03:56 +01:00
|
|
|
.SetProperties(VersionProps));
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-08-10 03:29:06 +02:00
|
|
|
DotNetPublish(s => publishSettings
|
|
|
|
.SetProject(HactoolnetProject)
|
|
|
|
.SetFramework("net46")
|
|
|
|
.SetOutput(CliFrameworkDir)
|
|
|
|
.SetNoBuild(true)
|
|
|
|
.SetProperties(VersionProps));
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
// Hack around OS newline differences
|
|
|
|
if (EnvironmentInfo.IsUnix)
|
|
|
|
{
|
|
|
|
foreach (string filename in Directory.EnumerateFiles(CliCoreDir, "*.json"))
|
|
|
|
{
|
|
|
|
ReplaceLineEndings(filename);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
Target Pack => _ => _
|
|
|
|
.DependsOn(Compile)
|
|
|
|
.Executes(() =>
|
|
|
|
{
|
|
|
|
DotNetPackSettings settings = new DotNetPackSettings()
|
|
|
|
.SetProject(LibHacProject)
|
|
|
|
.EnableNoBuild()
|
2019-05-31 04:00:22 +02:00
|
|
|
.SetConfiguration(Configuration)
|
2019-02-17 02:03:56 +01:00
|
|
|
.EnableIncludeSymbols()
|
|
|
|
.SetSymbolPackageFormat(DotNetSymbolPackageFormat.snupkg)
|
|
|
|
.SetOutputDirectory(ArtifactsDirectory)
|
|
|
|
.SetProperties(VersionProps);
|
|
|
|
|
|
|
|
DotNetPack(s => settings);
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
foreach (string filename in Directory.EnumerateFiles(ArtifactsDirectory, "*.*nupkg"))
|
|
|
|
{
|
|
|
|
RepackNugetPackage(filename);
|
|
|
|
}
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
if (Host != HostType.AppVeyor) return;
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
foreach (string filename in Directory.EnumerateFiles(ArtifactsDirectory, "*.*nupkg"))
|
|
|
|
{
|
|
|
|
PushArtifact(filename);
|
|
|
|
}
|
|
|
|
});
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
Target Merge => _ => _
|
|
|
|
.DependsOn(Compile)
|
2019-08-10 03:29:06 +02:00
|
|
|
// Merging on Linux blocked by https://github.com/gluck/il-repack/issues/230
|
|
|
|
.OnlyWhenStatic(() => !EnvironmentInfo.IsUnix)
|
2019-02-17 02:03:56 +01:00
|
|
|
.Executes(() =>
|
2018-11-22 04:57:18 +01:00
|
|
|
{
|
2019-02-17 02:03:56 +01:00
|
|
|
string[] libraries = Directory.GetFiles(CliFrameworkDir, "*.dll");
|
|
|
|
var cliList = new List<string> { CliFrameworkDir / "hactoolnet.exe" };
|
|
|
|
cliList.AddRange(libraries);
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
var cliOptions = new RepackOptions
|
|
|
|
{
|
|
|
|
OutputFile = CliMergedExe,
|
|
|
|
InputAssemblies = cliList.ToArray(),
|
|
|
|
SearchDirectories = new[] { "." }
|
|
|
|
};
|
|
|
|
|
|
|
|
new ILRepack(cliOptions).Repack();
|
|
|
|
|
|
|
|
foreach (AbsolutePath file in ArtifactsDirectory.GlobFiles("*.exe.config"))
|
|
|
|
{
|
|
|
|
File.Delete(file);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Host == HostType.AppVeyor)
|
|
|
|
{
|
|
|
|
PushArtifact(CliMergedExe);
|
|
|
|
}
|
|
|
|
});
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
Target Test => _ => _
|
|
|
|
.DependsOn(Compile)
|
|
|
|
.Executes(() =>
|
2018-11-22 04:57:18 +01:00
|
|
|
{
|
2019-02-17 02:03:56 +01:00
|
|
|
DotNetTestSettings settings = new DotNetTestSettings()
|
|
|
|
.SetProjectFile(LibHacTestProject)
|
|
|
|
.EnableNoBuild()
|
2019-05-31 04:00:22 +02:00
|
|
|
.SetConfiguration(Configuration);
|
2019-02-17 02:03:56 +01:00
|
|
|
|
2019-10-15 04:10:53 +02:00
|
|
|
if (EnvironmentInfo.IsUnix) settings = settings.SetProperty("TargetFramework", "netcoreapp3.0");
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
DotNetTest(s => settings);
|
|
|
|
});
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
Target Zip => _ => _
|
|
|
|
.DependsOn(Pack)
|
|
|
|
.Executes(() =>
|
2018-11-22 04:57:18 +01:00
|
|
|
{
|
2019-02-17 02:03:56 +01:00
|
|
|
string[] namesFx = Directory.EnumerateFiles(CliFrameworkDir, "*.exe")
|
|
|
|
.Concat(Directory.EnumerateFiles(CliFrameworkDir, "*.dll"))
|
|
|
|
.ToArray();
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
string[] namesCore = Directory.EnumerateFiles(CliCoreDir, "*.json")
|
|
|
|
.Concat(Directory.EnumerateFiles(CliCoreDir, "*.dll"))
|
|
|
|
.ToArray();
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-08-10 03:29:06 +02:00
|
|
|
ZipFiles(CliFrameworkZip, namesFx);
|
|
|
|
Console.WriteLine($"Created {CliFrameworkZip}");
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
ZipFiles(CliCoreZip, namesCore);
|
|
|
|
Console.WriteLine($"Created {CliCoreZip}");
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
if (Host == HostType.AppVeyor)
|
|
|
|
{
|
|
|
|
PushArtifact(CliFrameworkZip);
|
|
|
|
PushArtifact(CliCoreZip);
|
|
|
|
PushArtifact(CliMergedExe);
|
|
|
|
}
|
|
|
|
});
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
Target Publish => _ => _
|
|
|
|
.DependsOn(Test)
|
2019-05-31 03:20:01 +02:00
|
|
|
.OnlyWhenStatic(() => AppVeyor.Instance != null && AppVeyor.Instance.PullRequestTitle == null)
|
2019-02-17 02:03:56 +01:00
|
|
|
.Executes(() =>
|
|
|
|
{
|
|
|
|
AbsolutePath nupkgFile = ArtifactsDirectory.GlobFiles("*.nupkg").Single();
|
|
|
|
AbsolutePath snupkgFile = ArtifactsDirectory.GlobFiles("*.snupkg").Single();
|
|
|
|
|
2019-10-15 04:10:53 +02:00
|
|
|
string apiKey = EnvironmentInfo.GetVariable<string>("myget_api_key");
|
2019-02-17 02:03:56 +01:00
|
|
|
DotNetNuGetPushSettings settings = new DotNetNuGetPushSettings()
|
|
|
|
.SetApiKey(apiKey)
|
|
|
|
.SetSymbolApiKey(apiKey)
|
|
|
|
.SetSource("https://www.myget.org/F/libhac/api/v2/package")
|
|
|
|
.SetSymbolSource("https://www.myget.org/F/libhac/symbols/api/v2/package");
|
|
|
|
|
|
|
|
DotNetNuGetPush(settings.SetTargetPath(nupkgFile));
|
|
|
|
DotNetNuGetPush(settings.SetTargetPath(snupkgFile));
|
|
|
|
});
|
|
|
|
|
2019-06-07 00:15:43 +02:00
|
|
|
[SuppressMessage("ReSharper", "PossibleNullReferenceException")]
|
|
|
|
Target Native => _ => _
|
|
|
|
.DependsOn(SetVersion)
|
|
|
|
.OnlyWhenStatic(() => AppVeyor.Instance != null && IsMasterBranch)
|
|
|
|
.Executes(() =>
|
|
|
|
{
|
|
|
|
AbsolutePath nativeProject = HactoolnetProject.Path.Parent / "hactoolnet_native.csproj";
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
File.Copy(HactoolnetProject, nativeProject, true);
|
|
|
|
DotNet("new nuget --force");
|
|
|
|
|
|
|
|
XDocument doc = XDocument.Load(NugetConfig);
|
|
|
|
doc.Element("configuration").Element("packageSources").Add(new XElement("add",
|
2019-10-15 04:10:53 +02:00
|
|
|
new XAttribute("key", "myget"), new XAttribute("value", DotNetFeedSource)));
|
2019-06-07 00:15:43 +02:00
|
|
|
|
|
|
|
doc.Save(NugetConfig);
|
|
|
|
|
|
|
|
DotNet($"add {nativeProject} package Microsoft.DotNet.ILCompiler --version 1.0.0-alpha-*");
|
|
|
|
|
|
|
|
DotNetPublishSettings publishSettings = new DotNetPublishSettings()
|
|
|
|
.SetConfiguration(Configuration);
|
|
|
|
|
|
|
|
DotNetPublish(s => publishSettings
|
|
|
|
.SetProject(nativeProject)
|
2019-10-15 04:10:53 +02:00
|
|
|
.SetFramework("netcoreapp3.0")
|
2019-06-07 00:15:43 +02:00
|
|
|
.SetRuntime("win-x64")
|
|
|
|
.SetOutput(CliNativeDir)
|
|
|
|
.SetProperties(VersionProps));
|
|
|
|
|
|
|
|
AbsolutePath tempExe = CliNativeDir / "hactoolnet_native.exe";
|
|
|
|
|
|
|
|
File.Copy(tempExe, CliNativeExe, true);
|
|
|
|
|
|
|
|
if (Host == HostType.AppVeyor)
|
|
|
|
{
|
|
|
|
AbsolutePath zipFile = CliNativeExe.Parent / "hactoolnet_native.zip";
|
|
|
|
ZipFiles(zipFile, new[] { CliNativeExe.ToString() });
|
|
|
|
|
|
|
|
PushArtifact(zipFile);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
finally
|
|
|
|
{
|
|
|
|
File.Delete(nativeProject);
|
|
|
|
File.Delete(NugetConfig);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
Target Results => _ => _
|
2019-06-07 00:15:43 +02:00
|
|
|
.DependsOn(Test, Zip, Merge, Sign, Native, Publish)
|
2019-02-17 02:03:56 +01:00
|
|
|
.Executes(() =>
|
|
|
|
{
|
|
|
|
Console.WriteLine("SHA-1:");
|
|
|
|
using (SHA1 sha = SHA1.Create())
|
|
|
|
{
|
|
|
|
foreach (string filename in Directory.EnumerateFiles(ArtifactsDirectory))
|
|
|
|
{
|
|
|
|
using (var stream = new FileStream(filename, FileMode.Open))
|
|
|
|
{
|
|
|
|
string hash = BitConverter.ToString(sha.ComputeHash(stream)).Replace("-", "");
|
|
|
|
Console.WriteLine($"{hash} - {Path.GetFileName(filename)}");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
Target Sign => _ => _
|
|
|
|
.DependsOn(Test, Zip, Merge)
|
|
|
|
.OnlyWhenStatic(() => File.Exists(CertFileName))
|
2019-08-10 03:29:06 +02:00
|
|
|
.OnlyWhenStatic(() => !EnvironmentInfo.IsUnix)
|
2019-02-17 02:03:56 +01:00
|
|
|
.Executes(() =>
|
2018-11-22 04:57:18 +01:00
|
|
|
{
|
2019-02-17 02:03:56 +01:00
|
|
|
string pwd = ReadPassword();
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
if (pwd == string.Empty)
|
|
|
|
{
|
|
|
|
Console.WriteLine("Skipping sign task");
|
|
|
|
return;
|
|
|
|
}
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
SignAndReZip(pwd);
|
|
|
|
});
|
|
|
|
|
|
|
|
public static void ZipFiles(string outFile, IEnumerable<string> files)
|
|
|
|
{
|
|
|
|
using (var s = new ZipOutputStream(File.Create(outFile)))
|
2018-11-22 04:57:18 +01:00
|
|
|
{
|
2019-02-17 02:03:56 +01:00
|
|
|
s.SetLevel(9);
|
|
|
|
|
|
|
|
foreach (string file in files)
|
|
|
|
{
|
|
|
|
var entry = new ZipEntry(Path.GetFileName(file));
|
|
|
|
entry.DateTime = DateTime.UnixEpoch;
|
|
|
|
|
|
|
|
using (FileStream fs = File.OpenRead(file))
|
|
|
|
{
|
|
|
|
entry.Size = fs.Length;
|
|
|
|
s.PutNextEntry(entry);
|
|
|
|
fs.CopyTo(s);
|
|
|
|
}
|
|
|
|
}
|
2018-11-22 04:57:18 +01:00
|
|
|
}
|
2019-02-17 02:03:56 +01:00
|
|
|
}
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
public static void ZipDirectory(string outFile, string directory)
|
2018-11-22 04:57:18 +01:00
|
|
|
{
|
2019-02-17 02:03:56 +01:00
|
|
|
using (var s = new ZipOutputStream(File.Create(outFile)))
|
2018-11-22 04:57:18 +01:00
|
|
|
{
|
2019-02-17 02:03:56 +01:00
|
|
|
s.SetLevel(9);
|
|
|
|
|
|
|
|
foreach (string filePath in Directory.EnumerateFiles(directory, "*", SearchOption.AllDirectories))
|
2018-11-22 04:57:18 +01:00
|
|
|
{
|
2019-02-17 02:03:56 +01:00
|
|
|
string relativePath = Path.GetRelativePath(directory, filePath);
|
|
|
|
|
|
|
|
var entry = new ZipEntry(relativePath);
|
|
|
|
entry.DateTime = DateTime.UnixEpoch;
|
|
|
|
|
|
|
|
using (FileStream fs = File.OpenRead(filePath))
|
2018-11-22 04:57:18 +01:00
|
|
|
{
|
2019-02-17 02:03:56 +01:00
|
|
|
entry.Size = fs.Length;
|
|
|
|
s.PutNextEntry(entry);
|
|
|
|
fs.CopyTo(s);
|
2018-11-22 04:57:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-02-17 02:03:56 +01:00
|
|
|
}
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
public static void ZipDirectory(string outFile, string directory, IEnumerable<string> files)
|
2018-11-22 04:57:18 +01:00
|
|
|
{
|
2019-02-17 02:03:56 +01:00
|
|
|
using (var s = new ZipOutputStream(File.Create(outFile)))
|
2018-11-22 04:57:18 +01:00
|
|
|
{
|
2019-02-17 02:03:56 +01:00
|
|
|
s.SetLevel(9);
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
foreach (string filePath in files)
|
2018-11-22 04:57:18 +01:00
|
|
|
{
|
2019-02-17 02:03:56 +01:00
|
|
|
string absolutePath = Path.Combine(directory, filePath);
|
|
|
|
|
|
|
|
var entry = new ZipEntry(filePath);
|
|
|
|
entry.DateTime = DateTime.UnixEpoch;
|
|
|
|
|
|
|
|
using (FileStream fs = File.OpenRead(absolutePath))
|
|
|
|
{
|
|
|
|
entry.Size = fs.Length;
|
|
|
|
s.PutNextEntry(entry);
|
|
|
|
fs.CopyTo(s);
|
|
|
|
}
|
2018-11-22 04:57:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
public static void UnzipFiles(string zipFile, string outDir)
|
2018-11-22 04:57:18 +01:00
|
|
|
{
|
2019-02-17 02:03:56 +01:00
|
|
|
using (var s = new ZipInputStream(File.OpenRead(zipFile)))
|
|
|
|
{
|
|
|
|
ZipEntry entry;
|
|
|
|
while ((entry = s.GetNextEntry()) != null)
|
|
|
|
{
|
|
|
|
string outPath = Path.Combine(outDir, entry.Name);
|
|
|
|
|
|
|
|
string directoryName = Path.GetDirectoryName(outPath);
|
|
|
|
string fileName = Path.GetFileName(outPath);
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(directoryName))
|
|
|
|
{
|
|
|
|
Directory.CreateDirectory(directoryName);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(fileName))
|
|
|
|
{
|
|
|
|
using (FileStream outFile = File.Create(outPath))
|
|
|
|
{
|
|
|
|
s.CopyTo(outFile);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-11-22 04:57:18 +01:00
|
|
|
}
|
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
public static void PushArtifact(string path)
|
2018-11-22 04:57:18 +01:00
|
|
|
{
|
2019-02-17 02:03:56 +01:00
|
|
|
if (!File.Exists(path))
|
|
|
|
{
|
|
|
|
Console.WriteLine($"Unable to add artifact {path}");
|
|
|
|
}
|
|
|
|
|
|
|
|
var psi = new ProcessStartInfo
|
|
|
|
{
|
|
|
|
FileName = "appveyor",
|
|
|
|
Arguments = $"PushArtifact \"{path}\"",
|
|
|
|
UseShellExecute = false,
|
|
|
|
RedirectStandardOutput = true,
|
|
|
|
RedirectStandardError = true
|
|
|
|
};
|
|
|
|
|
|
|
|
var proc = new Process
|
|
|
|
{
|
|
|
|
StartInfo = psi
|
|
|
|
};
|
|
|
|
|
|
|
|
proc.Start();
|
|
|
|
|
|
|
|
proc.WaitForExit();
|
|
|
|
|
|
|
|
Console.WriteLine($"Added AppVeyor artifact {path}");
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void SetAppVeyorVersion(string version)
|
2018-11-22 04:57:18 +01:00
|
|
|
{
|
2019-02-17 02:03:56 +01:00
|
|
|
var psi = new ProcessStartInfo
|
|
|
|
{
|
|
|
|
FileName = "appveyor",
|
|
|
|
Arguments = $"UpdateBuild -Version \"{version}\"",
|
|
|
|
UseShellExecute = false,
|
|
|
|
RedirectStandardOutput = true,
|
|
|
|
RedirectStandardError = true
|
|
|
|
};
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
var proc = new Process
|
|
|
|
{
|
|
|
|
StartInfo = psi
|
|
|
|
};
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
proc.Start();
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
proc.WaitForExit();
|
|
|
|
}
|
2018-11-22 04:57:18 +01:00
|
|
|
|
2019-02-17 02:03:56 +01:00
|
|
|
public static void ReplaceLineEndings(string filename)
|
|
|
|
{
|
|
|
|
string text = File.ReadAllText(filename);
|
|
|
|
File.WriteAllText(filename, Regex.Replace(text, @"\r\n|\n\r|\n|\r", "\r\n"));
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void SignAssemblies(string password, params string[] fileNames)
|
|
|
|
{
|
|
|
|
SignToolSettings settings = new SignToolSettings()
|
|
|
|
.SetFileDigestAlgorithm("SHA256")
|
|
|
|
.SetFile(CertFileName)
|
|
|
|
.SetFiles(fileNames)
|
|
|
|
.SetPassword(password)
|
|
|
|
.SetTimestampServerDigestAlgorithm("SHA256")
|
|
|
|
.SetRfc3161TimestampServerUrl("http://timestamp.digicert.com");
|
|
|
|
|
|
|
|
SignToolTasks.SignTool(settings);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void SignAndReZip(string password)
|
|
|
|
{
|
|
|
|
AbsolutePath nupkgFile = ArtifactsDirectory.GlobFiles("*.nupkg").Single();
|
|
|
|
AbsolutePath snupkgFile = ArtifactsDirectory.GlobFiles("*.snupkg").Single();
|
|
|
|
AbsolutePath nupkgDir = TempDirectory / ("sign_" + Path.GetFileName(nupkgFile));
|
|
|
|
AbsolutePath netFxDir = TempDirectory / ("sign_" + Path.GetFileName(CliFrameworkZip));
|
|
|
|
AbsolutePath coreFxDir = TempDirectory / ("sign_" + Path.GetFileName(CliCoreZip));
|
|
|
|
AbsolutePath signedMergedExe = SignedArtifactsDirectory / Path.GetFileName(CliMergedExe);
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
UnzipFiles(CliFrameworkZip, netFxDir);
|
|
|
|
UnzipFiles(CliCoreZip, coreFxDir);
|
|
|
|
List<string> pkgFileList = UnzipPackage(nupkgFile, nupkgDir);
|
|
|
|
|
|
|
|
var toSign = new List<AbsolutePath>();
|
|
|
|
toSign.AddRange(nupkgDir.GlobFiles("**/LibHac.dll"));
|
|
|
|
toSign.Add(netFxDir / "hactoolnet.exe");
|
|
|
|
toSign.Add(coreFxDir / "hactoolnet.dll");
|
|
|
|
toSign.Add(signedMergedExe);
|
|
|
|
|
|
|
|
Directory.CreateDirectory(SignedArtifactsDirectory);
|
|
|
|
File.Copy(CliMergedExe, signedMergedExe, true);
|
|
|
|
|
|
|
|
SignAssemblies(password, toSign.Select(x => x.ToString()).ToArray());
|
|
|
|
|
|
|
|
// Avoid having multiple signed versions of the same file
|
|
|
|
File.Copy(nupkgDir / "lib" / "net46" / "LibHac.dll", netFxDir / "LibHac.dll", true);
|
2019-10-15 04:10:53 +02:00
|
|
|
File.Copy(nupkgDir / "lib" / "netcoreapp3.0" / "LibHac.dll", coreFxDir / "LibHac.dll", true);
|
2019-02-17 02:03:56 +01:00
|
|
|
|
|
|
|
ZipDirectory(SignedArtifactsDirectory / Path.GetFileName(nupkgFile), nupkgDir, pkgFileList);
|
|
|
|
ZipDirectory(SignedArtifactsDirectory / Path.GetFileName(CliFrameworkZip), netFxDir);
|
|
|
|
ZipDirectory(SignedArtifactsDirectory / Path.GetFileName(CliCoreZip), coreFxDir);
|
|
|
|
|
|
|
|
File.Copy(snupkgFile, SignedArtifactsDirectory / Path.GetFileName(snupkgFile));
|
|
|
|
|
|
|
|
SignNupkg(SignedArtifactsDirectory / Path.GetFileName(nupkgFile), password);
|
|
|
|
SignNupkg(SignedArtifactsDirectory / Path.GetFileName(snupkgFile), password);
|
|
|
|
}
|
|
|
|
catch (Exception)
|
|
|
|
{
|
|
|
|
Directory.Delete(SignedArtifactsDirectory, true);
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
finally
|
|
|
|
{
|
|
|
|
Directory.Delete(nupkgDir, true);
|
|
|
|
Directory.Delete(netFxDir, true);
|
|
|
|
Directory.Delete(coreFxDir, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static string ReadPassword()
|
|
|
|
{
|
|
|
|
var pwd = new StringBuilder();
|
|
|
|
ConsoleKeyInfo key;
|
|
|
|
|
|
|
|
Console.Write("Enter certificate password (Empty password to skip): ");
|
|
|
|
do
|
|
|
|
{
|
|
|
|
key = Console.ReadKey(true);
|
|
|
|
|
|
|
|
// Ignore any key out of range.
|
|
|
|
if (((int)key.Key) >= '!' && ((int)key.Key <= '~'))
|
|
|
|
{
|
|
|
|
// Append the character to the password.
|
|
|
|
pwd.Append(key.KeyChar);
|
|
|
|
Console.Write("*");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Exit if Enter key is pressed.
|
|
|
|
} while (key.Key != ConsoleKey.Enter);
|
|
|
|
|
|
|
|
Console.WriteLine();
|
|
|
|
|
|
|
|
return pwd.ToString();
|
|
|
|
}
|
2018-11-22 04:57:18 +01:00
|
|
|
}
|
|
|
|
}
|