Top ".net-assembly" questions

A group of classes and namespaces compiled into a binary file, written in a .NET-specific language such as C# or VB.

Unable to find type [System.IO.Compression.CompressionLevel]: make sure that the assembly containing this type is loaded

I wrote this PowerShell script to archive all log files created during a certain date range. $currentDate = Get-Date; $currentDate | Get-Member …

powershell compression runtime-error powershell-2.0 .net-assembly
Shared AssemblyInfo for uniform versioning across the solution

I've read about this technique: Shared assembly info in VS projects - JJameson's blog Basically it means to create a …

c# .net visual-studio visual-studio-2010 .net-assembly
Understanding a csproj assembly reference

I am using VS2010 and I tried to add a few assemblies from local hard disk to my C# project …

c# visual-studio-2010 reference .net-assembly csproj
'Could not load file or assembly 'netstandard, Version=2.0.0.0, ...'. Reference assemblies should not be loaded for execution

Goal: From a .NET 4.7 console app, using reflection with Assembly.GetType(), I am trying extract the Type of a netstandard 2.0 …

c# .net dll .net-assembly .net-standard
Could not load file or assembly XXX or one of its dependencies. The located assembly's manifest definition does not match the assembly reference

When running an Asp.Net MVC application locally, everything runs fine but when application is deployed on the server, I …

c# asp.net asp.net-mvc .net-assembly
How to add a reference to System.Numerics.dll

I want to use the BigInteger class from the System.Numerics but if i want to write using System.Numerics; …

c# .net-assembly system.numerics
Assembly Conflict with Newtonsoft.Json

I need to load 2 versions of assembly Newtonsoft.Json version 4.0.8.0 and 4.5.0.0. My current config file : <dependentAssembly> <assemblyIdentity …

.net json.net .net-assembly
Not allowed to load assembly from network location

I've recently set up a new Windows Server 2012 R2 environment and installed Visual Studio 2012. Now I'm having a problem with …

.net visual-studio visual-studio-2012 .net-4.5 .net-assembly
How to check the version of an assembly (dll)?

I have c# application and when I made a change, I am getting the error message: An unhandled exception of …

c# .net .net-assembly