Questions tagged [fusion]

Fusion is the code name for the assembly loader in .NET. Alternatively, it is a compiler optimization that removes intermediate data structures from composed operations on those data structures (also known as "deforestation").

It is fusion's job to seek out assemblies and load them into the current app domain so that a program can execute. The Assembly binding log viewer shows where it looks to find assemblies, and any issues that may arrise in loading them.

225 questions
4
votes
2 answers

When does the CLR try to load a referenced assembly?

I want to write a small installer app that installs a web site and creates IIS virtual directories. The app should run on Windows XP/Server 2003 (IIS 6) as well as on Vista/2008 (IIS 7). The problem is: for IIS 6 we create virt dirs by calling…
new here
  • 43
  • 4
4
votes
2 answers

Writing fusible O(1) update for vector

It is continuation of this question. Since vector library doesn't seem to have a fusible O(1) update function, I am wondering if it is possible to write a fusible O(1) update function that doesn't involve unsafeFreeze and unsafeThaw. It would use…
Sal
  • 4,312
  • 1
  • 17
  • 26
3
votes
1 answer

Android implementation of Madgwick's sensor fusion algorithm

I was trying to port Sebastian Madgwich's sensor fusion algorithm ( http://www.x-io.co.uk/node/8 ) to Android, but the first results seem not to be correct, and the resulting quaternion is moving everywhere when the phone is steady. One of the…
blobnl
  • 31
  • 3
3
votes
1 answer

TODAY() Function in Foundry Fusion Sheets

I am pretty new to Fusion Sheets and want to prepare some data. As it seems, there is no TODAY() function existing as far as I could tell. So I was thinking of creating a custom function in order to do so. But the documentation is not giving any…
Eiko
  • 31
  • 1
3
votes
0 answers

dotnet core fusion assembly logs on linux

Using Windows it is possible to enable Fusion assembly logs via registry (https://techcommunity.microsoft.com/t5/iis-support-blog/fusion-log-viewer-fuslogvw-exe/ba-p/784396) to be saved on local hard drive. My .NET Core 3.1 application is working…
biteMe
  • 41
  • 2
3
votes
3 answers

Merging same vgg16 model but with different inputs

I am working on a classification problem in a project. The specificity of my problem is that I have to use two different type of data to manage it. My classes are Car, Pedestrian, Truck and Cyclist. My dataset is composed of : -Images coming from…
Doxcos44
  • 135
  • 2
  • 12
3
votes
2 answers

Find fully qualified .NET assembly name programmatically (from simple name, for given .NET version)?

My goal is to display a .NET Windows forms message box from a pure C++ native Windows API-level program (not managed C++ or C++/CLI). That is, for learning purposes I want to implementing the C# code shown in the comment below, in pure C++: /* …
Cheers and hth. - Alf
  • 142,714
  • 15
  • 209
  • 331
3
votes
0 answers

DEVPATH not working in .NET 4.5.2 CLR v4.0.30319

During testing I want a dll to be picked from a local folder instead of the GAC. As per articles on web and msdn, using DEVPATH is one of the solutions, but it doesn't seem to work. (I don't want to change the version or remove strong name - which…
Turbo
  • 2,179
  • 18
  • 38
3
votes
4 answers

Adding Project as Reference results in Cannot load file or assembly or one of its dependencies

I have a solution in Visual Studio 2012 containing several Projects. I am trying to add a project to another project as a Reference to be able to use them together, but I cannot figure out why adding this project reference is resulting in a missing…
Brock Hensley
  • 3,617
  • 2
  • 29
  • 47
3
votes
1 answer

Could not load file or assembly 'Microsoft.PowerShell.Security' or one of its dependencies. The system cannot find the file specified

I'm running PowerShell from a C# console app. My dev box has PowerShell 3.0 - the target machines will probably have v2.0. My project file has a reference to the assembly: which seems to be the…
serialhobbyist
  • 4,768
  • 5
  • 43
  • 65
3
votes
0 answers

Assembly redirect in multiple environment / eg, for F# 4.0.0.0

I received a new machine and thought plugging in some machine wide redirect would just work for my FsCheck tests would work like in my previous machine. That was not the case, and I received a similar error than on my old machine so I knew that it…
nicolas
  • 9,549
  • 3
  • 39
  • 83
3
votes
1 answer

Fusion loader can't find a DLL that is actually there

Does anyone have any idea what would cause the Fusion loader to simply skip over a DLL with no warning or acknowledgement? When I attempt to do this (in C#) from a command-line application Assembly.LoadFrom("c:\\Deploy\\bin\\WebServices.dll") I see…
Steve Eisner
  • 2,005
  • 23
  • 35
2
votes
1 answer

Loading Assemby failed with FileNotFoundException - Fusion says all ok

I have an assembly with C++/CLI code that I want to reference in my unit test project. MSTest says: Test method Grafik.Implementation.Tests.MappingHelperTests.GetMappedFeatures_OneMappedFeature_OneFeatureReturned threw exception:…
2
votes
1 answer

Sensor fusion with compass and gyroscope: between 0 and 360 degrees

I'm developing a small indoor navigation app in which I use the gyro and the compass for the device orientation. I use the gyro to smooth the compass data. My sensor fusion looks like the following. This is my motionHandler where everything…
Juuro
  • 227
  • 1
  • 4
  • 12
2
votes
2 answers

Why does .NET runtime / Fusion not always load all referenced assemblies from the manifest?

This all started because I am trying to FxCop analyze my assembly, which references Crystal Reports. Every time I do, FxCop can't find a reference to an assembly named "BusinessObjects.Licensing.KeycodeDecoder". In trying to locate this .dll, I've…
CodingWithSpike
  • 42,906
  • 18
  • 101
  • 138
1 2
3
14 15