NSubsys
NSubsys copied to clipboard
Removing nSubsys
I added NSubSys to my project and it worked great. When I removed it and recomipled the EXE was still being hidden. Is there something in the project I need to check?
Here's what I use to publish
dotnet publish -c release -r win-x64
Try running dotnet clean MyProject.csproj
, where MyProject.csproj
is the filename of your project file. I'm not sure if this will help or not, but it will remove any temp files from the previous builds, then build the project again using the dotnet CLI.
I was able to clean it but it still disappears and runs the app
Are you trying to use the package with, or remove the package from your project?
I used the Nuget package to try it out, then did uninstall-package to remove it from my project.
Trying to remove it from my project. It's hard to see errors when I can't see the console. I didn't turn on any logging yet
Are there some settings in the csproj file I can look at?
May I see your csproj, to see if there's anything residual in there from your installation? I'm not sure why it would still be showing up after you uninstall it.