Пример #1
0
        private static void DeserializeCore(BuildXLReader reader, FileAccessAllowlist allowlist)
        {
            var valuePathEntryCount = reader.ReadInt32Compact();

            for (int i = 0; i < valuePathEntryCount; i++)
            {
                allowlist.Add(ValuePathFileAccessAllowlistEntry.Deserialize(reader));
            }

            var executablePathEntryCount = reader.ReadInt32Compact();

            for (int i = 0; i < executablePathEntryCount; i++)
            {
                allowlist.Add(ExecutablePathAllowlistEntry.Deserialize(reader));
            }
        }
Пример #2
0
        private static void DeserializeCore(BuildXLReader reader, FileAccessAllowlist allowlist)
        {
            var valuePathEntryCount = reader.ReadInt32Compact();

            for (int i = 0; i < valuePathEntryCount; i++)
            {
                allowlist.Add(ValuePathFileAccessAllowlistEntry.Deserialize(reader));
            }

            // Execute this part twice, first time for m_executablePathEntries (Absolute Path) and a second time for m_executablePathAtomEntries (Path Atom)
            var executablePathEntryCount = reader.ReadInt32Compact();

            for (int j = 0; j < executablePathEntryCount; j++)
            {
                allowlist.Add(ExecutablePathAllowlistEntry.Deserialize(reader));
            }
        }