Custom scope for .NET application settings
Posted
by Valery Tydykov
on Stack Overflow
See other posts from Stack Overflow
or by Valery Tydykov
Published on 2009-07-29T20:05:51Z
Indexed on
2010/04/07
13:33 UTC
Read the original article
Hit count: 205
I can define my custom scope:
[AttributeUsage(AttributeTargets.Property)]
public sealed class SiteScopedSettingAttribute : SettingAttribute
{
}
How do I use it in the Visual Studio Settings editor (make it available in the "Scope" combobox)?
© Stack Overflow or respective owner