Skip to content

Commit

Permalink
Merged Pull Request '#52 postindustria-tech:redirect-System.Runtime.C…
Browse files Browse the repository at this point in the history
…ompilerServices.Unsafe->main : 'Fix missing runtime assembly for FiftyOne.Pipeline.Web.Framework.Tests.Dependencies''

Fix missing runtime assembly for `FiftyOne.Pipeline.Web.Framework.Tests.Dependencies`
  • Loading branch information
Automation51D authored Sep 15, 2023
2 parents a277378 + 2a5f1d5 commit 88ebe55
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -663,6 +663,7 @@ public void DataUpdateService_UpdateFromUrl_UpdateAvailable()
Mock<IOnPremiseAspectEngine> engine = new Mock<IOnPremiseAspectEngine>();
string tempPath = Path.GetTempPath();
string dataFile = Path.GetTempFileName();
if (File.Exists(dataFile)) { File.Delete(dataFile); }
try
{
// Configure the engine to return the relevant paths.
Expand Down Expand Up @@ -847,6 +848,7 @@ public void DataUpdateService_UpdateFromUrl_HttpException()
Mock<IOnPremiseAspectEngine> engine = new Mock<IOnPremiseAspectEngine>();
string tempPath = Path.GetTempPath();
string dataFile = Path.GetTempFileName();
if (File.Exists(dataFile)) { File.Delete(dataFile); }
try
{
// Configure the engine to return the relevant paths.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
<assemblyIdentity name="Microsoft.Extensions.Logging.Abstractions" publicKeyToken="ADB9793829DDAE60" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-6.0.0.4" newVersion="6.0.0.4"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>

0 comments on commit 88ebe55

Please sign in to comment.