Description
Dependencies are not copied to the output directory of a project targeting netstandard2.x (but they are for net4x).
Repro steps
Please provide the steps required to reproduce the problem
-
dotnet new -i "MiniScaffold::*"
-
dotnet new mini-scaffold
-
After restore/build completes, check {proj}\bin\Debug\net461 and see dependencies copied. Check {proj}\bin\Debug\netstandard2.1 and see no dependencies copied.
If possible then please create a git repository with a repro sample or attach a zip to the issue.
Expected behavior
Expect copy local behavior to match paket directive. This is rather important for building certain things, like type providers. I also think this is the root cause of BenchmarkDotNet#1392.
Actual behavior
The paket directive seems to not matter. See also: #3645, #3352, #3154, #3186.
Known workarounds
None? Using PackageReference instead of paket, I guess
Description
Dependencies are not copied to the output directory of a project targeting
netstandard2.x(but they are fornet4x).Repro steps
Please provide the steps required to reproduce the problem
dotnet new -i "MiniScaffold::*"dotnet new mini-scaffoldAfter restore/build completes, check
{proj}\bin\Debug\net461and see dependencies copied. Check{proj}\bin\Debug\netstandard2.1and see no dependencies copied.If possible then please create a git repository with a repro sample or attach a zip to the issue.
Expected behavior
Expect copy local behavior to match paket directive. This is rather important for building certain things, like type providers. I also think this is the root cause of BenchmarkDotNet#1392.
Actual behavior
The paket directive seems to not matter. See also: #3645, #3352, #3154, #3186.
Known workarounds
None? Using
PackageReferenceinstead of paket, I guess