I'm using new .csproj file format to pack NuGet package without using .nuspec file.
The problem is, it puts my dll in \lib\ where I need to put it \analyzers\
Who I do accomplish that?
I'm using new .csproj file format to pack NuGet package without using .nuspec file.
The problem is, it puts my dll in \lib\ where I need to put it \analyzers\
Who I do accomplish that?
The property that controls where the build output is placed is called BuildOutputTargetFolder
which is defaulted to lib
(or tools
when IsTool
is set to true
):
<BuildOutputTargetFolder>analyzers</BuildOutputTargetFolder>