Where is OutputPath folder for Uno projects? #10639
-
I have about a dozen projects that contain this directive in the .csproj:
All of these project output a .nupkg file in bin/Debug and copy it as specified. My uno project does not work - it generates the .nupkg in bin/Debug as other projects do however I get this build error:
When I change the directive as follows it works fine (remove .. after OutputPath):
The weierd thing about is that all my projects - including the Uno project - output the .nupkg to bin/Debug. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
MSBuild NuGet targets provide an existing property called |
Beta Was this translation helpful? Give feedback.
MSBuild NuGet targets provide an existing property called
PackageOutputPath
that you can use to avoid copying packages after the build.