The question is about the assembly properties.
Build Action: None
Copy to Output Directory: Do not copy
Oddly, these settings still land the assemblies in the bin. I've read the answer to this question: What are the various "Build action" settings in Visual Studio project properties and what do they do? It seems like these shouldn't be landing in the bin.
- Why are these landing in the bin?
- Is this expected behavior with those settings?
- If it isn't expected behavior, then what settings would be more appropriate?
Scenario: we're deploying SQL Server CE with the Entity Framework to a Windows Azure Web App.
After running Install-Package EntityFramework.SqlServerCompact
, our csproj now has a _bin_deployableAssemblies directory. That directory contains a bunch of assemblies that the Azure Web App requires (we don't need them locally if SQL Server CE is installed.)
When we build the csproj, all of those assemblies end up in the bin. This is all good.