app.config 877 B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <configSections>
  4. <section name="autoLoad" type="ISCSIConsole.Mods.AutoLoadEntrySection,ISCSIConsole" />
  5. </configSections>
  6. <appSettings>
  7. <add key="Listen" value="127.0.0.1" />
  8. <add key="Port" value="3261" />
  9. <add key="AutoLoadConfig" value="false" />
  10. <add key="AutoStart" value="false" />
  11. </appSettings>
  12. <autoLoad>
  13. <entry Enable="false" Iqn="iqn.1991-05.com.talaloni:LocalRamDisk">
  14. <disk Enable="true" Type="RamDiskFromFile" FilePath="C:\Path\To\YourRamDisk.bdd" />
  15. </entry>
  16. <entry Enable="false" Iqn="iqn.1991-05.com.talaloni:LocalDisk">
  17. <disk Enable="true" Type="AttachFile" ReadOnly="true" FilePath="C:\Path\To\Your.img" />
  18. <disk Enable="true" Type="AttachFile" FilePath="C:\Path\To\Your.bdd" />
  19. </entry>
  20. </autoLoad>
  21. </configuration>