Skip to content

Commit

Permalink
Update paths
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsimons committed Dec 2, 2024
1 parent 3a386a7 commit 6953041
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions tools/3rd-party-licenses/Program.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using _3rd_party_licenses;

const string componentsPath = "../../../../../components/components.yaml";
const string includePath = "../../../../../platform/third-party-license-data.include.md";
const string servicePulseSln = "../../../../../checkout/ServicePulse/src/ServicePulse.sln";
const string servicePulseNpm = "../../../../../checkout/ServicePulse/src/Frontend";
const string serviceControlSln = "../../../../../checkout/ServiceControl/src/ServiceControl.sln";
const string componentsPath = "../../components/components.yaml";
const string includePath = "../../platform/third-party-license-data.include.md";
const string servicePulseSln = "../../checkout/ServicePulse/src/ServicePulse.sln";
const string servicePulseNpm = "../../checkout/ServicePulse/src/Frontend";
const string serviceControlSln = "../../checkout/ServiceControl/src/ServiceControl.sln";

await using var output = new StreamWriter(includePath, append: false);
output.WriteLine("| Library | License | Project Site |");
Expand Down
4 changes: 2 additions & 2 deletions tools/coreDependencies/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
SourceRepository feedz = Repository.Factory.GetCoreV3("https://f.feedz.io/particular-software/packages/nuget");
SemanticVersion minCoreVersion = new SemanticVersion(3, 3, 0);

var coreDependencies = "../../../../components/core-dependencies";
var coreDependencies = "../../components/core-dependencies";
Directory.CreateDirectory(coreDependencies);
var filePaths = Directory.GetFiles(coreDependencies, "*.txt");
foreach (var filePath in filePaths)
{
File.Delete(filePath);
}

var nugetAliasFile = "../../../../components/nugetAlias.txt";
var nugetAliasFile = "../../components/nugetAlias.txt";

var packageNames = GetPackageNames(nugetAliasFile, corePackageName);

Expand Down

0 comments on commit 6953041

Please sign in to comment.