-
Hi. Note : I saw this issue witch look similar to mine (this is about contentFiles), but solution didn't work for my build files. Here is a link to the same question i asked on StackOverflow. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
The only way to avoid it showing up in Solution Explorer, is to remove it from your package. It's shown in order to provide develoeprs insight into how each package is affecting their project. It allows them to inspect the package's files and validate it's not doing anything unwanted or malicious. The package readme, in particular, is supposed to educate package consumers about what the package does, how to use it, and where to get more information, so it doesn't make sense to me why you'd include a readme, but then want to hide it. If |
Beta Was this translation helpful? Give feedback.
-
I agree for Readme, it is fine by me to be exposed here since it is meant to be read. I mean I'd rather have to be hidden by default, since, in my opinion, the majority of consumer wouldn't care about it, but allowing it to be visible for, and by, any consumer that want to see it. |
Beta Was this translation helpful? Give feedback.
The only way to avoid it showing up in Solution Explorer, is to remove it from your package.
It's shown in order to provide develoeprs insight into how each package is affecting their project. It allows them to inspect the package's files and validate it's not doing anything unwanted or malicious. The package readme, in particular, is supposed to educate package consumers about what the package does, how to use it, and where to get more information, so it doesn't make sense to me why you'd include a readme, but then want to hide it.
If
ExcludeAssets="compile"
is preventing the package's readme and/or build assets from being shown, that's a bug we have to fix.ExcludeAssets="compile"
shoul…