Revize 7397be68
Přidáno uživatelem Milan Hotovec před téměř 4 roky(ů)
tests/Leuze.Tests.Configuration/Utilities.cs | ||
---|---|---|
25 | 25 |
string projectDirectory = Directory.GetParent(workingDirectory).Parent.Parent.Parent.Parent.Parent.FullName; |
26 | 26 |
|
27 | 27 |
// Loop through all dll files in directory |
28 |
//foreach (FileInfo file in new DirectoryInfo("C:\\Users\\domin\\source\\repos\\Leuze\\src\\Presentation\\Leuze.Modules\\net5.0").GetFiles("*.dll")) |
|
29 |
foreach (FileInfo file in new DirectoryInfo(projectDirectory + "\\src\\Presentation\\Leuze.Modules\\net5.0").GetFiles("*.dll")) |
|
28 |
foreach (FileInfo file in new DirectoryInfo(Path.Combine(projectDirectory, "src\\Presentation\\Leuze.Modules\\net5.0")).GetFiles("*.dll")) |
|
30 | 29 |
{ |
31 | 30 |
try |
32 | 31 |
{ |
Také k dispozici: Unified diff
Fixed platform independent paths
refs #8299 @30m
@testFull