|
|
|
Community Member
|
|
We load a 32bit or 64bit dll in our code using the following event: AppDomain.CurrentDomain.AssemblyResolve += AssemblyResolutionHelper.StreamingClientResolver
Because of this approach, the DLL is not available in the output folder during the build. Is there a way to tell PostSharp to skip processing external referenced DLLs?
|
|
|
|
|
Gael Fraiteur
SharpCrafters
|
|
No, this is not possible (at least not easily -- the feature exists but is not accessible from the MSBuild task or the command-line utility). But you can tell PostSharp where the library is using VS reference path (in VS project properties), or edit your csproj file and define the property PostSharpSearchPath.
-g
|
|
|
|