Skip to content

Commit

Permalink
Add .dll.config for tests
Browse files Browse the repository at this point in the history
Need to specify binding redirects for xUnit when loading MSBuild
  • Loading branch information
KirillOsenkov committed Jun 17, 2021
1 parent e1d23fc commit 097b095
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/StructuredLogger.Tests/App.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-100.0.0.0" newVersion="5.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>

0 comments on commit 097b095

Please sign in to comment.