-
Notifications
You must be signed in to change notification settings - Fork 654
Generated classes create conflicts with InternalsVisibleTo #448
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
@SimonCropp, thoughts? |
Dont object. But how bigger "breaking" change is this? |
As these classes are generated at compile-time and included, how many people have references to those types? I'd think it'd be more of a breaking change if it was generated on included somehow in VS so developers could use those types in their code directly? |
well either way we r in v3beta so i say lets do it. @onovotny want to do a PR? |
Wish I could, I just don't have the bandwidth right now :/ |
Using the 3.0 b2 msbuild tasks, I see this:
Problem is that the ReleaseDateAttribute and GitVersionInformation classes are created in the root namespace, so they'll conflict with friend access.
Proposal:
Put the attribute in a namespace underneath the assembly name.
I.e., for an assemlby Foobar.Frob:
namespace Foobar.Frob {
...
}
The text was updated successfully, but these errors were encountered: