[x] I have verified that I am running the latest version of DisposableFixer
[x] I have searched open and closed issues to ensure it has not already been reported
Description
Disposable auto properties that are not disposed have a missleading diagnostic message: "The ObjectCreation returns a object that is not disposed". It should be called something like "Property not disposed".
Source Code
public class SomeCode{
public IDisposable Property {get;} = new MemoryStream();
}
Prerequisites
Description
Disposable auto properties that are not disposed have a missleading diagnostic message: "The ObjectCreation returns a object that is not disposed". It should be called something like "Property not disposed".
Source Code
Screenshot