Fix build_init vcxproj to correctly detect changes in config.h.
[mono.git] / mcs / class / System.IO.Compression / SharpCompress / Common / Zip / WinzipAesKeySize.cs
1 namespace SharpCompress.Common.Zip
2 {
3     internal enum WinzipAesKeySize
4     {
5         KeySize128 = 1,
6         KeySize192 = 2,
7         KeySize256 = 3,
8     }
9 }