I have a custom MOSS publishing site collection / sites which have been provisioned with the following site definition properties within ONET.XML.
<Properties xmlns="http://schemas.microsoft.com/sharepoint/">
<Property Key="SimplePublishing" Value="false"/>
...
<Property Key="VersioningOnDocuments" Value="Major"/>
</Properties>
Is it possible to access/update these properties through the API such that, for example, all newly created document libraries have major/minor versions?
I'd like to do something like this:
PublishingWeb.Properties["VersioningOnDocuments"] = VersioningSettings.MajorAndMinor;
I haven't had any luck so far determining where these properties are stored.
Thanks.