Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<CoreVersion>4.6.0</CoreVersion>
<CoreVersion>4.6.1</CoreVersion>
<Configurations>Debug;Release;SourceGen Highlighting</Configurations>
<Platforms>AnyCPU</Platforms>
<TestingPlatformDotnetTestSupport>true</TestingPlatformDotnetTestSupport>
Expand Down
51 changes: 25 additions & 26 deletions build-tools/build-scripts/ESBuild.cs
Original file line number Diff line number Diff line change
Expand Up @@ -305,8 +305,11 @@ static BuildRecord GetLastBuildRecord(string recordFilePath)

/// <summary>
/// Determines whether a TypeScript build is needed.
/// A build is needed if: the branch changed, scripts were modified since last build,
/// or the output directory is empty.
/// A build is needed if scripts were modified since the last build or the output directory is
/// empty. A branch change alone does NOT force a rebuild when scripts are unchanged and output
/// already exists: that would regenerate hashed split chunks with new names, orphaning the
/// static web assets MSBuild already cataloged (dotnet/sdk#49988) — the cause of 404 chunk loads.
/// This also makes CI detached-HEAD branch noise ("HEAD"/"unknown" vs the real branch) harmless.
/// </summary>
/// <param name="recordFilePath">Path to the build record file.</param>
/// <param name="currentBranch">The current Git branch name.</param>
Expand All @@ -316,42 +319,38 @@ static BuildRecord GetLastBuildRecord(string recordFilePath)
static bool CheckIfNeedsBuild(string recordFilePath, string currentBranch, string scriptsDir, string outputDir,
string sourceProject)
{
// Check if build is needed
BuildRecord lastBuild = GetLastBuildRecord(recordFilePath);
bool branchChanged = currentBranch != "no-git"
&& currentBranch != lastBuild.Branch;

if (branchChanged)
{
Trace.WriteLine($"ESBUILD {sourceProject}: Git branch changed from \"{lastBuild.Branch}\" to \"{currentBranch}\". Rebuilding...");
return true;
}

// Just built — ESBuild can be triggered more than once per run (e.g. the library build
// followed by a samples publish). Skip to avoid regenerating hashed chunks already cataloged.
if (lastBuild.Timestamp > DateTimeOffset.UtcNow.AddMinutes(-1).ToUnixTimeMilliseconds())
{
// we just built this, possible if ESBuild gets triggered multiple times in a single run
Trace.WriteLine($"ESBUILD {sourceProject}: Was built within the past 1 minute, will skip this build.");
return false;
}

if (!GetScriptsModifiedSince(scriptsDir, lastBuild.Timestamp, sourceProject))
bool scriptsChanged = GetScriptsModifiedSince(scriptsDir, lastBuild.Timestamp, sourceProject);
bool outputPresent = Directory.Exists(outputDir) && Directory.GetFiles(outputDir).Length > 0;

// Scripts unchanged with output already present: rebuilding would only churn chunk hashes
// and orphan cataloged static web assets. Skip regardless of any branch change.
if (!scriptsChanged && outputPresent)
{
Trace.WriteLine($"ESBUILD {sourceProject}: No changes in Scripts folder since last build.");
Trace.WriteLine($"ESBUILD {sourceProject}: No Scripts changes since last build and output is present. Skipping build.");
return false;
}

// Check output directory for existing files
if (Directory.Exists(outputDir) && Directory.GetFiles(outputDir).Length > 0)
{
Trace.WriteLine($"ESBUILD {sourceProject}: Output directory is not empty. Skipping build.");
return false;
}
else
{
Trace.WriteLine($"ESBUILD {sourceProject}: Output directory is empty. Proceeding with build.");
return true;
}
// Past here a build is needed (scripts changed or output missing). A genuine branch change
// is only relevant in these cases and is logged for traceability.
bool branchChanged = currentBranch != "no-git" && currentBranch != lastBuild.Branch;
if (branchChanged)
{
Trace.WriteLine($"ESBUILD {sourceProject}: Git branch changed from \"{lastBuild.Branch}\" to \"{currentBranch}\".");
}

Trace.WriteLine($"ESBUILD {sourceProject}: Changes detected in Scripts folder. Proceeding with build.");
Trace.WriteLine(scriptsChanged
? $"ESBUILD {sourceProject}: Changes detected in Scripts folder. Proceeding with build."
: $"ESBUILD {sourceProject}: Output directory is empty. Proceeding with build.");
return true;
}

Expand Down
18 changes: 18 additions & 0 deletions build-tools/build-scripts/GeoBlazorBuild.cs
Original file line number Diff line number Diff line change
Expand Up @@ -461,6 +461,7 @@
if (package)
{
// Copy generated NuGet package to repo root
DeleteFilesIfExists(coreRepoRoot, "dymaptic.GeoBlazor.Core.*.nupkg");
string coreBinPath = Path.Combine(coreProjectPath, "bin", configuration);

if (Directory.Exists(coreBinPath))
Expand Down Expand Up @@ -639,6 +640,7 @@
if (package)
{
// Copy generated NuGet package to Core repo root
DeleteFilesIfExists(coreRepoRoot, "dymaptic.GeoBlazor.Pro.*.nupkg");
string proBinPath = Path.Combine(proProjectPath, "bin", configuration);

if (Directory.Exists(proBinPath))
Expand Down Expand Up @@ -681,6 +683,22 @@
Console.WriteLine();
}

/// <summary>
/// Deletes matching files from a directory if it exists.
/// </summary>
static void DeleteFilesIfExists(string directory, string searchPattern)
{
if (!Directory.Exists(directory))
{
return;
}

foreach (string path in Directory.GetFiles(directory, searchPattern, SearchOption.TopDirectoryOnly))
{
DeleteFileIfExists(path);
}
}

/// <summary>
/// Deletes a file if it exists.
/// </summary>
Expand Down
2 changes: 1 addition & 1 deletion build-tools/build-scripts/ScriptBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ static void RewriteRuntimeConfigPaths(string scriptName, string outDir)
return;
}

configProperties["EntryPointFilePath"] = $".\\{scriptName}";
configProperties["EntryPointFilePath"] = $"./{scriptName}";
configProperties["EntryPointFileDirectoryPath"] = ".";

File.WriteAllText(runtimeConfigPath, root.ToJsonString(new JsonSerializerOptions { WriteIndented = true }));
Expand Down
Binary file modified build-tools/linux-x64/AcquireBuildLock
Binary file not shown.
Binary file modified build-tools/linux-x64/AcquireBuildLock.dll
Binary file not shown.
10 changes: 2 additions & 8 deletions build-tools/linux-x64/AcquireBuildLock.runtimeconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,9 @@
"name": "Microsoft.NETCore.App",
"version": "10.0.0"
},
"runtimeOptions": {
"configProperties": {
"EntryPointFilePath": ".\\GBTest.cs",
"EntryPointFileDirectoryPath": "."
}
},
"configProperties": {
"EntryPointFilePath": "/Users/timpurdum/repos/GeoBlazor/GeoBlazor.Pro/GeoBlazor/build-tools/build-scripts/AcquireBuildLock.cs",
"EntryPointFileDirectoryPath": "/Users/timpurdum/repos/GeoBlazor/GeoBlazor.Pro/GeoBlazor/build-tools/build-scripts",
"EntryPointFilePath": "./AcquireBuildLock.cs",
"EntryPointFileDirectoryPath": ".",
"Microsoft.Extensions.DependencyInjection.VerifyOpenGenericServiceTrimmability": true,
"System.ComponentModel.DefaultValueAttribute.IsSupported": false,
"System.ComponentModel.Design.IDesignerHost.IsSupported": false,
Expand Down
Binary file modified build-tools/linux-x64/BuildAppSettings
Binary file not shown.
Binary file modified build-tools/linux-x64/BuildAppSettings.dll
Binary file not shown.
10 changes: 2 additions & 8 deletions build-tools/linux-x64/BuildAppSettings.runtimeconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,9 @@
"name": "Microsoft.NETCore.App",
"version": "10.0.0"
},
"runtimeOptions": {
"configProperties": {
"EntryPointFilePath": ".\\GBTest.cs",
"EntryPointFileDirectoryPath": "."
}
},
"configProperties": {
"EntryPointFilePath": "/Users/timpurdum/repos/GeoBlazor/GeoBlazor.Pro/GeoBlazor/build-tools/build-scripts/BuildAppSettings.cs",
"EntryPointFileDirectoryPath": "/Users/timpurdum/repos/GeoBlazor/GeoBlazor.Pro/GeoBlazor/build-tools/build-scripts",
"EntryPointFilePath": "./BuildAppSettings.cs",
"EntryPointFileDirectoryPath": ".",
"Microsoft.Extensions.DependencyInjection.VerifyOpenGenericServiceTrimmability": true,
"System.ComponentModel.DefaultValueAttribute.IsSupported": false,
"System.ComponentModel.Design.IDesignerHost.IsSupported": false,
Expand Down
Binary file modified build-tools/linux-x64/ConsoleDialog
Binary file not shown.
Binary file modified build-tools/linux-x64/ConsoleDialog.dll
Binary file not shown.
10 changes: 2 additions & 8 deletions build-tools/linux-x64/ConsoleDialog.runtimeconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,9 @@
"name": "Microsoft.NETCore.App",
"version": "10.0.0"
},
"runtimeOptions": {
"configProperties": {
"EntryPointFilePath": ".\\GBTest.cs",
"EntryPointFileDirectoryPath": "."
}
},
"configProperties": {
"EntryPointFilePath": "/Users/timpurdum/repos/GeoBlazor/GeoBlazor.Pro/GeoBlazor/build-tools/build-scripts/ConsoleDialog.cs",
"EntryPointFileDirectoryPath": "/Users/timpurdum/repos/GeoBlazor/GeoBlazor.Pro/GeoBlazor/build-tools/build-scripts",
"EntryPointFilePath": "./ConsoleDialog.cs",
"EntryPointFileDirectoryPath": ".",
"Microsoft.Extensions.DependencyInjection.VerifyOpenGenericServiceTrimmability": true,
"System.ComponentModel.DefaultValueAttribute.IsSupported": false,
"System.ComponentModel.Design.IDesignerHost.IsSupported": false,
Expand Down
Binary file modified build-tools/linux-x64/ESBuild
Binary file not shown.
Binary file modified build-tools/linux-x64/ESBuild.dll
Binary file not shown.
10 changes: 2 additions & 8 deletions build-tools/linux-x64/ESBuild.runtimeconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,9 @@
"name": "Microsoft.NETCore.App",
"version": "10.0.0"
},
"runtimeOptions": {
"configProperties": {
"EntryPointFilePath": ".\\GBTest.cs",
"EntryPointFileDirectoryPath": "."
}
},
"configProperties": {
"EntryPointFilePath": "/Users/timpurdum/repos/GeoBlazor/GeoBlazor.Pro/GeoBlazor/build-tools/build-scripts/ESBuild.cs",
"EntryPointFileDirectoryPath": "/Users/timpurdum/repos/GeoBlazor/GeoBlazor.Pro/GeoBlazor/build-tools/build-scripts",
"EntryPointFilePath": "./ESBuild.cs",
"EntryPointFileDirectoryPath": ".",
"Microsoft.Extensions.DependencyInjection.VerifyOpenGenericServiceTrimmability": true,
"System.ComponentModel.DefaultValueAttribute.IsSupported": false,
"System.ComponentModel.Design.IDesignerHost.IsSupported": false,
Expand Down
Binary file modified build-tools/linux-x64/ESBuildClearLocks
Binary file not shown.
Binary file modified build-tools/linux-x64/ESBuildClearLocks.dll
Binary file not shown.
10 changes: 2 additions & 8 deletions build-tools/linux-x64/ESBuildClearLocks.runtimeconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,9 @@
"name": "Microsoft.NETCore.App",
"version": "10.0.0"
},
"runtimeOptions": {
"configProperties": {
"EntryPointFilePath": ".\\GBTest.cs",
"EntryPointFileDirectoryPath": "."
}
},
"configProperties": {
"EntryPointFilePath": "/Users/timpurdum/repos/GeoBlazor/GeoBlazor.Pro/GeoBlazor/build-tools/build-scripts/ESBuildClearLocks.cs",
"EntryPointFileDirectoryPath": "/Users/timpurdum/repos/GeoBlazor/GeoBlazor.Pro/GeoBlazor/build-tools/build-scripts",
"EntryPointFilePath": "./ESBuildClearLocks.cs",
"EntryPointFileDirectoryPath": ".",
"Microsoft.Extensions.DependencyInjection.VerifyOpenGenericServiceTrimmability": true,
"System.ComponentModel.DefaultValueAttribute.IsSupported": false,
"System.ComponentModel.Design.IDesignerHost.IsSupported": false,
Expand Down
Binary file modified build-tools/linux-x64/FetchNuGetVersion
Binary file not shown.
Binary file modified build-tools/linux-x64/FetchNuGetVersion.dll
Binary file not shown.
10 changes: 2 additions & 8 deletions build-tools/linux-x64/FetchNuGetVersion.runtimeconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,9 @@
"name": "Microsoft.NETCore.App",
"version": "10.0.0"
},
"runtimeOptions": {
"configProperties": {
"EntryPointFilePath": ".\\GBTest.cs",
"EntryPointFileDirectoryPath": "."
}
},
"configProperties": {
"EntryPointFilePath": "/Users/timpurdum/repos/GeoBlazor/GeoBlazor.Pro/GeoBlazor/build-tools/build-scripts/FetchNuGetVersion.cs",
"EntryPointFileDirectoryPath": "/Users/timpurdum/repos/GeoBlazor/GeoBlazor.Pro/GeoBlazor/build-tools/build-scripts",
"EntryPointFilePath": "./FetchNuGetVersion.cs",
"EntryPointFileDirectoryPath": ".",
"Microsoft.Extensions.DependencyInjection.VerifyOpenGenericServiceTrimmability": true,
"System.ComponentModel.DefaultValueAttribute.IsSupported": false,
"System.ComponentModel.Design.IDesignerHost.IsSupported": false,
Expand Down
Binary file modified build-tools/linux-x64/GBTest.dll
Binary file not shown.
10 changes: 2 additions & 8 deletions build-tools/linux-x64/GBTest.runtimeconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,9 @@
"name": "Microsoft.NETCore.App",
"version": "10.0.0"
},
"runtimeOptions": {
"configProperties": {
"EntryPointFilePath": ".\\GBTest.cs",
"EntryPointFileDirectoryPath": "."
}
},
"configProperties": {
"EntryPointFilePath": "D:\\dymaptic.GeoBlazor.CodeGen\\GeoBlazor.Pro\\GeoBlazor\\build-tools\\build-scripts\\GBTest.cs",
"EntryPointFileDirectoryPath": "D:\\dymaptic.GeoBlazor.CodeGen\\GeoBlazor.Pro\\GeoBlazor\\build-tools\\build-scripts",
"EntryPointFilePath": "./GBTest.cs",
"EntryPointFileDirectoryPath": ".",
"Microsoft.Extensions.DependencyInjection.VerifyOpenGenericServiceTrimmability": true,
"System.ComponentModel.DefaultValueAttribute.IsSupported": false,
"System.ComponentModel.Design.IDesignerHost.IsSupported": false,
Expand Down
Binary file modified build-tools/linux-x64/GeoBlazorBuild
Binary file not shown.
Binary file modified build-tools/linux-x64/GeoBlazorBuild.dll
Binary file not shown.
10 changes: 2 additions & 8 deletions build-tools/linux-x64/GeoBlazorBuild.runtimeconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,9 @@
"name": "Microsoft.NETCore.App",
"version": "10.0.0"
},
"runtimeOptions": {
"configProperties": {
"EntryPointFilePath": ".\\GBTest.cs",
"EntryPointFileDirectoryPath": "."
}
},
"configProperties": {
"EntryPointFilePath": "/Users/timpurdum/repos/GeoBlazor/GeoBlazor.Pro/GeoBlazor/build-tools/build-scripts/GeoBlazorBuild.cs",
"EntryPointFileDirectoryPath": "/Users/timpurdum/repos/GeoBlazor/GeoBlazor.Pro/GeoBlazor/build-tools/build-scripts",
"EntryPointFilePath": "./GeoBlazorBuild.cs",
"EntryPointFileDirectoryPath": ".",
"Microsoft.Extensions.DependencyInjection.VerifyOpenGenericServiceTrimmability": true,
"System.ComponentModel.DefaultValueAttribute.IsSupported": false,
"System.ComponentModel.Design.IDesignerHost.IsSupported": false,
Expand Down
Binary file modified build-tools/linux-x64/Utilities.dll
Binary file not shown.
Binary file modified build-tools/linux-x64/WaitForBuildComplete
Binary file not shown.
Binary file modified build-tools/linux-x64/WaitForBuildComplete.dll
Binary file not shown.
10 changes: 2 additions & 8 deletions build-tools/linux-x64/WaitForBuildComplete.runtimeconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,9 @@
"name": "Microsoft.NETCore.App",
"version": "10.0.0"
},
"runtimeOptions": {
"configProperties": {
"EntryPointFilePath": ".\\GBTest.cs",
"EntryPointFileDirectoryPath": "."
}
},
"configProperties": {
"EntryPointFilePath": "/Users/timpurdum/repos/GeoBlazor/GeoBlazor.Pro/GeoBlazor/build-tools/build-scripts/WaitForBuildComplete.cs",
"EntryPointFileDirectoryPath": "/Users/timpurdum/repos/GeoBlazor/GeoBlazor.Pro/GeoBlazor/build-tools/build-scripts",
"EntryPointFilePath": "./WaitForBuildComplete.cs",
"EntryPointFileDirectoryPath": ".",
"Microsoft.Extensions.DependencyInjection.VerifyOpenGenericServiceTrimmability": true,
"System.ComponentModel.DefaultValueAttribute.IsSupported": false,
"System.ComponentModel.Design.IDesignerHost.IsSupported": false,
Expand Down
Binary file modified build-tools/osx-arm64/AcquireBuildLock
Binary file not shown.
Binary file modified build-tools/osx-arm64/AcquireBuildLock.dll
Binary file not shown.
10 changes: 2 additions & 8 deletions build-tools/osx-arm64/AcquireBuildLock.runtimeconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,9 @@
"name": "Microsoft.NETCore.App",
"version": "10.0.0"
},
"runtimeOptions": {
"configProperties": {
"EntryPointFilePath": ".\\GBTest.cs",
"EntryPointFileDirectoryPath": "."
}
},
"configProperties": {
"EntryPointFilePath": "/Users/timpurdum/repos/GeoBlazor/GeoBlazor.Pro/GeoBlazor/build-tools/build-scripts/AcquireBuildLock.cs",
"EntryPointFileDirectoryPath": "/Users/timpurdum/repos/GeoBlazor/GeoBlazor.Pro/GeoBlazor/build-tools/build-scripts",
"EntryPointFilePath": "./AcquireBuildLock.cs",
"EntryPointFileDirectoryPath": ".",
"Microsoft.Extensions.DependencyInjection.VerifyOpenGenericServiceTrimmability": true,
"System.ComponentModel.DefaultValueAttribute.IsSupported": false,
"System.ComponentModel.Design.IDesignerHost.IsSupported": false,
Expand Down
Binary file modified build-tools/osx-arm64/BuildAppSettings
Binary file not shown.
Binary file modified build-tools/osx-arm64/BuildAppSettings.dll
Binary file not shown.
10 changes: 2 additions & 8 deletions build-tools/osx-arm64/BuildAppSettings.runtimeconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,9 @@
"name": "Microsoft.NETCore.App",
"version": "10.0.0"
},
"runtimeOptions": {
"configProperties": {
"EntryPointFilePath": ".\\GBTest.cs",
"EntryPointFileDirectoryPath": "."
}
},
"configProperties": {
"EntryPointFilePath": "/Users/timpurdum/repos/GeoBlazor/GeoBlazor.Pro/GeoBlazor/build-tools/build-scripts/BuildAppSettings.cs",
"EntryPointFileDirectoryPath": "/Users/timpurdum/repos/GeoBlazor/GeoBlazor.Pro/GeoBlazor/build-tools/build-scripts",
"EntryPointFilePath": "./BuildAppSettings.cs",
"EntryPointFileDirectoryPath": ".",
"Microsoft.Extensions.DependencyInjection.VerifyOpenGenericServiceTrimmability": true,
"System.ComponentModel.DefaultValueAttribute.IsSupported": false,
"System.ComponentModel.Design.IDesignerHost.IsSupported": false,
Expand Down
Binary file modified build-tools/osx-arm64/ConsoleDialog
Binary file not shown.
Binary file modified build-tools/osx-arm64/ConsoleDialog.dll
Binary file not shown.
10 changes: 2 additions & 8 deletions build-tools/osx-arm64/ConsoleDialog.runtimeconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,9 @@
"name": "Microsoft.NETCore.App",
"version": "10.0.0"
},
"runtimeOptions": {
"configProperties": {
"EntryPointFilePath": ".\\GBTest.cs",
"EntryPointFileDirectoryPath": "."
}
},
"configProperties": {
"EntryPointFilePath": "/Users/timpurdum/repos/GeoBlazor/GeoBlazor.Pro/GeoBlazor/build-tools/build-scripts/ConsoleDialog.cs",
"EntryPointFileDirectoryPath": "/Users/timpurdum/repos/GeoBlazor/GeoBlazor.Pro/GeoBlazor/build-tools/build-scripts",
"EntryPointFilePath": "./ConsoleDialog.cs",
"EntryPointFileDirectoryPath": ".",
"Microsoft.Extensions.DependencyInjection.VerifyOpenGenericServiceTrimmability": true,
"System.ComponentModel.DefaultValueAttribute.IsSupported": false,
"System.ComponentModel.Design.IDesignerHost.IsSupported": false,
Expand Down
Binary file modified build-tools/osx-arm64/ESBuild
Binary file not shown.
Binary file modified build-tools/osx-arm64/ESBuild.dll
Binary file not shown.
10 changes: 2 additions & 8 deletions build-tools/osx-arm64/ESBuild.runtimeconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,9 @@
"name": "Microsoft.NETCore.App",
"version": "10.0.0"
},
"runtimeOptions": {
"configProperties": {
"EntryPointFilePath": ".\\GBTest.cs",
"EntryPointFileDirectoryPath": "."
}
},
"configProperties": {
"EntryPointFilePath": "/Users/timpurdum/repos/GeoBlazor/GeoBlazor.Pro/GeoBlazor/build-tools/build-scripts/ESBuild.cs",
"EntryPointFileDirectoryPath": "/Users/timpurdum/repos/GeoBlazor/GeoBlazor.Pro/GeoBlazor/build-tools/build-scripts",
"EntryPointFilePath": "./ESBuild.cs",
"EntryPointFileDirectoryPath": ".",
"Microsoft.Extensions.DependencyInjection.VerifyOpenGenericServiceTrimmability": true,
"System.ComponentModel.DefaultValueAttribute.IsSupported": false,
"System.ComponentModel.Design.IDesignerHost.IsSupported": false,
Expand Down
Binary file modified build-tools/osx-arm64/ESBuildClearLocks
Binary file not shown.
Binary file modified build-tools/osx-arm64/ESBuildClearLocks.dll
Binary file not shown.
10 changes: 2 additions & 8 deletions build-tools/osx-arm64/ESBuildClearLocks.runtimeconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,9 @@
"name": "Microsoft.NETCore.App",
"version": "10.0.0"
},
"runtimeOptions": {
"configProperties": {
"EntryPointFilePath": ".\\GBTest.cs",
"EntryPointFileDirectoryPath": "."
}
},
"configProperties": {
"EntryPointFilePath": "/Users/timpurdum/repos/GeoBlazor/GeoBlazor.Pro/GeoBlazor/build-tools/build-scripts/ESBuildClearLocks.cs",
"EntryPointFileDirectoryPath": "/Users/timpurdum/repos/GeoBlazor/GeoBlazor.Pro/GeoBlazor/build-tools/build-scripts",
"EntryPointFilePath": "./ESBuildClearLocks.cs",
"EntryPointFileDirectoryPath": ".",
"Microsoft.Extensions.DependencyInjection.VerifyOpenGenericServiceTrimmability": true,
"System.ComponentModel.DefaultValueAttribute.IsSupported": false,
"System.ComponentModel.Design.IDesignerHost.IsSupported": false,
Expand Down
Binary file modified build-tools/osx-arm64/FetchNuGetVersion
Binary file not shown.
Binary file modified build-tools/osx-arm64/FetchNuGetVersion.dll
Binary file not shown.
Loading
Loading