Skip to content

Commit

Permalink
Case-sensitive path issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nblumhardt committed Sep 2, 2022
1 parent 0dd7de9 commit 42285c4
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class DllScanningAssemblyFinderTests
[Fact]
public void ShouldProbeCurrentDirectory()
{
var assemblyNames = new DllScanningAssemblyFinder().FindAssembliesContainingName("testdummies");
var assemblyNames = new DllScanningAssemblyFinder().FindAssembliesContainingName("TestDummies");
Assert.Single(assemblyNames);
}

Expand All @@ -33,9 +33,9 @@ public void ShouldProbePrivateBinPath()
DirectoryInfo GetOrCreateDirectory(string name)
=> Directory.Exists(name) ? new DirectoryInfo(name) : Directory.CreateDirectory(name);

File.Copy("testdummies.dll", $"{BinDir1}/customSink1.dll", true);
File.Copy("testdummies.dll", $"{BinDir2}/customSink2.dll", true);
File.Copy("testdummies.dll", $"{BinDir3}/thirdpartydependency.dll", true);
File.Copy("TestDummies.dll", $"{BinDir1}/customSink1.dll", true);
File.Copy("TestDummies.dll", $"{BinDir2}/customSink2.dll", true);
File.Copy("TestDummies.dll", $"{BinDir3}/thirdpartydependency.dll", true);

var ad = AppDomain.CreateDomain("serilog", null,
new AppDomainSetup
Expand Down

0 comments on commit 42285c4

Please sign in to comment.