|
@@ -1,4 +1,9 @@
|
|
|
+using System;
|
|
|
using System.IO;
|
|
|
+using System.IO.Compression;
|
|
|
+using System.Media;
|
|
|
+using System.Net.Http;
|
|
|
+using System.Threading.Tasks;
|
|
|
using Nuke.Common;
|
|
|
using Nuke.Common.Execution;
|
|
|
using Nuke.Common.IO;
|
|
@@ -19,17 +24,39 @@ class Build : NukeBuild
|
|
|
|
|
|
AbsolutePath OutputDirectory => RootDirectory / "output";
|
|
|
AbsolutePath SourceDirectory => RootDirectory / "src";
|
|
|
+ AbsolutePath LibPath => SourceDirectory / "Website/wwwroot/lib";
|
|
|
+ AbsolutePath FontAwesomePath => SourceDirectory / "Website/wwwroot/lib/fontawesome";
|
|
|
|
|
|
- Target Clean => _ => _
|
|
|
+ private void DeleteExistingFontAwesome()
|
|
|
+ {
|
|
|
+ if (Directory.Exists(FontAwesomePath))
|
|
|
+ Directory.Delete(FontAwesomePath, true);
|
|
|
+ }
|
|
|
+
|
|
|
+ Target Clean => _ => _
|
|
|
.Before(Restore)
|
|
|
.Executes(() =>
|
|
|
{
|
|
|
+ DeleteExistingFontAwesome();
|
|
|
EnsureCleanDirectory(OutputDirectory);
|
|
|
});
|
|
|
|
|
|
+ private async Task DownloadFontAwesome() {
|
|
|
+ const string fontAwesomeVersion = "6.4.0";
|
|
|
+ const string zipName = $"fontawesome-free-{fontAwesomeVersion}-web";
|
|
|
+ var client = new HttpClient();
|
|
|
+ var response = await client.GetAsync($"https://use.fontawesome.com/releases/v{fontAwesomeVersion}/{zipName}.zip");
|
|
|
+ var memory = new MemoryStream();
|
|
|
+ await response.Content.CopyToAsync(memory);
|
|
|
+ var zip = new ZipArchive(memory);
|
|
|
+ zip.ExtractToDirectory(LibPath);
|
|
|
+ Directory.Move(LibPath / zipName, FontAwesomePath);
|
|
|
+ }
|
|
|
+
|
|
|
Target Restore => _ => _
|
|
|
- .Executes(() =>
|
|
|
- {
|
|
|
+ .DependsOn(Clean)
|
|
|
+ .Executes(() => {
|
|
|
+ DownloadFontAwesome().Wait();
|
|
|
DotNetRestore(s => s
|
|
|
.SetProjectFile(Solution));
|
|
|
});
|
|
@@ -60,15 +87,6 @@ class Build : NukeBuild
|
|
|
.SetProject(SourceDirectory / "Website/Website.csproj")
|
|
|
.SetConfiguration(Configuration)
|
|
|
.SetOutput(OutputDirectory));
|
|
|
-
|
|
|
- var scssFiles = Directory.GetFiles(OutputDirectory / "wwwroot/css", "*.scss");
|
|
|
- foreach (var file in scssFiles)
|
|
|
- File.Delete(file);
|
|
|
-
|
|
|
- var cssFiles = Directory.GetFiles(OutputDirectory / "wwwroot/css", "*.css");
|
|
|
- foreach (var file in cssFiles)
|
|
|
- if (new FileInfo(file).Length == 0)
|
|
|
- File.Delete(file);
|
|
|
});
|
|
|
|
|
|
}
|