AssetImportWorker0-prev.log 268 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146
  1. Using pre-set license
  2. Built from '2021.3/staging' branch; Version is '2021.3.9f1 (ad3870b89536) revision 11352176'; Using compiler version '192829333'; Build Type 'Release'
  3. OS: 'Windows 10 (10.0.19044) 64bit Professional' Language: 'en' Physical Memory: 32685 MB
  4. BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1
  5. COMMAND LINE ARGUMENTS:
  6. F:\Unity\2021.3.9f1\Editor\Unity.exe
  7. -adb2
  8. -batchMode
  9. -noUpm
  10. -name
  11. AssetImportWorker0
  12. -projectPath
  13. F:/Unity/Projects/NarKampenTake2
  14. -logFile
  15. Logs/AssetImportWorker0.log
  16. -srvPort
  17. 60632
  18. Successfully changed project path to: F:/Unity/Projects/NarKampenTake2
  19. F:/Unity/Projects/NarKampenTake2
  20. [UnityMemory] Configuration Parameters - Can be set up in boot.config
  21. "memorysetup-bucket-allocator-granularity=16"
  22. "memorysetup-bucket-allocator-bucket-count=8"
  23. "memorysetup-bucket-allocator-block-size=33554432"
  24. "memorysetup-bucket-allocator-block-count=8"
  25. "memorysetup-main-allocator-block-size=16777216"
  26. "memorysetup-thread-allocator-block-size=16777216"
  27. "memorysetup-gfx-main-allocator-block-size=16777216"
  28. "memorysetup-gfx-thread-allocator-block-size=16777216"
  29. "memorysetup-cache-allocator-block-size=4194304"
  30. "memorysetup-typetree-allocator-block-size=2097152"
  31. "memorysetup-profiler-bucket-allocator-granularity=16"
  32. "memorysetup-profiler-bucket-allocator-bucket-count=8"
  33. "memorysetup-profiler-bucket-allocator-block-size=33554432"
  34. "memorysetup-profiler-bucket-allocator-block-count=8"
  35. "memorysetup-profiler-allocator-block-size=16777216"
  36. "memorysetup-profiler-editor-allocator-block-size=1048576"
  37. "memorysetup-temp-allocator-size-main=16777216"
  38. "memorysetup-job-temp-allocator-block-size=2097152"
  39. "memorysetup-job-temp-allocator-block-size-background=1048576"
  40. "memorysetup-job-temp-allocator-reduction-small-platforms=262144"
  41. "memorysetup-temp-allocator-size-background-worker=32768"
  42. "memorysetup-temp-allocator-size-job-worker=262144"
  43. "memorysetup-temp-allocator-size-preload-manager=33554432"
  44. "memorysetup-temp-allocator-size-nav-mesh-worker=65536"
  45. "memorysetup-temp-allocator-size-audio-worker=65536"
  46. "memorysetup-temp-allocator-size-cloud-worker=32768"
  47. "memorysetup-temp-allocator-size-gi-baking-worker=262144"
  48. "memorysetup-temp-allocator-size-gfx=262144"
  49. Refreshing native plugins compatible for Editor in 92.05 ms, found 6 plugins.
  50. Preloading 0 native plugins for Editor in 0.00 ms.
  51. Initialize engine version: 2021.3.9f1 (ad3870b89536)
  52. [Subsystems] Discovering subsystems at path F:/Unity/2021.3.9f1/Editor/Data/Resources/UnitySubsystems
  53. [Subsystems] Discovering subsystems at path F:/Unity/Projects/NarKampenTake2/Assets
  54. GfxDevice: creating device client; threaded=0; jobified=0
  55. Direct3D:
  56. Version: Direct3D 11.0 [level 11.1]
  57. Renderer: NVIDIA GeForce RTX 2070 SUPER (ID=0x1e84)
  58. Vendor: NVIDIA
  59. VRAM: 8011 MB
  60. Driver: 31.0.15.1694
  61. Initialize mono
  62. Mono path[0] = 'F:/Unity/2021.3.9f1/Editor/Data/Managed'
  63. Mono path[1] = 'F:/Unity/2021.3.9f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32'
  64. Mono config path = 'F:/Unity/2021.3.9f1/Editor/Data/MonoBleedingEdge/etc'
  65. Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56784
  66. Begin MonoManager ReloadAssembly
  67. Registering precompiled unity dll's ...
  68. Register platform support module: F:/Unity/2021.3.9f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll
  69. Register platform support module: F:/Unity/2021.3.9f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll
  70. Register platform support module: F:/Unity/2021.3.9f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
  71. Registered in 0.004592 seconds.
  72. Native extension for WindowsStandalone target not found
  73. [usbmuxd] Start listen thread
  74. [usbmuxd] Listen thread started
  75. Native extension for iOS target not found
  76. Native extension for Android target not found
  77. Refreshing native plugins compatible for Editor in 95.86 ms, found 6 plugins.
  78. Preloading 0 native plugins for Editor in 0.00 ms.
  79. Mono: successfully reloaded assembly
  80. - Completed reload, in 0.678 seconds
  81. Domain Reload Profiling:
  82. ReloadAssembly (679ms)
  83. BeginReloadAssembly (77ms)
  84. ExecutionOrderSort (0ms)
  85. DisableScriptedObjects (0ms)
  86. BackupInstance (0ms)
  87. ReleaseScriptingObjects (0ms)
  88. CreateAndSetChildDomain (1ms)
  89. EndReloadAssembly (471ms)
  90. LoadAssemblies (77ms)
  91. RebuildTransferFunctionScriptingTraits (0ms)
  92. SetupTypeCache (106ms)
  93. ReleaseScriptCaches (0ms)
  94. RebuildScriptCaches (27ms)
  95. SetupLoadedEditorAssemblies (293ms)
  96. LogAssemblyErrors (0ms)
  97. InitializePlatformSupportModulesInManaged (57ms)
  98. SetLoadedEditorAssemblies (0ms)
  99. RefreshPlugins (96ms)
  100. BeforeProcessingInitializeOnLoad (2ms)
  101. ProcessInitializeOnLoadAttributes (90ms)
  102. ProcessInitializeOnLoadMethodAttributes (48ms)
  103. AfterProcessingInitializeOnLoad (0ms)
  104. EditorAssembliesLoaded (0ms)
  105. ExecutionOrderSort2 (0ms)
  106. AwakeInstancesAfterBackupRestoration (0ms)
  107. Platform modules already initialized, skipping
  108. Registering precompiled user dll's ...
  109. Registered in 0.011456 seconds.
  110. Begin MonoManager ReloadAssembly
  111. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  112. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  113. Native extension for WindowsStandalone target not found
  114. Native extension for iOS target not found
  115. Native extension for Android target not found
  116. Refreshing native plugins compatible for Editor in 83.16 ms, found 6 plugins.
  117. Preloading 0 native plugins for Editor in 0.00 ms.
  118. Unable to write to 'ProjectSettings\GvhProjectSettings.xml' (System.IO.IOException: Sharing violation on path F:\Unity\Projects\NarKampenTake2\ProjectSettings\GvhProjectSettings.xml
  119. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0019e] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  120. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  121. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean useAsync) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  122. at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,bool)
  123. at System.Xml.XmlWriterSettings.CreateWriter (System.String outputFileName) [0x00051] in <dd0557022e4e4150b548e69900b259c8>:0
  124. at System.Xml.XmlWriter.Create (System.String outputFileName, System.Xml.XmlWriterSettings settings) [0x0000a] in <dd0557022e4e4150b548e69900b259c8>:0
  125. at Google.ProjectSettings.Save () [0x0006d] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:821 , Project settings were not saved!
  126. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  127. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  128. UnityEngine.Logger:Log (UnityEngine.LogType,object)
  129. UnityEngine.Debug:LogError (object)
  130. Google.Logger:Log (string,Google.LogLevel) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/Logger.cs:136)
  131. Google.ProjectSettings:Save () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:844)
  132. Google.ProjectSettings:SetBool (string,bool,Google.SettingsLocation) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:485)
  133. Google.ProjectSettings:SetBool (string,bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:497)
  134. Google.IOSResolver:set_VerboseLoggingEnabled (bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:1040)
  135. Google.IOSResolver:.cctor () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:726)
  136. System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
  137. UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
  138. (Filename: /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs Line: 844)
  139. Mono: successfully reloaded assembly
  140. - Completed reload, in 1.312 seconds
  141. Domain Reload Profiling:
  142. ReloadAssembly (1313ms)
  143. BeginReloadAssembly (207ms)
  144. ExecutionOrderSort (0ms)
  145. DisableScriptedObjects (5ms)
  146. BackupInstance (0ms)
  147. ReleaseScriptingObjects (0ms)
  148. CreateAndSetChildDomain (120ms)
  149. EndReloadAssembly (999ms)
  150. LoadAssemblies (86ms)
  151. RebuildTransferFunctionScriptingTraits (0ms)
  152. SetupTypeCache (282ms)
  153. ReleaseScriptCaches (1ms)
  154. RebuildScriptCaches (69ms)
  155. SetupLoadedEditorAssemblies (520ms)
  156. LogAssemblyErrors (0ms)
  157. InitializePlatformSupportModulesInManaged (18ms)
  158. SetLoadedEditorAssemblies (0ms)
  159. RefreshPlugins (83ms)
  160. BeforeProcessingInitializeOnLoad (95ms)
  161. ProcessInitializeOnLoadAttributes (278ms)
  162. ProcessInitializeOnLoadMethodAttributes (40ms)
  163. AfterProcessingInitializeOnLoad (5ms)
  164. EditorAssembliesLoaded (0ms)
  165. ExecutionOrderSort2 (0ms)
  166. AwakeInstancesAfterBackupRestoration (11ms)
  167. Platform modules already initialized, skipping
  168. ========================================================================
  169. Worker process is ready to serve import requests
  170. Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds
  171. Refreshing native plugins compatible for Editor in 0.77 ms, found 6 plugins.
  172. Preloading 0 native plugins for Editor in 0.00 ms.
  173. Unloading 4094 Unused Serialized files (Serialized files now loaded: 0)
  174. Unloading 61 unused Assets / (56.9 KB). Loaded Objects now: 4542.
  175. Memory consumption went from 152.4 MB to 152.4 MB.
  176. Total: 3.203300 ms (FindLiveObjects: 0.249100 ms CreateObjectMapping: 0.213500 ms MarkObjects: 2.669900 ms DeleteObjects: 0.070000 ms)
  177. AssetImportParameters requested are different than current active one (requested -> active):
  178. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  179. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  180. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  181. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  182. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  183. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  184. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  185. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  186. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  187. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  188. ========================================================================
  189. Received Prepare
  190. Registering precompiled user dll's ...
  191. Registered in 0.014229 seconds.
  192. Begin MonoManager ReloadAssembly
  193. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  194. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  195. Native extension for WindowsStandalone target not found
  196. Native extension for iOS target not found
  197. Native extension for Android target not found
  198. Refreshing native plugins compatible for Editor in 0.69 ms, found 6 plugins.
  199. Preloading 0 native plugins for Editor in 0.00 ms.
  200. Mono: successfully reloaded assembly
  201. - Completed reload, in 1.174 seconds
  202. Domain Reload Profiling:
  203. ReloadAssembly (1174ms)
  204. BeginReloadAssembly (135ms)
  205. ExecutionOrderSort (0ms)
  206. DisableScriptedObjects (7ms)
  207. BackupInstance (0ms)
  208. ReleaseScriptingObjects (0ms)
  209. CreateAndSetChildDomain (40ms)
  210. EndReloadAssembly (951ms)
  211. LoadAssemblies (96ms)
  212. RebuildTransferFunctionScriptingTraits (0ms)
  213. SetupTypeCache (263ms)
  214. ReleaseScriptCaches (1ms)
  215. RebuildScriptCaches (47ms)
  216. SetupLoadedEditorAssemblies (503ms)
  217. LogAssemblyErrors (0ms)
  218. InitializePlatformSupportModulesInManaged (26ms)
  219. SetLoadedEditorAssemblies (1ms)
  220. RefreshPlugins (1ms)
  221. BeforeProcessingInitializeOnLoad (76ms)
  222. ProcessInitializeOnLoadAttributes (353ms)
  223. ProcessInitializeOnLoadMethodAttributes (44ms)
  224. AfterProcessingInitializeOnLoad (3ms)
  225. EditorAssembliesLoaded (0ms)
  226. ExecutionOrderSort2 (0ms)
  227. AwakeInstancesAfterBackupRestoration (13ms)
  228. Platform modules already initialized, skipping
  229. Refreshing native plugins compatible for Editor in 2.92 ms, found 6 plugins.
  230. Preloading 0 native plugins for Editor in 0.00 ms.
  231. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  232. Unloading 48 unused Assets / (26.0 KB). Loaded Objects now: 4545.
  233. Memory consumption went from 151.8 MB to 151.8 MB.
  234. Total: 2.773800 ms (FindLiveObjects: 0.230400 ms CreateObjectMapping: 0.175800 ms MarkObjects: 2.335500 ms DeleteObjects: 0.031400 ms)
  235. AssetImportParameters requested are different than current active one (requested -> active):
  236. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  237. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  238. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  239. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  240. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  241. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  242. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  243. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  244. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  245. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  246. ========================================================================
  247. Received Prepare
  248. Registering precompiled user dll's ...
  249. Registered in 0.013182 seconds.
  250. Begin MonoManager ReloadAssembly
  251. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  252. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  253. Native extension for WindowsStandalone target not found
  254. Native extension for iOS target not found
  255. Native extension for Android target not found
  256. Refreshing native plugins compatible for Editor in 1.11 ms, found 6 plugins.
  257. Preloading 0 native plugins for Editor in 0.00 ms.
  258. Mono: successfully reloaded assembly
  259. - Completed reload, in 1.078 seconds
  260. Domain Reload Profiling:
  261. ReloadAssembly (1078ms)
  262. BeginReloadAssembly (130ms)
  263. ExecutionOrderSort (0ms)
  264. DisableScriptedObjects (7ms)
  265. BackupInstance (0ms)
  266. ReleaseScriptingObjects (0ms)
  267. CreateAndSetChildDomain (40ms)
  268. EndReloadAssembly (845ms)
  269. LoadAssemblies (87ms)
  270. RebuildTransferFunctionScriptingTraits (0ms)
  271. SetupTypeCache (252ms)
  272. ReleaseScriptCaches (1ms)
  273. RebuildScriptCaches (44ms)
  274. SetupLoadedEditorAssemblies (413ms)
  275. LogAssemblyErrors (0ms)
  276. InitializePlatformSupportModulesInManaged (27ms)
  277. SetLoadedEditorAssemblies (1ms)
  278. RefreshPlugins (1ms)
  279. BeforeProcessingInitializeOnLoad (75ms)
  280. ProcessInitializeOnLoadAttributes (263ms)
  281. ProcessInitializeOnLoadMethodAttributes (42ms)
  282. AfterProcessingInitializeOnLoad (3ms)
  283. EditorAssembliesLoaded (0ms)
  284. ExecutionOrderSort2 (0ms)
  285. AwakeInstancesAfterBackupRestoration (13ms)
  286. Platform modules already initialized, skipping
  287. Refreshing native plugins compatible for Editor in 2.92 ms, found 6 plugins.
  288. Preloading 0 native plugins for Editor in 0.00 ms.
  289. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  290. Unloading 48 unused Assets / (26.0 KB). Loaded Objects now: 4548.
  291. Memory consumption went from 151.8 MB to 151.8 MB.
  292. Total: 2.902900 ms (FindLiveObjects: 0.234300 ms CreateObjectMapping: 0.178200 ms MarkObjects: 2.456900 ms DeleteObjects: 0.032500 ms)
  293. AssetImportParameters requested are different than current active one (requested -> active):
  294. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  295. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  296. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  297. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  298. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  299. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  300. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  301. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  302. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  303. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  304. ========================================================================
  305. Received Prepare
  306. Registering precompiled user dll's ...
  307. Registered in 0.010892 seconds.
  308. Begin MonoManager ReloadAssembly
  309. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  310. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  311. Native extension for WindowsStandalone target not found
  312. Native extension for iOS target not found
  313. Native extension for Android target not found
  314. Refreshing native plugins compatible for Editor in 1.04 ms, found 6 plugins.
  315. Preloading 0 native plugins for Editor in 0.00 ms.
  316. Unable to write to 'ProjectSettings\GvhProjectSettings.xml' (System.IO.IOException: Sharing violation on path F:\Unity\Projects\NarKampenTake2\ProjectSettings\GvhProjectSettings.xml
  317. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0019e] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  318. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  319. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean useAsync) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  320. at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,bool)
  321. at System.Xml.XmlWriterSettings.CreateWriter (System.String outputFileName) [0x00051] in <dd0557022e4e4150b548e69900b259c8>:0
  322. at System.Xml.XmlWriter.Create (System.String outputFileName, System.Xml.XmlWriterSettings settings) [0x0000a] in <dd0557022e4e4150b548e69900b259c8>:0
  323. at Google.ProjectSettings.Save () [0x0006d] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:821 , Project settings were not saved!
  324. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  325. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  326. UnityEngine.Logger:Log (UnityEngine.LogType,object)
  327. UnityEngine.Debug:LogError (object)
  328. Google.Logger:Log (string,Google.LogLevel) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/Logger.cs:136)
  329. Google.ProjectSettings:Save () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:844)
  330. Google.ProjectSettings:SetBool (string,bool,Google.SettingsLocation) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:485)
  331. Google.ProjectSettings:SetBool (string,bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:497)
  332. Google.IOSResolver:set_VerboseLoggingEnabled (bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:1040)
  333. Google.IOSResolver:.cctor () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:726)
  334. System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
  335. UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
  336. (Filename: /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs Line: 844)
  337. Mono: successfully reloaded assembly
  338. - Completed reload, in 1.197 seconds
  339. Domain Reload Profiling:
  340. ReloadAssembly (1197ms)
  341. BeginReloadAssembly (126ms)
  342. ExecutionOrderSort (0ms)
  343. DisableScriptedObjects (6ms)
  344. BackupInstance (0ms)
  345. ReleaseScriptingObjects (0ms)
  346. CreateAndSetChildDomain (40ms)
  347. EndReloadAssembly (988ms)
  348. LoadAssemblies (87ms)
  349. RebuildTransferFunctionScriptingTraits (0ms)
  350. SetupTypeCache (276ms)
  351. ReleaseScriptCaches (1ms)
  352. RebuildScriptCaches (67ms)
  353. SetupLoadedEditorAssemblies (484ms)
  354. LogAssemblyErrors (0ms)
  355. InitializePlatformSupportModulesInManaged (37ms)
  356. SetLoadedEditorAssemblies (0ms)
  357. RefreshPlugins (1ms)
  358. BeforeProcessingInitializeOnLoad (97ms)
  359. ProcessInitializeOnLoadAttributes (297ms)
  360. ProcessInitializeOnLoadMethodAttributes (48ms)
  361. AfterProcessingInitializeOnLoad (4ms)
  362. EditorAssembliesLoaded (0ms)
  363. ExecutionOrderSort2 (0ms)
  364. AwakeInstancesAfterBackupRestoration (16ms)
  365. Platform modules already initialized, skipping
  366. Refreshing native plugins compatible for Editor in 3.16 ms, found 6 plugins.
  367. Preloading 0 native plugins for Editor in 0.00 ms.
  368. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  369. Unloading 48 unused Assets / (26.0 KB). Loaded Objects now: 4551.
  370. Memory consumption went from 151.8 MB to 151.8 MB.
  371. Total: 4.299100 ms (FindLiveObjects: 0.232400 ms CreateObjectMapping: 0.167400 ms MarkObjects: 3.854000 ms DeleteObjects: 0.044500 ms)
  372. AssetImportParameters requested are different than current active one (requested -> active):
  373. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  374. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  375. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  376. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  377. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  378. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  379. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  380. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  381. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  382. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  383. ========================================================================
  384. Received Prepare
  385. Registering precompiled user dll's ...
  386. Registered in 0.010486 seconds.
  387. Begin MonoManager ReloadAssembly
  388. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  389. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  390. Native extension for WindowsStandalone target not found
  391. Native extension for iOS target not found
  392. Native extension for Android target not found
  393. Refreshing native plugins compatible for Editor in 0.67 ms, found 6 plugins.
  394. Preloading 0 native plugins for Editor in 0.00 ms.
  395. Mono: successfully reloaded assembly
  396. - Completed reload, in 1.133 seconds
  397. Domain Reload Profiling:
  398. ReloadAssembly (1133ms)
  399. BeginReloadAssembly (127ms)
  400. ExecutionOrderSort (0ms)
  401. DisableScriptedObjects (7ms)
  402. BackupInstance (0ms)
  403. ReleaseScriptingObjects (0ms)
  404. CreateAndSetChildDomain (35ms)
  405. EndReloadAssembly (911ms)
  406. LoadAssemblies (95ms)
  407. RebuildTransferFunctionScriptingTraits (0ms)
  408. SetupTypeCache (268ms)
  409. ReleaseScriptCaches (1ms)
  410. RebuildScriptCaches (64ms)
  411. SetupLoadedEditorAssemblies (433ms)
  412. LogAssemblyErrors (0ms)
  413. InitializePlatformSupportModulesInManaged (32ms)
  414. SetLoadedEditorAssemblies (0ms)
  415. RefreshPlugins (1ms)
  416. BeforeProcessingInitializeOnLoad (79ms)
  417. ProcessInitializeOnLoadAttributes (278ms)
  418. ProcessInitializeOnLoadMethodAttributes (40ms)
  419. AfterProcessingInitializeOnLoad (3ms)
  420. EditorAssembliesLoaded (0ms)
  421. ExecutionOrderSort2 (0ms)
  422. AwakeInstancesAfterBackupRestoration (14ms)
  423. Platform modules already initialized, skipping
  424. Refreshing native plugins compatible for Editor in 2.95 ms, found 6 plugins.
  425. Preloading 0 native plugins for Editor in 0.00 ms.
  426. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  427. Unloading 48 unused Assets / (26.0 KB). Loaded Objects now: 4554.
  428. Memory consumption went from 151.8 MB to 151.8 MB.
  429. Total: 2.966600 ms (FindLiveObjects: 0.233200 ms CreateObjectMapping: 0.166000 ms MarkObjects: 2.535600 ms DeleteObjects: 0.031200 ms)
  430. AssetImportParameters requested are different than current active one (requested -> active):
  431. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  432. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  433. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  434. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  435. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  436. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  437. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  438. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  439. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  440. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  441. ========================================================================
  442. Received Prepare
  443. Registering precompiled user dll's ...
  444. Registered in 0.012004 seconds.
  445. Begin MonoManager ReloadAssembly
  446. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  447. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  448. Native extension for WindowsStandalone target not found
  449. Native extension for iOS target not found
  450. Native extension for Android target not found
  451. Refreshing native plugins compatible for Editor in 0.79 ms, found 6 plugins.
  452. Preloading 0 native plugins for Editor in 0.00 ms.
  453. Unable to write to 'ProjectSettings\GvhProjectSettings.xml' (System.IO.IOException: Sharing violation on path F:\Unity\Projects\NarKampenTake2\ProjectSettings\GvhProjectSettings.xml
  454. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0019e] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  455. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  456. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean useAsync) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  457. at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,bool)
  458. at System.Xml.XmlWriterSettings.CreateWriter (System.String outputFileName) [0x00051] in <dd0557022e4e4150b548e69900b259c8>:0
  459. at System.Xml.XmlWriter.Create (System.String outputFileName, System.Xml.XmlWriterSettings settings) [0x0000a] in <dd0557022e4e4150b548e69900b259c8>:0
  460. at Google.ProjectSettings.Save () [0x0006d] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:821 , Project settings were not saved!
  461. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  462. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  463. UnityEngine.Logger:Log (UnityEngine.LogType,object)
  464. UnityEngine.Debug:LogError (object)
  465. Google.Logger:Log (string,Google.LogLevel) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/Logger.cs:136)
  466. Google.ProjectSettings:Save () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:844)
  467. Google.ProjectSettings:SetBool (string,bool,Google.SettingsLocation) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:485)
  468. Google.ProjectSettings:SetBool (string,bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:497)
  469. Google.IOSResolver:set_VerboseLoggingEnabled (bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:1040)
  470. Google.IOSResolver:.cctor () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:726)
  471. System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
  472. UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
  473. (Filename: /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs Line: 844)
  474. Mono: successfully reloaded assembly
  475. - Completed reload, in 1.035 seconds
  476. Domain Reload Profiling:
  477. ReloadAssembly (1036ms)
  478. BeginReloadAssembly (128ms)
  479. ExecutionOrderSort (0ms)
  480. DisableScriptedObjects (6ms)
  481. BackupInstance (0ms)
  482. ReleaseScriptingObjects (0ms)
  483. CreateAndSetChildDomain (36ms)
  484. EndReloadAssembly (818ms)
  485. LoadAssemblies (94ms)
  486. RebuildTransferFunctionScriptingTraits (0ms)
  487. SetupTypeCache (231ms)
  488. ReleaseScriptCaches (1ms)
  489. RebuildScriptCaches (45ms)
  490. SetupLoadedEditorAssemblies (394ms)
  491. LogAssemblyErrors (0ms)
  492. InitializePlatformSupportModulesInManaged (35ms)
  493. SetLoadedEditorAssemblies (0ms)
  494. RefreshPlugins (1ms)
  495. BeforeProcessingInitializeOnLoad (76ms)
  496. ProcessInitializeOnLoadAttributes (241ms)
  497. ProcessInitializeOnLoadMethodAttributes (37ms)
  498. AfterProcessingInitializeOnLoad (3ms)
  499. EditorAssembliesLoaded (0ms)
  500. ExecutionOrderSort2 (0ms)
  501. AwakeInstancesAfterBackupRestoration (12ms)
  502. Platform modules already initialized, skipping
  503. Refreshing native plugins compatible for Editor in 2.91 ms, found 6 plugins.
  504. Preloading 0 native plugins for Editor in 0.00 ms.
  505. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  506. Unloading 48 unused Assets / (26.0 KB). Loaded Objects now: 4557.
  507. Memory consumption went from 151.8 MB to 151.8 MB.
  508. Total: 3.246900 ms (FindLiveObjects: 0.230300 ms CreateObjectMapping: 0.159500 ms MarkObjects: 2.828600 ms DeleteObjects: 0.028100 ms)
  509. AssetImportParameters requested are different than current active one (requested -> active):
  510. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  511. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  512. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  513. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  514. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  515. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  516. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  517. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  518. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  519. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  520. ========================================================================
  521. Received Prepare
  522. Registering precompiled user dll's ...
  523. Registered in 0.012237 seconds.
  524. Begin MonoManager ReloadAssembly
  525. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  526. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  527. Native extension for WindowsStandalone target not found
  528. Native extension for iOS target not found
  529. Native extension for Android target not found
  530. Refreshing native plugins compatible for Editor in 0.73 ms, found 6 plugins.
  531. Preloading 0 native plugins for Editor in 0.00 ms.
  532. Mono: successfully reloaded assembly
  533. - Completed reload, in 1.058 seconds
  534. Domain Reload Profiling:
  535. ReloadAssembly (1059ms)
  536. BeginReloadAssembly (135ms)
  537. ExecutionOrderSort (0ms)
  538. DisableScriptedObjects (7ms)
  539. BackupInstance (0ms)
  540. ReleaseScriptingObjects (0ms)
  541. CreateAndSetChildDomain (44ms)
  542. EndReloadAssembly (833ms)
  543. LoadAssemblies (93ms)
  544. RebuildTransferFunctionScriptingTraits (0ms)
  545. SetupTypeCache (239ms)
  546. ReleaseScriptCaches (1ms)
  547. RebuildScriptCaches (46ms)
  548. SetupLoadedEditorAssemblies (410ms)
  549. LogAssemblyErrors (0ms)
  550. InitializePlatformSupportModulesInManaged (27ms)
  551. SetLoadedEditorAssemblies (0ms)
  552. RefreshPlugins (1ms)
  553. BeforeProcessingInitializeOnLoad (70ms)
  554. ProcessInitializeOnLoadAttributes (265ms)
  555. ProcessInitializeOnLoadMethodAttributes (42ms)
  556. AfterProcessingInitializeOnLoad (4ms)
  557. EditorAssembliesLoaded (0ms)
  558. ExecutionOrderSort2 (0ms)
  559. AwakeInstancesAfterBackupRestoration (13ms)
  560. Platform modules already initialized, skipping
  561. Refreshing native plugins compatible for Editor in 2.91 ms, found 6 plugins.
  562. Preloading 0 native plugins for Editor in 0.00 ms.
  563. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  564. Unloading 48 unused Assets / (26.0 KB). Loaded Objects now: 4560.
  565. Memory consumption went from 151.8 MB to 151.8 MB.
  566. Total: 3.015700 ms (FindLiveObjects: 0.235200 ms CreateObjectMapping: 0.160800 ms MarkObjects: 2.588100 ms DeleteObjects: 0.031100 ms)
  567. AssetImportParameters requested are different than current active one (requested -> active):
  568. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  569. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  570. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  571. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  572. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  573. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  574. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  575. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  576. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  577. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  578. ========================================================================
  579. Received Import Request.
  580. Time since last request: 266827.970794 seconds.
  581. path: Assets/Scripts/MainScene/TabsController.cs
  582. artifactKey: Guid(cf5c15e4e1dc7c54ab51c93ef6d8479c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  583. Start importing Assets/Scripts/MainScene/TabsController.cs using Guid(cf5c15e4e1dc7c54ab51c93ef6d8479c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd2efe61aa8838a84f70c87f1f48fb22d') in 0.047257 seconds
  584. ========================================================================
  585. Received Prepare
  586. Registering precompiled user dll's ...
  587. Registered in 0.011626 seconds.
  588. Begin MonoManager ReloadAssembly
  589. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  590. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  591. Native extension for WindowsStandalone target not found
  592. Native extension for iOS target not found
  593. Native extension for Android target not found
  594. Refreshing native plugins compatible for Editor in 1.10 ms, found 6 plugins.
  595. Preloading 0 native plugins for Editor in 0.00 ms.
  596. Mono: successfully reloaded assembly
  597. - Completed reload, in 1.192 seconds
  598. Domain Reload Profiling:
  599. ReloadAssembly (1193ms)
  600. BeginReloadAssembly (128ms)
  601. ExecutionOrderSort (0ms)
  602. DisableScriptedObjects (8ms)
  603. BackupInstance (0ms)
  604. ReleaseScriptingObjects (0ms)
  605. CreateAndSetChildDomain (39ms)
  606. EndReloadAssembly (970ms)
  607. LoadAssemblies (87ms)
  608. RebuildTransferFunctionScriptingTraits (0ms)
  609. SetupTypeCache (267ms)
  610. ReleaseScriptCaches (1ms)
  611. RebuildScriptCaches (66ms)
  612. SetupLoadedEditorAssemblies (478ms)
  613. LogAssemblyErrors (0ms)
  614. InitializePlatformSupportModulesInManaged (35ms)
  615. SetLoadedEditorAssemblies (1ms)
  616. RefreshPlugins (1ms)
  617. BeforeProcessingInitializeOnLoad (90ms)
  618. ProcessInitializeOnLoadAttributes (302ms)
  619. ProcessInitializeOnLoadMethodAttributes (47ms)
  620. AfterProcessingInitializeOnLoad (3ms)
  621. EditorAssembliesLoaded (0ms)
  622. ExecutionOrderSort2 (0ms)
  623. AwakeInstancesAfterBackupRestoration (14ms)
  624. Platform modules already initialized, skipping
  625. Refreshing native plugins compatible for Editor in 3.62 ms, found 6 plugins.
  626. Preloading 0 native plugins for Editor in 0.00 ms.
  627. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  628. Unloading 48 unused Assets / (26.1 KB). Loaded Objects now: 4563.
  629. Memory consumption went from 151.8 MB to 151.8 MB.
  630. Total: 3.564700 ms (FindLiveObjects: 0.299600 ms CreateObjectMapping: 0.305500 ms MarkObjects: 2.924900 ms DeleteObjects: 0.034100 ms)
  631. AssetImportParameters requested are different than current active one (requested -> active):
  632. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  633. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  634. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  635. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  636. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  637. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  638. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  639. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  640. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  641. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  642. ========================================================================
  643. Received Prepare
  644. Registering precompiled user dll's ...
  645. Registered in 0.011857 seconds.
  646. Begin MonoManager ReloadAssembly
  647. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  648. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  649. Native extension for WindowsStandalone target not found
  650. Native extension for iOS target not found
  651. Native extension for Android target not found
  652. Refreshing native plugins compatible for Editor in 0.70 ms, found 6 plugins.
  653. Preloading 0 native plugins for Editor in 0.00 ms.
  654. Unable to write to 'ProjectSettings\GvhProjectSettings.xml' (System.IO.IOException: Sharing violation on path F:\Unity\Projects\NarKampenTake2\ProjectSettings\GvhProjectSettings.xml
  655. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0019e] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  656. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  657. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean useAsync) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  658. at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,bool)
  659. at System.Xml.XmlWriterSettings.CreateWriter (System.String outputFileName) [0x00051] in <dd0557022e4e4150b548e69900b259c8>:0
  660. at System.Xml.XmlWriter.Create (System.String outputFileName, System.Xml.XmlWriterSettings settings) [0x0000a] in <dd0557022e4e4150b548e69900b259c8>:0
  661. at Google.ProjectSettings.Save () [0x0006d] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:821 , Project settings were not saved!
  662. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  663. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  664. UnityEngine.Logger:Log (UnityEngine.LogType,object)
  665. UnityEngine.Debug:LogError (object)
  666. Google.Logger:Log (string,Google.LogLevel) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/Logger.cs:136)
  667. Google.ProjectSettings:Save () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:844)
  668. Google.ProjectSettings:SetBool (string,bool,Google.SettingsLocation) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:485)
  669. Google.ProjectSettings:SetBool (string,bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:497)
  670. Google.IOSResolver:set_VerboseLoggingEnabled (bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:1040)
  671. Google.IOSResolver:.cctor () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:726)
  672. System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
  673. UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
  674. (Filename: /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs Line: 844)
  675. Mono: successfully reloaded assembly
  676. - Completed reload, in 1.026 seconds
  677. Domain Reload Profiling:
  678. ReloadAssembly (1026ms)
  679. BeginReloadAssembly (125ms)
  680. ExecutionOrderSort (0ms)
  681. DisableScriptedObjects (6ms)
  682. BackupInstance (0ms)
  683. ReleaseScriptingObjects (0ms)
  684. CreateAndSetChildDomain (37ms)
  685. EndReloadAssembly (810ms)
  686. LoadAssemblies (89ms)
  687. RebuildTransferFunctionScriptingTraits (0ms)
  688. SetupTypeCache (231ms)
  689. ReleaseScriptCaches (1ms)
  690. RebuildScriptCaches (44ms)
  691. SetupLoadedEditorAssemblies (399ms)
  692. LogAssemblyErrors (0ms)
  693. InitializePlatformSupportModulesInManaged (29ms)
  694. SetLoadedEditorAssemblies (1ms)
  695. RefreshPlugins (1ms)
  696. BeforeProcessingInitializeOnLoad (71ms)
  697. ProcessInitializeOnLoadAttributes (248ms)
  698. ProcessInitializeOnLoadMethodAttributes (47ms)
  699. AfterProcessingInitializeOnLoad (3ms)
  700. EditorAssembliesLoaded (0ms)
  701. ExecutionOrderSort2 (0ms)
  702. AwakeInstancesAfterBackupRestoration (12ms)
  703. Platform modules already initialized, skipping
  704. Refreshing native plugins compatible for Editor in 2.84 ms, found 6 plugins.
  705. Preloading 0 native plugins for Editor in 0.00 ms.
  706. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  707. Unloading 48 unused Assets / (26.1 KB). Loaded Objects now: 4566.
  708. Memory consumption went from 151.9 MB to 151.8 MB.
  709. Total: 3.174800 ms (FindLiveObjects: 0.234000 ms CreateObjectMapping: 0.174900 ms MarkObjects: 2.735500 ms DeleteObjects: 0.029600 ms)
  710. AssetImportParameters requested are different than current active one (requested -> active):
  711. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  712. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  713. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  714. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  715. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  716. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  717. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  718. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  719. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  720. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  721. ========================================================================
  722. Received Import Request.
  723. Time since last request: 278.776925 seconds.
  724. path: Assets/Scripts/MainScene/TabsController.cs
  725. artifactKey: Guid(cf5c15e4e1dc7c54ab51c93ef6d8479c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  726. Start importing Assets/Scripts/MainScene/TabsController.cs using Guid(cf5c15e4e1dc7c54ab51c93ef6d8479c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3fb57c8003f9de91455826d33423b73c') in 0.005125 seconds
  727. ========================================================================
  728. Received Prepare
  729. Registering precompiled user dll's ...
  730. Registered in 0.011637 seconds.
  731. Begin MonoManager ReloadAssembly
  732. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  733. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  734. Native extension for WindowsStandalone target not found
  735. Native extension for iOS target not found
  736. Native extension for Android target not found
  737. Refreshing native plugins compatible for Editor in 0.90 ms, found 6 plugins.
  738. Preloading 0 native plugins for Editor in 0.00 ms.
  739. System.IO.IOException: Sharing violation on path F:\Unity\Projects\NarKampenTake2\ProjectSettings\GvhProjectSettings.xml
  740. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0019e] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  741. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  742. at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
  743. at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  744. at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00007] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  745. at System.IO.StreamReader..ctor (System.String path) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  746. at (wrapper remoting-invoke-with-check) System.IO.StreamReader..ctor(string)
  747. at Google.XmlUtilities.ParseXmlTextFileElements (System.String filename, Google.Logger logger, Google.XmlUtilities+ParseElement parseElement) [0x0000f] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/XmlUtilities.cs:104
  748. at Google.ProjectSettings.Load () [0x00012] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:777
  749. at Google.ProjectSettings.LoadIfEmpty () [0x0001b] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:558
  750. at Google.ProjectSettings.GetBool (System.String name, System.Boolean defaultValue, Google.SettingsLocation location) [0x0002b] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:606
  751. at Google.ProjectSettings.GetBool (System.String name, System.Boolean defaultValue) [0x00000] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:619
  752. at Google.IOSResolver.get_VerboseLoggingEnabled () [0x00000] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:1038
  753. at Google.IOSResolver..cctor () [0x00215] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:726
  754. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  755. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  756. UnityEngine.Logger:Log (UnityEngine.LogType,object)
  757. UnityEngine.Debug:LogError (object)
  758. UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
  759. Mono: successfully reloaded assembly
  760. - Completed reload, in 1.191 seconds
  761. Domain Reload Profiling:
  762. ReloadAssembly (1192ms)
  763. BeginReloadAssembly (129ms)
  764. ExecutionOrderSort (0ms)
  765. DisableScriptedObjects (6ms)
  766. BackupInstance (0ms)
  767. ReleaseScriptingObjects (0ms)
  768. CreateAndSetChildDomain (34ms)
  769. EndReloadAssembly (965ms)
  770. LoadAssemblies (94ms)
  771. RebuildTransferFunctionScriptingTraits (0ms)
  772. SetupTypeCache (278ms)
  773. ReleaseScriptCaches (1ms)
  774. RebuildScriptCaches (76ms)
  775. SetupLoadedEditorAssemblies (455ms)
  776. LogAssemblyErrors (0ms)
  777. InitializePlatformSupportModulesInManaged (35ms)
  778. SetLoadedEditorAssemblies (1ms)
  779. RefreshPlugins (1ms)
  780. BeforeProcessingInitializeOnLoad (89ms)
  781. ProcessInitializeOnLoadAttributes (280ms)
  782. ProcessInitializeOnLoadMethodAttributes (45ms)
  783. AfterProcessingInitializeOnLoad (4ms)
  784. EditorAssembliesLoaded (0ms)
  785. ExecutionOrderSort2 (0ms)
  786. AwakeInstancesAfterBackupRestoration (14ms)
  787. Platform modules already initialized, skipping
  788. Refreshing native plugins compatible for Editor in 3.81 ms, found 6 plugins.
  789. Preloading 0 native plugins for Editor in 0.00 ms.
  790. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  791. Unloading 48 unused Assets / (26.1 KB). Loaded Objects now: 4569.
  792. Memory consumption went from 151.9 MB to 151.8 MB.
  793. Total: 2.997300 ms (FindLiveObjects: 0.245200 ms CreateObjectMapping: 0.186400 ms MarkObjects: 2.529300 ms DeleteObjects: 0.035700 ms)
  794. AssetImportParameters requested are different than current active one (requested -> active):
  795. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  796. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  797. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  798. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  799. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  800. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  801. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  802. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  803. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  804. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  805. ========================================================================
  806. Received Prepare
  807. Registering precompiled user dll's ...
  808. Registered in 0.012793 seconds.
  809. Begin MonoManager ReloadAssembly
  810. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  811. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  812. Native extension for WindowsStandalone target not found
  813. Native extension for iOS target not found
  814. Native extension for Android target not found
  815. Refreshing native plugins compatible for Editor in 1.13 ms, found 6 plugins.
  816. Preloading 0 native plugins for Editor in 0.00 ms.
  817. Unable to write to 'ProjectSettings\GvhProjectSettings.xml' (System.IO.IOException: Sharing violation on path F:\Unity\Projects\NarKampenTake2\ProjectSettings\GvhProjectSettings.xml
  818. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0019e] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  819. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  820. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean useAsync) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  821. at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,bool)
  822. at System.Xml.XmlWriterSettings.CreateWriter (System.String outputFileName) [0x00051] in <dd0557022e4e4150b548e69900b259c8>:0
  823. at System.Xml.XmlWriter.Create (System.String outputFileName, System.Xml.XmlWriterSettings settings) [0x0000a] in <dd0557022e4e4150b548e69900b259c8>:0
  824. at Google.ProjectSettings.Save () [0x0006d] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:821 , Project settings were not saved!
  825. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  826. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  827. UnityEngine.Logger:Log (UnityEngine.LogType,object)
  828. UnityEngine.Debug:LogError (object)
  829. Google.Logger:Log (string,Google.LogLevel) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/Logger.cs:136)
  830. Google.ProjectSettings:Save () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:844)
  831. Google.ProjectSettings:SetBool (string,bool,Google.SettingsLocation) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:485)
  832. Google.ProjectSettings:SetBool (string,bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:497)
  833. Google.IOSResolver:set_VerboseLoggingEnabled (bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:1040)
  834. Google.IOSResolver:.cctor () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:726)
  835. System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
  836. UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
  837. (Filename: /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs Line: 844)
  838. Mono: successfully reloaded assembly
  839. - Completed reload, in 1.235 seconds
  840. Domain Reload Profiling:
  841. ReloadAssembly (1236ms)
  842. BeginReloadAssembly (145ms)
  843. ExecutionOrderSort (0ms)
  844. DisableScriptedObjects (8ms)
  845. BackupInstance (0ms)
  846. ReleaseScriptingObjects (0ms)
  847. CreateAndSetChildDomain (38ms)
  848. EndReloadAssembly (984ms)
  849. LoadAssemblies (116ms)
  850. RebuildTransferFunctionScriptingTraits (0ms)
  851. SetupTypeCache (321ms)
  852. ReleaseScriptCaches (1ms)
  853. RebuildScriptCaches (58ms)
  854. SetupLoadedEditorAssemblies (439ms)
  855. LogAssemblyErrors (0ms)
  856. InitializePlatformSupportModulesInManaged (35ms)
  857. SetLoadedEditorAssemblies (1ms)
  858. RefreshPlugins (1ms)
  859. BeforeProcessingInitializeOnLoad (81ms)
  860. ProcessInitializeOnLoadAttributes (278ms)
  861. ProcessInitializeOnLoadMethodAttributes (40ms)
  862. AfterProcessingInitializeOnLoad (3ms)
  863. EditorAssembliesLoaded (0ms)
  864. ExecutionOrderSort2 (0ms)
  865. AwakeInstancesAfterBackupRestoration (12ms)
  866. Platform modules already initialized, skipping
  867. Refreshing native plugins compatible for Editor in 2.83 ms, found 6 plugins.
  868. Preloading 0 native plugins for Editor in 0.00 ms.
  869. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  870. Unloading 48 unused Assets / (26.0 KB). Loaded Objects now: 4572.
  871. Memory consumption went from 151.9 MB to 151.9 MB.
  872. Total: 3.081300 ms (FindLiveObjects: 0.234600 ms CreateObjectMapping: 0.182800 ms MarkObjects: 2.633900 ms DeleteObjects: 0.029400 ms)
  873. AssetImportParameters requested are different than current active one (requested -> active):
  874. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  875. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  876. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  877. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  878. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  879. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  880. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  881. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  882. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  883. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  884. ========================================================================
  885. Received Import Request.
  886. Time since last request: 23.295736 seconds.
  887. path: Assets/Scripts/MainScene/TabsController.cs
  888. artifactKey: Guid(cf5c15e4e1dc7c54ab51c93ef6d8479c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  889. Start importing Assets/Scripts/MainScene/TabsController.cs using Guid(cf5c15e4e1dc7c54ab51c93ef6d8479c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '007dcaac2eca329d2284c12b0d42f8fc') in 0.006806 seconds
  890. ========================================================================
  891. Received Prepare
  892. Registering precompiled user dll's ...
  893. Registered in 0.011558 seconds.
  894. Begin MonoManager ReloadAssembly
  895. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  896. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  897. Native extension for WindowsStandalone target not found
  898. Native extension for iOS target not found
  899. Native extension for Android target not found
  900. Refreshing native plugins compatible for Editor in 0.69 ms, found 6 plugins.
  901. Preloading 0 native plugins for Editor in 0.00 ms.
  902. Unable to write to 'ProjectSettings\GvhProjectSettings.xml' (System.IO.IOException: Sharing violation on path F:\Unity\Projects\NarKampenTake2\ProjectSettings\GvhProjectSettings.xml
  903. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0019e] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  904. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  905. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean useAsync) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  906. at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,bool)
  907. at System.Xml.XmlWriterSettings.CreateWriter (System.String outputFileName) [0x00051] in <dd0557022e4e4150b548e69900b259c8>:0
  908. at System.Xml.XmlWriter.Create (System.String outputFileName, System.Xml.XmlWriterSettings settings) [0x0000a] in <dd0557022e4e4150b548e69900b259c8>:0
  909. at Google.ProjectSettings.Save () [0x0006d] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:821 , Project settings were not saved!
  910. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  911. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  912. UnityEngine.Logger:Log (UnityEngine.LogType,object)
  913. UnityEngine.Debug:LogError (object)
  914. Google.Logger:Log (string,Google.LogLevel) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/Logger.cs:136)
  915. Google.ProjectSettings:Save () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:844)
  916. Google.ProjectSettings:SetBool (string,bool,Google.SettingsLocation) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:485)
  917. Google.ProjectSettings:SetBool (string,bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:497)
  918. Google.IOSResolver:set_VerboseLoggingEnabled (bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:1040)
  919. Google.IOSResolver:.cctor () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:726)
  920. System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
  921. UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
  922. (Filename: /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs Line: 844)
  923. Mono: successfully reloaded assembly
  924. - Completed reload, in 1.064 seconds
  925. Domain Reload Profiling:
  926. ReloadAssembly (1065ms)
  927. BeginReloadAssembly (140ms)
  928. ExecutionOrderSort (0ms)
  929. DisableScriptedObjects (8ms)
  930. BackupInstance (0ms)
  931. ReleaseScriptingObjects (0ms)
  932. CreateAndSetChildDomain (36ms)
  933. EndReloadAssembly (840ms)
  934. LoadAssemblies (97ms)
  935. RebuildTransferFunctionScriptingTraits (0ms)
  936. SetupTypeCache (242ms)
  937. ReleaseScriptCaches (1ms)
  938. RebuildScriptCaches (50ms)
  939. SetupLoadedEditorAssemblies (414ms)
  940. LogAssemblyErrors (0ms)
  941. InitializePlatformSupportModulesInManaged (32ms)
  942. SetLoadedEditorAssemblies (0ms)
  943. RefreshPlugins (1ms)
  944. BeforeProcessingInitializeOnLoad (77ms)
  945. ProcessInitializeOnLoadAttributes (260ms)
  946. ProcessInitializeOnLoadMethodAttributes (41ms)
  947. AfterProcessingInitializeOnLoad (3ms)
  948. EditorAssembliesLoaded (0ms)
  949. ExecutionOrderSort2 (0ms)
  950. AwakeInstancesAfterBackupRestoration (12ms)
  951. Platform modules already initialized, skipping
  952. Refreshing native plugins compatible for Editor in 2.90 ms, found 6 plugins.
  953. Preloading 0 native plugins for Editor in 0.00 ms.
  954. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  955. Unloading 48 unused Assets / (26.0 KB). Loaded Objects now: 4575.
  956. Memory consumption went from 151.9 MB to 151.9 MB.
  957. Total: 2.828800 ms (FindLiveObjects: 0.233200 ms CreateObjectMapping: 0.171400 ms MarkObjects: 2.391200 ms DeleteObjects: 0.032100 ms)
  958. AssetImportParameters requested are different than current active one (requested -> active):
  959. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  960. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  961. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  962. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  963. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  964. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  965. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  966. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  967. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  968. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  969. ========================================================================
  970. Received Prepare
  971. Registering precompiled user dll's ...
  972. Registered in 0.010725 seconds.
  973. Begin MonoManager ReloadAssembly
  974. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  975. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  976. Native extension for WindowsStandalone target not found
  977. Native extension for iOS target not found
  978. Native extension for Android target not found
  979. Refreshing native plugins compatible for Editor in 0.71 ms, found 6 plugins.
  980. Preloading 0 native plugins for Editor in 0.00 ms.
  981. Mono: successfully reloaded assembly
  982. - Completed reload, in 1.199 seconds
  983. Domain Reload Profiling:
  984. ReloadAssembly (1199ms)
  985. BeginReloadAssembly (124ms)
  986. ExecutionOrderSort (0ms)
  987. DisableScriptedObjects (7ms)
  988. BackupInstance (0ms)
  989. ReleaseScriptingObjects (0ms)
  990. CreateAndSetChildDomain (34ms)
  991. EndReloadAssembly (985ms)
  992. LoadAssemblies (92ms)
  993. RebuildTransferFunctionScriptingTraits (0ms)
  994. SetupTypeCache (282ms)
  995. ReleaseScriptCaches (2ms)
  996. RebuildScriptCaches (62ms)
  997. SetupLoadedEditorAssemblies (474ms)
  998. LogAssemblyErrors (0ms)
  999. InitializePlatformSupportModulesInManaged (35ms)
  1000. SetLoadedEditorAssemblies (1ms)
  1001. RefreshPlugins (1ms)
  1002. BeforeProcessingInitializeOnLoad (87ms)
  1003. ProcessInitializeOnLoadAttributes (299ms)
  1004. ProcessInitializeOnLoadMethodAttributes (48ms)
  1005. AfterProcessingInitializeOnLoad (4ms)
  1006. EditorAssembliesLoaded (0ms)
  1007. ExecutionOrderSort2 (0ms)
  1008. AwakeInstancesAfterBackupRestoration (14ms)
  1009. Platform modules already initialized, skipping
  1010. Refreshing native plugins compatible for Editor in 4.13 ms, found 6 plugins.
  1011. Preloading 0 native plugins for Editor in 0.00 ms.
  1012. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  1013. Unloading 48 unused Assets / (26.0 KB). Loaded Objects now: 4578.
  1014. Memory consumption went from 151.9 MB to 151.9 MB.
  1015. Total: 2.872900 ms (FindLiveObjects: 0.248500 ms CreateObjectMapping: 0.198100 ms MarkObjects: 2.393400 ms DeleteObjects: 0.032200 ms)
  1016. AssetImportParameters requested are different than current active one (requested -> active):
  1017. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1018. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1019. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1020. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1021. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1022. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1023. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1024. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1025. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1026. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1027. ========================================================================
  1028. Received Import Request.
  1029. Time since last request: 310.400819 seconds.
  1030. path: Assets/Scripts/MainScene/TabsController.cs
  1031. artifactKey: Guid(cf5c15e4e1dc7c54ab51c93ef6d8479c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1032. Start importing Assets/Scripts/MainScene/TabsController.cs using Guid(cf5c15e4e1dc7c54ab51c93ef6d8479c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '63b600919a13c01d889c774e5564df7a') in 0.005799 seconds
  1033. ========================================================================
  1034. Received Prepare
  1035. Registering precompiled user dll's ...
  1036. Registered in 0.011304 seconds.
  1037. Begin MonoManager ReloadAssembly
  1038. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1039. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1040. Native extension for WindowsStandalone target not found
  1041. Native extension for iOS target not found
  1042. Native extension for Android target not found
  1043. Refreshing native plugins compatible for Editor in 1.13 ms, found 6 plugins.
  1044. Preloading 0 native plugins for Editor in 0.00 ms.
  1045. Unable to write to 'ProjectSettings\GvhProjectSettings.xml' (System.IO.IOException: Sharing violation on path F:\Unity\Projects\NarKampenTake2\ProjectSettings\GvhProjectSettings.xml
  1046. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0019e] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  1047. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  1048. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean useAsync) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  1049. at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,bool)
  1050. at System.Xml.XmlWriterSettings.CreateWriter (System.String outputFileName) [0x00051] in <dd0557022e4e4150b548e69900b259c8>:0
  1051. at System.Xml.XmlWriter.Create (System.String outputFileName, System.Xml.XmlWriterSettings settings) [0x0000a] in <dd0557022e4e4150b548e69900b259c8>:0
  1052. at Google.ProjectSettings.Save () [0x0006d] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:821 , Project settings were not saved!
  1053. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  1054. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  1055. UnityEngine.Logger:Log (UnityEngine.LogType,object)
  1056. UnityEngine.Debug:LogError (object)
  1057. Google.Logger:Log (string,Google.LogLevel) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/Logger.cs:136)
  1058. Google.ProjectSettings:Save () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:844)
  1059. Google.ProjectSettings:SetBool (string,bool,Google.SettingsLocation) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:485)
  1060. Google.ProjectSettings:SetBool (string,bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:497)
  1061. Google.IOSResolver:set_VerboseLoggingEnabled (bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:1040)
  1062. Google.IOSResolver:.cctor () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:726)
  1063. System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
  1064. UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
  1065. (Filename: /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs Line: 844)
  1066. Mono: successfully reloaded assembly
  1067. - Completed reload, in 1.026 seconds
  1068. Domain Reload Profiling:
  1069. ReloadAssembly (1027ms)
  1070. BeginReloadAssembly (129ms)
  1071. ExecutionOrderSort (0ms)
  1072. DisableScriptedObjects (7ms)
  1073. BackupInstance (0ms)
  1074. ReleaseScriptingObjects (0ms)
  1075. CreateAndSetChildDomain (39ms)
  1076. EndReloadAssembly (806ms)
  1077. LoadAssemblies (92ms)
  1078. RebuildTransferFunctionScriptingTraits (0ms)
  1079. SetupTypeCache (230ms)
  1080. ReleaseScriptCaches (2ms)
  1081. RebuildScriptCaches (50ms)
  1082. SetupLoadedEditorAssemblies (395ms)
  1083. LogAssemblyErrors (0ms)
  1084. InitializePlatformSupportModulesInManaged (29ms)
  1085. SetLoadedEditorAssemblies (1ms)
  1086. RefreshPlugins (1ms)
  1087. BeforeProcessingInitializeOnLoad (70ms)
  1088. ProcessInitializeOnLoadAttributes (249ms)
  1089. ProcessInitializeOnLoadMethodAttributes (42ms)
  1090. AfterProcessingInitializeOnLoad (3ms)
  1091. EditorAssembliesLoaded (0ms)
  1092. ExecutionOrderSort2 (0ms)
  1093. AwakeInstancesAfterBackupRestoration (12ms)
  1094. Platform modules already initialized, skipping
  1095. Refreshing native plugins compatible for Editor in 3.14 ms, found 6 plugins.
  1096. Preloading 0 native plugins for Editor in 0.00 ms.
  1097. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  1098. Unloading 48 unused Assets / (26.1 KB). Loaded Objects now: 4581.
  1099. Memory consumption went from 151.9 MB to 151.9 MB.
  1100. Total: 2.861900 ms (FindLiveObjects: 0.240300 ms CreateObjectMapping: 0.193300 ms MarkObjects: 2.394800 ms DeleteObjects: 0.032600 ms)
  1101. AssetImportParameters requested are different than current active one (requested -> active):
  1102. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1103. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1104. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1105. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1106. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1107. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1108. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1109. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1110. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1111. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1112. ========================================================================
  1113. Received Prepare
  1114. Registering precompiled user dll's ...
  1115. Registered in 0.013869 seconds.
  1116. Begin MonoManager ReloadAssembly
  1117. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1118. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1119. Native extension for WindowsStandalone target not found
  1120. Native extension for iOS target not found
  1121. Native extension for Android target not found
  1122. Refreshing native plugins compatible for Editor in 1.09 ms, found 6 plugins.
  1123. Preloading 0 native plugins for Editor in 0.00 ms.
  1124. Mono: successfully reloaded assembly
  1125. - Completed reload, in 1.217 seconds
  1126. Domain Reload Profiling:
  1127. ReloadAssembly (1218ms)
  1128. BeginReloadAssembly (133ms)
  1129. ExecutionOrderSort (0ms)
  1130. DisableScriptedObjects (10ms)
  1131. BackupInstance (0ms)
  1132. ReleaseScriptingObjects (0ms)
  1133. CreateAndSetChildDomain (39ms)
  1134. EndReloadAssembly (981ms)
  1135. LoadAssemblies (90ms)
  1136. RebuildTransferFunctionScriptingTraits (0ms)
  1137. SetupTypeCache (283ms)
  1138. ReleaseScriptCaches (2ms)
  1139. RebuildScriptCaches (70ms)
  1140. SetupLoadedEditorAssemblies (471ms)
  1141. LogAssemblyErrors (0ms)
  1142. InitializePlatformSupportModulesInManaged (35ms)
  1143. SetLoadedEditorAssemblies (0ms)
  1144. RefreshPlugins (1ms)
  1145. BeforeProcessingInitializeOnLoad (86ms)
  1146. ProcessInitializeOnLoadAttributes (300ms)
  1147. ProcessInitializeOnLoadMethodAttributes (45ms)
  1148. AfterProcessingInitializeOnLoad (4ms)
  1149. EditorAssembliesLoaded (0ms)
  1150. ExecutionOrderSort2 (0ms)
  1151. AwakeInstancesAfterBackupRestoration (14ms)
  1152. Platform modules already initialized, skipping
  1153. Refreshing native plugins compatible for Editor in 3.69 ms, found 6 plugins.
  1154. Preloading 0 native plugins for Editor in 0.00 ms.
  1155. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  1156. Unloading 48 unused Assets / (26.1 KB). Loaded Objects now: 4584.
  1157. Memory consumption went from 151.9 MB to 151.9 MB.
  1158. Total: 4.077300 ms (FindLiveObjects: 0.235800 ms CreateObjectMapping: 0.175000 ms MarkObjects: 3.634100 ms DeleteObjects: 0.031500 ms)
  1159. AssetImportParameters requested are different than current active one (requested -> active):
  1160. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1161. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1162. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1163. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1164. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1165. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1166. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1167. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1168. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1169. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1170. ========================================================================
  1171. Received Prepare
  1172. Registering precompiled user dll's ...
  1173. Registered in 0.011619 seconds.
  1174. Begin MonoManager ReloadAssembly
  1175. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1176. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1177. Native extension for WindowsStandalone target not found
  1178. Native extension for iOS target not found
  1179. Native extension for Android target not found
  1180. Refreshing native plugins compatible for Editor in 0.68 ms, found 6 plugins.
  1181. Preloading 0 native plugins for Editor in 0.00 ms.
  1182. Mono: successfully reloaded assembly
  1183. - Completed reload, in 1.037 seconds
  1184. Domain Reload Profiling:
  1185. ReloadAssembly (1038ms)
  1186. BeginReloadAssembly (128ms)
  1187. ExecutionOrderSort (0ms)
  1188. DisableScriptedObjects (6ms)
  1189. BackupInstance (0ms)
  1190. ReleaseScriptingObjects (0ms)
  1191. CreateAndSetChildDomain (37ms)
  1192. EndReloadAssembly (815ms)
  1193. LoadAssemblies (94ms)
  1194. RebuildTransferFunctionScriptingTraits (0ms)
  1195. SetupTypeCache (239ms)
  1196. ReleaseScriptCaches (1ms)
  1197. RebuildScriptCaches (43ms)
  1198. SetupLoadedEditorAssemblies (391ms)
  1199. LogAssemblyErrors (0ms)
  1200. InitializePlatformSupportModulesInManaged (29ms)
  1201. SetLoadedEditorAssemblies (0ms)
  1202. RefreshPlugins (1ms)
  1203. BeforeProcessingInitializeOnLoad (69ms)
  1204. ProcessInitializeOnLoadAttributes (248ms)
  1205. ProcessInitializeOnLoadMethodAttributes (39ms)
  1206. AfterProcessingInitializeOnLoad (4ms)
  1207. EditorAssembliesLoaded (0ms)
  1208. ExecutionOrderSort2 (0ms)
  1209. AwakeInstancesAfterBackupRestoration (15ms)
  1210. Platform modules already initialized, skipping
  1211. Refreshing native plugins compatible for Editor in 4.47 ms, found 6 plugins.
  1212. Preloading 0 native plugins for Editor in 0.00 ms.
  1213. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  1214. Unloading 48 unused Assets / (26.1 KB). Loaded Objects now: 4587.
  1215. Memory consumption went from 151.9 MB to 151.9 MB.
  1216. Total: 3.060700 ms (FindLiveObjects: 0.236300 ms CreateObjectMapping: 0.173600 ms MarkObjects: 2.554100 ms DeleteObjects: 0.096100 ms)
  1217. AssetImportParameters requested are different than current active one (requested -> active):
  1218. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1219. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1220. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1221. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1222. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1223. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1224. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1225. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1226. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1227. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1228. ========================================================================
  1229. Received Import Request.
  1230. Time since last request: 22497.631838 seconds.
  1231. path: Assets/Scripts/MainScene/TabsController.cs
  1232. artifactKey: Guid(cf5c15e4e1dc7c54ab51c93ef6d8479c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1233. Start importing Assets/Scripts/MainScene/TabsController.cs using Guid(cf5c15e4e1dc7c54ab51c93ef6d8479c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '68cdddf96a81a85af5b5a717bcc39f2c') in 0.005050 seconds
  1234. ========================================================================
  1235. Received Prepare
  1236. Registering precompiled user dll's ...
  1237. Registered in 0.013113 seconds.
  1238. Begin MonoManager ReloadAssembly
  1239. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1240. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1241. Native extension for WindowsStandalone target not found
  1242. Native extension for iOS target not found
  1243. Native extension for Android target not found
  1244. Refreshing native plugins compatible for Editor in 1.17 ms, found 6 plugins.
  1245. Preloading 0 native plugins for Editor in 0.00 ms.
  1246. Mono: successfully reloaded assembly
  1247. - Completed reload, in 1.200 seconds
  1248. Domain Reload Profiling:
  1249. ReloadAssembly (1200ms)
  1250. BeginReloadAssembly (129ms)
  1251. ExecutionOrderSort (0ms)
  1252. DisableScriptedObjects (6ms)
  1253. BackupInstance (0ms)
  1254. ReleaseScriptingObjects (0ms)
  1255. CreateAndSetChildDomain (33ms)
  1256. EndReloadAssembly (963ms)
  1257. LoadAssemblies (93ms)
  1258. RebuildTransferFunctionScriptingTraits (0ms)
  1259. SetupTypeCache (269ms)
  1260. ReleaseScriptCaches (2ms)
  1261. RebuildScriptCaches (61ms)
  1262. SetupLoadedEditorAssemblies (476ms)
  1263. LogAssemblyErrors (0ms)
  1264. InitializePlatformSupportModulesInManaged (37ms)
  1265. SetLoadedEditorAssemblies (1ms)
  1266. RefreshPlugins (1ms)
  1267. BeforeProcessingInitializeOnLoad (86ms)
  1268. ProcessInitializeOnLoadAttributes (298ms)
  1269. ProcessInitializeOnLoadMethodAttributes (51ms)
  1270. AfterProcessingInitializeOnLoad (3ms)
  1271. EditorAssembliesLoaded (0ms)
  1272. ExecutionOrderSort2 (0ms)
  1273. AwakeInstancesAfterBackupRestoration (15ms)
  1274. Platform modules already initialized, skipping
  1275. Refreshing native plugins compatible for Editor in 3.89 ms, found 6 plugins.
  1276. Preloading 0 native plugins for Editor in 0.00 ms.
  1277. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  1278. Unloading 48 unused Assets / (26.1 KB). Loaded Objects now: 4590.
  1279. Memory consumption went from 151.9 MB to 151.9 MB.
  1280. Total: 2.748800 ms (FindLiveObjects: 0.236300 ms CreateObjectMapping: 0.184100 ms MarkObjects: 2.294800 ms DeleteObjects: 0.032600 ms)
  1281. AssetImportParameters requested are different than current active one (requested -> active):
  1282. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1283. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1284. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1285. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1286. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1287. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1288. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1289. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1290. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1291. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1292. ========================================================================
  1293. Received Prepare
  1294. Registering precompiled user dll's ...
  1295. Registered in 0.010596 seconds.
  1296. Begin MonoManager ReloadAssembly
  1297. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1298. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1299. Native extension for WindowsStandalone target not found
  1300. Native extension for iOS target not found
  1301. Native extension for Android target not found
  1302. Refreshing native plugins compatible for Editor in 0.82 ms, found 6 plugins.
  1303. Preloading 0 native plugins for Editor in 0.00 ms.
  1304. Mono: successfully reloaded assembly
  1305. - Completed reload, in 1.059 seconds
  1306. Domain Reload Profiling:
  1307. ReloadAssembly (1060ms)
  1308. BeginReloadAssembly (128ms)
  1309. ExecutionOrderSort (0ms)
  1310. DisableScriptedObjects (7ms)
  1311. BackupInstance (0ms)
  1312. ReleaseScriptingObjects (0ms)
  1313. CreateAndSetChildDomain (32ms)
  1314. EndReloadAssembly (832ms)
  1315. LoadAssemblies (89ms)
  1316. RebuildTransferFunctionScriptingTraits (0ms)
  1317. SetupTypeCache (238ms)
  1318. ReleaseScriptCaches (1ms)
  1319. RebuildScriptCaches (48ms)
  1320. SetupLoadedEditorAssemblies (412ms)
  1321. LogAssemblyErrors (0ms)
  1322. InitializePlatformSupportModulesInManaged (32ms)
  1323. SetLoadedEditorAssemblies (1ms)
  1324. RefreshPlugins (1ms)
  1325. BeforeProcessingInitializeOnLoad (80ms)
  1326. ProcessInitializeOnLoadAttributes (250ms)
  1327. ProcessInitializeOnLoadMethodAttributes (44ms)
  1328. AfterProcessingInitializeOnLoad (3ms)
  1329. EditorAssembliesLoaded (0ms)
  1330. ExecutionOrderSort2 (0ms)
  1331. AwakeInstancesAfterBackupRestoration (12ms)
  1332. Platform modules already initialized, skipping
  1333. Refreshing native plugins compatible for Editor in 3.10 ms, found 6 plugins.
  1334. Preloading 0 native plugins for Editor in 0.00 ms.
  1335. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  1336. Unloading 48 unused Assets / (26.0 KB). Loaded Objects now: 4593.
  1337. Memory consumption went from 151.9 MB to 151.9 MB.
  1338. Total: 3.081200 ms (FindLiveObjects: 0.232700 ms CreateObjectMapping: 0.171600 ms MarkObjects: 2.639300 ms DeleteObjects: 0.036600 ms)
  1339. AssetImportParameters requested are different than current active one (requested -> active):
  1340. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1341. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1342. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1343. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1344. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1345. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1346. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1347. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1348. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1349. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1350. ========================================================================
  1351. Received Import Request.
  1352. Time since last request: 553.832096 seconds.
  1353. path: Assets/Scripts/MainScene/TabsController.cs
  1354. artifactKey: Guid(cf5c15e4e1dc7c54ab51c93ef6d8479c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1355. Start importing Assets/Scripts/MainScene/TabsController.cs using Guid(cf5c15e4e1dc7c54ab51c93ef6d8479c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7baf906414a2745faa4eb87303872f05') in 0.005021 seconds
  1356. ========================================================================
  1357. Received Prepare
  1358. Registering precompiled user dll's ...
  1359. Registered in 0.014423 seconds.
  1360. Begin MonoManager ReloadAssembly
  1361. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1362. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1363. Native extension for WindowsStandalone target not found
  1364. Native extension for iOS target not found
  1365. Native extension for Android target not found
  1366. Refreshing native plugins compatible for Editor in 0.75 ms, found 6 plugins.
  1367. Preloading 0 native plugins for Editor in 0.00 ms.
  1368. Mono: successfully reloaded assembly
  1369. - Completed reload, in 1.164 seconds
  1370. Domain Reload Profiling:
  1371. ReloadAssembly (1165ms)
  1372. BeginReloadAssembly (122ms)
  1373. ExecutionOrderSort (0ms)
  1374. DisableScriptedObjects (6ms)
  1375. BackupInstance (0ms)
  1376. ReleaseScriptingObjects (0ms)
  1377. CreateAndSetChildDomain (30ms)
  1378. EndReloadAssembly (938ms)
  1379. LoadAssemblies (93ms)
  1380. RebuildTransferFunctionScriptingTraits (0ms)
  1381. SetupTypeCache (258ms)
  1382. ReleaseScriptCaches (1ms)
  1383. RebuildScriptCaches (60ms)
  1384. SetupLoadedEditorAssemblies (462ms)
  1385. LogAssemblyErrors (0ms)
  1386. InitializePlatformSupportModulesInManaged (36ms)
  1387. SetLoadedEditorAssemblies (0ms)
  1388. RefreshPlugins (1ms)
  1389. BeforeProcessingInitializeOnLoad (87ms)
  1390. ProcessInitializeOnLoadAttributes (288ms)
  1391. ProcessInitializeOnLoadMethodAttributes (45ms)
  1392. AfterProcessingInitializeOnLoad (4ms)
  1393. EditorAssembliesLoaded (0ms)
  1394. ExecutionOrderSort2 (0ms)
  1395. AwakeInstancesAfterBackupRestoration (14ms)
  1396. Platform modules already initialized, skipping
  1397. Refreshing native plugins compatible for Editor in 3.36 ms, found 6 plugins.
  1398. Preloading 0 native plugins for Editor in 0.00 ms.
  1399. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  1400. Unloading 48 unused Assets / (26.0 KB). Loaded Objects now: 4596.
  1401. Memory consumption went from 152.0 MB to 151.9 MB.
  1402. Total: 3.129000 ms (FindLiveObjects: 0.257800 ms CreateObjectMapping: 0.301500 ms MarkObjects: 2.537200 ms DeleteObjects: 0.031700 ms)
  1403. AssetImportParameters requested are different than current active one (requested -> active):
  1404. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1405. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1406. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1407. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1408. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1409. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1410. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1411. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1412. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1413. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1414. ========================================================================
  1415. Received Prepare
  1416. Registering precompiled user dll's ...
  1417. Registered in 0.012069 seconds.
  1418. Begin MonoManager ReloadAssembly
  1419. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1420. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1421. Native extension for WindowsStandalone target not found
  1422. Native extension for iOS target not found
  1423. Native extension for Android target not found
  1424. Refreshing native plugins compatible for Editor in 0.68 ms, found 6 plugins.
  1425. Preloading 0 native plugins for Editor in 0.00 ms.
  1426. System.IO.IOException: Sharing violation on path F:\Unity\Projects\NarKampenTake2\ProjectSettings\GvhProjectSettings.xml
  1427. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0019e] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  1428. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  1429. at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
  1430. at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  1431. at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00007] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  1432. at System.IO.StreamReader..ctor (System.String path) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  1433. at (wrapper remoting-invoke-with-check) System.IO.StreamReader..ctor(string)
  1434. at Google.XmlUtilities.ParseXmlTextFileElements (System.String filename, Google.Logger logger, Google.XmlUtilities+ParseElement parseElement) [0x0000f] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/XmlUtilities.cs:104
  1435. at Google.ProjectSettings.Load () [0x00012] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:777
  1436. at Google.ProjectSettings.LoadIfEmpty () [0x0001b] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:558
  1437. at Google.ProjectSettings.GetBool (System.String name, System.Boolean defaultValue, Google.SettingsLocation location) [0x0002b] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:606
  1438. at Google.ProjectSettings.GetBool (System.String name, System.Boolean defaultValue) [0x00000] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:619
  1439. at Google.IOSResolver.get_VerboseLoggingEnabled () [0x00000] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:1038
  1440. at Google.IOSResolver..cctor () [0x00215] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:726
  1441. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  1442. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  1443. UnityEngine.Logger:Log (UnityEngine.LogType,object)
  1444. UnityEngine.Debug:LogError (object)
  1445. UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
  1446. Mono: successfully reloaded assembly
  1447. - Completed reload, in 1.041 seconds
  1448. Domain Reload Profiling:
  1449. ReloadAssembly (1042ms)
  1450. BeginReloadAssembly (119ms)
  1451. ExecutionOrderSort (0ms)
  1452. DisableScriptedObjects (6ms)
  1453. BackupInstance (0ms)
  1454. ReleaseScriptingObjects (0ms)
  1455. CreateAndSetChildDomain (33ms)
  1456. EndReloadAssembly (831ms)
  1457. LoadAssemblies (88ms)
  1458. RebuildTransferFunctionScriptingTraits (0ms)
  1459. SetupTypeCache (258ms)
  1460. ReleaseScriptCaches (1ms)
  1461. RebuildScriptCaches (52ms)
  1462. SetupLoadedEditorAssemblies (365ms)
  1463. LogAssemblyErrors (0ms)
  1464. InitializePlatformSupportModulesInManaged (27ms)
  1465. SetLoadedEditorAssemblies (0ms)
  1466. RefreshPlugins (1ms)
  1467. BeforeProcessingInitializeOnLoad (67ms)
  1468. ProcessInitializeOnLoadAttributes (227ms)
  1469. ProcessInitializeOnLoadMethodAttributes (40ms)
  1470. AfterProcessingInitializeOnLoad (3ms)
  1471. EditorAssembliesLoaded (0ms)
  1472. ExecutionOrderSort2 (0ms)
  1473. AwakeInstancesAfterBackupRestoration (13ms)
  1474. Platform modules already initialized, skipping
  1475. Refreshing native plugins compatible for Editor in 2.87 ms, found 6 plugins.
  1476. Preloading 0 native plugins for Editor in 0.00 ms.
  1477. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  1478. Unloading 48 unused Assets / (26.0 KB). Loaded Objects now: 4599.
  1479. Memory consumption went from 152.0 MB to 151.9 MB.
  1480. Total: 2.944500 ms (FindLiveObjects: 0.239300 ms CreateObjectMapping: 0.183600 ms MarkObjects: 2.487000 ms DeleteObjects: 0.033800 ms)
  1481. AssetImportParameters requested are different than current active one (requested -> active):
  1482. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1483. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1484. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1485. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1486. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1487. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1488. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1489. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1490. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1491. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1492. ========================================================================
  1493. Received Prepare
  1494. Registering precompiled user dll's ...
  1495. Registered in 0.011892 seconds.
  1496. Begin MonoManager ReloadAssembly
  1497. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1498. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1499. Native extension for WindowsStandalone target not found
  1500. Native extension for iOS target not found
  1501. Native extension for Android target not found
  1502. Refreshing native plugins compatible for Editor in 0.77 ms, found 6 plugins.
  1503. Preloading 0 native plugins for Editor in 0.00 ms.
  1504. Unable to write to 'ProjectSettings\GvhProjectSettings.xml' (System.IO.IOException: Sharing violation on path F:\Unity\Projects\NarKampenTake2\ProjectSettings\GvhProjectSettings.xml
  1505. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0019e] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  1506. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  1507. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean useAsync) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  1508. at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,bool)
  1509. at System.Xml.XmlWriterSettings.CreateWriter (System.String outputFileName) [0x00051] in <dd0557022e4e4150b548e69900b259c8>:0
  1510. at System.Xml.XmlWriter.Create (System.String outputFileName, System.Xml.XmlWriterSettings settings) [0x0000a] in <dd0557022e4e4150b548e69900b259c8>:0
  1511. at Google.ProjectSettings.Save () [0x0006d] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:821 , Project settings were not saved!
  1512. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  1513. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  1514. UnityEngine.Logger:Log (UnityEngine.LogType,object)
  1515. UnityEngine.Debug:LogError (object)
  1516. Google.Logger:Log (string,Google.LogLevel) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/Logger.cs:136)
  1517. Google.ProjectSettings:Save () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:844)
  1518. Google.ProjectSettings:SetBool (string,bool,Google.SettingsLocation) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:485)
  1519. Google.ProjectSettings:SetBool (string,bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:497)
  1520. Google.IOSResolver:set_VerboseLoggingEnabled (bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:1040)
  1521. Google.IOSResolver:.cctor () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:726)
  1522. System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
  1523. UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
  1524. (Filename: /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs Line: 844)
  1525. Mono: successfully reloaded assembly
  1526. - Completed reload, in 1.183 seconds
  1527. Domain Reload Profiling:
  1528. ReloadAssembly (1184ms)
  1529. BeginReloadAssembly (124ms)
  1530. ExecutionOrderSort (0ms)
  1531. DisableScriptedObjects (6ms)
  1532. BackupInstance (0ms)
  1533. ReleaseScriptingObjects (0ms)
  1534. CreateAndSetChildDomain (35ms)
  1535. EndReloadAssembly (964ms)
  1536. LoadAssemblies (91ms)
  1537. RebuildTransferFunctionScriptingTraits (0ms)
  1538. SetupTypeCache (263ms)
  1539. ReleaseScriptCaches (2ms)
  1540. RebuildScriptCaches (63ms)
  1541. SetupLoadedEditorAssemblies (481ms)
  1542. LogAssemblyErrors (0ms)
  1543. InitializePlatformSupportModulesInManaged (38ms)
  1544. SetLoadedEditorAssemblies (0ms)
  1545. RefreshPlugins (1ms)
  1546. BeforeProcessingInitializeOnLoad (93ms)
  1547. ProcessInitializeOnLoadAttributes (300ms)
  1548. ProcessInitializeOnLoadMethodAttributes (45ms)
  1549. AfterProcessingInitializeOnLoad (4ms)
  1550. EditorAssembliesLoaded (0ms)
  1551. ExecutionOrderSort2 (0ms)
  1552. AwakeInstancesAfterBackupRestoration (14ms)
  1553. Platform modules already initialized, skipping
  1554. Refreshing native plugins compatible for Editor in 3.64 ms, found 6 plugins.
  1555. Preloading 0 native plugins for Editor in 0.00 ms.
  1556. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  1557. Unloading 48 unused Assets / (26.0 KB). Loaded Objects now: 4602.
  1558. Memory consumption went from 152.0 MB to 151.9 MB.
  1559. Total: 3.576200 ms (FindLiveObjects: 0.249300 ms CreateObjectMapping: 0.190000 ms MarkObjects: 3.100800 ms DeleteObjects: 0.035300 ms)
  1560. AssetImportParameters requested are different than current active one (requested -> active):
  1561. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1562. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1563. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1564. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1565. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1566. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1567. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1568. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1569. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1570. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1571. ========================================================================
  1572. Received Import Request.
  1573. Time since last request: 72.495259 seconds.
  1574. path: Assets/Scripts/MainScene/TabsController.cs
  1575. artifactKey: Guid(cf5c15e4e1dc7c54ab51c93ef6d8479c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1576. Start importing Assets/Scripts/MainScene/TabsController.cs using Guid(cf5c15e4e1dc7c54ab51c93ef6d8479c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f1e6f4ccf122205786f4467c1482764b') in 0.005847 seconds
  1577. ========================================================================
  1578. Received Prepare
  1579. Registering precompiled user dll's ...
  1580. Registered in 0.011104 seconds.
  1581. Begin MonoManager ReloadAssembly
  1582. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1583. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1584. Native extension for WindowsStandalone target not found
  1585. Native extension for iOS target not found
  1586. Native extension for Android target not found
  1587. Refreshing native plugins compatible for Editor in 1.29 ms, found 6 plugins.
  1588. Preloading 0 native plugins for Editor in 0.00 ms.
  1589. Unable to write to 'ProjectSettings\GvhProjectSettings.xml' (System.IO.IOException: Sharing violation on path F:\Unity\Projects\NarKampenTake2\ProjectSettings\GvhProjectSettings.xml
  1590. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0019e] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  1591. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  1592. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean useAsync) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  1593. at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,bool)
  1594. at System.Xml.XmlWriterSettings.CreateWriter (System.String outputFileName) [0x00051] in <dd0557022e4e4150b548e69900b259c8>:0
  1595. at System.Xml.XmlWriter.Create (System.String outputFileName, System.Xml.XmlWriterSettings settings) [0x0000a] in <dd0557022e4e4150b548e69900b259c8>:0
  1596. at Google.ProjectSettings.Save () [0x0006d] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:821 , Project settings were not saved!
  1597. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  1598. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  1599. UnityEngine.Logger:Log (UnityEngine.LogType,object)
  1600. UnityEngine.Debug:LogError (object)
  1601. Google.Logger:Log (string,Google.LogLevel) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/Logger.cs:136)
  1602. Google.ProjectSettings:Save () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:844)
  1603. Google.ProjectSettings:SetBool (string,bool,Google.SettingsLocation) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:485)
  1604. Google.ProjectSettings:SetBool (string,bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:497)
  1605. Google.IOSResolver:set_VerboseLoggingEnabled (bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:1040)
  1606. Google.IOSResolver:.cctor () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:726)
  1607. System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
  1608. UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
  1609. (Filename: /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs Line: 844)
  1610. Mono: successfully reloaded assembly
  1611. - Completed reload, in 1.191 seconds
  1612. Domain Reload Profiling:
  1613. ReloadAssembly (1192ms)
  1614. BeginReloadAssembly (137ms)
  1615. ExecutionOrderSort (0ms)
  1616. DisableScriptedObjects (7ms)
  1617. BackupInstance (0ms)
  1618. ReleaseScriptingObjects (0ms)
  1619. CreateAndSetChildDomain (33ms)
  1620. EndReloadAssembly (941ms)
  1621. LoadAssemblies (103ms)
  1622. RebuildTransferFunctionScriptingTraits (0ms)
  1623. SetupTypeCache (305ms)
  1624. ReleaseScriptCaches (1ms)
  1625. RebuildScriptCaches (56ms)
  1626. SetupLoadedEditorAssemblies (423ms)
  1627. LogAssemblyErrors (0ms)
  1628. InitializePlatformSupportModulesInManaged (33ms)
  1629. SetLoadedEditorAssemblies (1ms)
  1630. RefreshPlugins (1ms)
  1631. BeforeProcessingInitializeOnLoad (83ms)
  1632. ProcessInitializeOnLoadAttributes (260ms)
  1633. ProcessInitializeOnLoadMethodAttributes (43ms)
  1634. AfterProcessingInitializeOnLoad (3ms)
  1635. EditorAssembliesLoaded (0ms)
  1636. ExecutionOrderSort2 (0ms)
  1637. AwakeInstancesAfterBackupRestoration (12ms)
  1638. Platform modules already initialized, skipping
  1639. Refreshing native plugins compatible for Editor in 2.78 ms, found 6 plugins.
  1640. Preloading 0 native plugins for Editor in 0.00 ms.
  1641. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  1642. Unloading 48 unused Assets / (26.0 KB). Loaded Objects now: 4605.
  1643. Memory consumption went from 152.0 MB to 152.0 MB.
  1644. Total: 2.930300 ms (FindLiveObjects: 0.234300 ms CreateObjectMapping: 0.186900 ms MarkObjects: 2.482000 ms DeleteObjects: 0.026600 ms)
  1645. AssetImportParameters requested are different than current active one (requested -> active):
  1646. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1647. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1648. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1649. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1650. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1651. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1652. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1653. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1654. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1655. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1656. ========================================================================
  1657. Received Import Request.
  1658. Time since last request: 48.647262 seconds.
  1659. path: Assets/Scripts/MainScene/TabsController.cs
  1660. artifactKey: Guid(cf5c15e4e1dc7c54ab51c93ef6d8479c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1661. Start importing Assets/Scripts/MainScene/TabsController.cs using Guid(cf5c15e4e1dc7c54ab51c93ef6d8479c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '51122632030878a2c077494cd64fb339') in 0.004901 seconds
  1662. ========================================================================
  1663. Received Prepare
  1664. Registering precompiled user dll's ...
  1665. Registered in 0.010682 seconds.
  1666. Begin MonoManager ReloadAssembly
  1667. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1668. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1669. Native extension for WindowsStandalone target not found
  1670. Native extension for iOS target not found
  1671. Native extension for Android target not found
  1672. Refreshing native plugins compatible for Editor in 1.14 ms, found 6 plugins.
  1673. Preloading 0 native plugins for Editor in 0.00 ms.
  1674. Mono: successfully reloaded assembly
  1675. - Completed reload, in 1.176 seconds
  1676. Domain Reload Profiling:
  1677. ReloadAssembly (1177ms)
  1678. BeginReloadAssembly (116ms)
  1679. ExecutionOrderSort (0ms)
  1680. DisableScriptedObjects (6ms)
  1681. BackupInstance (0ms)
  1682. ReleaseScriptingObjects (0ms)
  1683. CreateAndSetChildDomain (29ms)
  1684. EndReloadAssembly (974ms)
  1685. LoadAssemblies (82ms)
  1686. RebuildTransferFunctionScriptingTraits (0ms)
  1687. SetupTypeCache (281ms)
  1688. ReleaseScriptCaches (2ms)
  1689. RebuildScriptCaches (60ms)
  1690. SetupLoadedEditorAssemblies (473ms)
  1691. LogAssemblyErrors (0ms)
  1692. InitializePlatformSupportModulesInManaged (34ms)
  1693. SetLoadedEditorAssemblies (1ms)
  1694. RefreshPlugins (1ms)
  1695. BeforeProcessingInitializeOnLoad (87ms)
  1696. ProcessInitializeOnLoadAttributes (300ms)
  1697. ProcessInitializeOnLoadMethodAttributes (46ms)
  1698. AfterProcessingInitializeOnLoad (4ms)
  1699. EditorAssembliesLoaded (0ms)
  1700. ExecutionOrderSort2 (0ms)
  1701. AwakeInstancesAfterBackupRestoration (15ms)
  1702. Platform modules already initialized, skipping
  1703. Refreshing native plugins compatible for Editor in 5.26 ms, found 6 plugins.
  1704. Preloading 0 native plugins for Editor in 0.00 ms.
  1705. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  1706. Unloading 48 unused Assets / (26.1 KB). Loaded Objects now: 4608.
  1707. Memory consumption went from 152.0 MB to 152.0 MB.
  1708. Total: 3.131900 ms (FindLiveObjects: 0.239500 ms CreateObjectMapping: 0.203800 ms MarkObjects: 2.647600 ms DeleteObjects: 0.039900 ms)
  1709. AssetImportParameters requested are different than current active one (requested -> active):
  1710. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1711. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1712. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1713. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1714. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1715. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1716. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1717. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1718. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1719. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1720. ========================================================================
  1721. Received Prepare
  1722. Registering precompiled user dll's ...
  1723. Registered in 0.010580 seconds.
  1724. Begin MonoManager ReloadAssembly
  1725. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1726. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1727. Native extension for WindowsStandalone target not found
  1728. Native extension for iOS target not found
  1729. Native extension for Android target not found
  1730. Refreshing native plugins compatible for Editor in 0.98 ms, found 6 plugins.
  1731. Preloading 0 native plugins for Editor in 0.00 ms.
  1732. Unable to write to 'ProjectSettings\GvhProjectSettings.xml' (System.IO.IOException: Sharing violation on path F:\Unity\Projects\NarKampenTake2\ProjectSettings\GvhProjectSettings.xml
  1733. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0019e] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  1734. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  1735. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean useAsync) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  1736. at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,bool)
  1737. at System.Xml.XmlWriterSettings.CreateWriter (System.String outputFileName) [0x00051] in <dd0557022e4e4150b548e69900b259c8>:0
  1738. at System.Xml.XmlWriter.Create (System.String outputFileName, System.Xml.XmlWriterSettings settings) [0x0000a] in <dd0557022e4e4150b548e69900b259c8>:0
  1739. at Google.ProjectSettings.Save () [0x0006d] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:821 , Project settings were not saved!
  1740. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  1741. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  1742. UnityEngine.Logger:Log (UnityEngine.LogType,object)
  1743. UnityEngine.Debug:LogError (object)
  1744. Google.Logger:Log (string,Google.LogLevel) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/Logger.cs:136)
  1745. Google.ProjectSettings:Save () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:844)
  1746. Google.ProjectSettings:SetBool (string,bool,Google.SettingsLocation) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:485)
  1747. Google.ProjectSettings:SetBool (string,bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:497)
  1748. Google.IOSResolver:set_VerboseLoggingEnabled (bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:1040)
  1749. Google.IOSResolver:.cctor () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:726)
  1750. System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
  1751. UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
  1752. (Filename: /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs Line: 844)
  1753. Mono: successfully reloaded assembly
  1754. - Completed reload, in 1.196 seconds
  1755. Domain Reload Profiling:
  1756. ReloadAssembly (1197ms)
  1757. BeginReloadAssembly (128ms)
  1758. ExecutionOrderSort (0ms)
  1759. DisableScriptedObjects (8ms)
  1760. BackupInstance (0ms)
  1761. ReleaseScriptingObjects (0ms)
  1762. CreateAndSetChildDomain (40ms)
  1763. EndReloadAssembly (980ms)
  1764. LoadAssemblies (86ms)
  1765. RebuildTransferFunctionScriptingTraits (0ms)
  1766. SetupTypeCache (281ms)
  1767. ReleaseScriptCaches (1ms)
  1768. RebuildScriptCaches (67ms)
  1769. SetupLoadedEditorAssemblies (472ms)
  1770. LogAssemblyErrors (0ms)
  1771. InitializePlatformSupportModulesInManaged (34ms)
  1772. SetLoadedEditorAssemblies (1ms)
  1773. RefreshPlugins (1ms)
  1774. BeforeProcessingInitializeOnLoad (89ms)
  1775. ProcessInitializeOnLoadAttributes (297ms)
  1776. ProcessInitializeOnLoadMethodAttributes (46ms)
  1777. AfterProcessingInitializeOnLoad (3ms)
  1778. EditorAssembliesLoaded (0ms)
  1779. ExecutionOrderSort2 (0ms)
  1780. AwakeInstancesAfterBackupRestoration (15ms)
  1781. Platform modules already initialized, skipping
  1782. Refreshing native plugins compatible for Editor in 3.69 ms, found 6 plugins.
  1783. Preloading 0 native plugins for Editor in 0.00 ms.
  1784. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  1785. Unloading 48 unused Assets / (26.0 KB). Loaded Objects now: 4611.
  1786. Memory consumption went from 152.0 MB to 152.0 MB.
  1787. Total: 4.448200 ms (FindLiveObjects: 0.266400 ms CreateObjectMapping: 0.344400 ms MarkObjects: 3.802800 ms DeleteObjects: 0.033700 ms)
  1788. AssetImportParameters requested are different than current active one (requested -> active):
  1789. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1790. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1791. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1792. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1793. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1794. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1795. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1796. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1797. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1798. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1799. ========================================================================
  1800. Received Prepare
  1801. Registering precompiled user dll's ...
  1802. Registered in 0.011456 seconds.
  1803. Begin MonoManager ReloadAssembly
  1804. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1805. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1806. Native extension for WindowsStandalone target not found
  1807. Native extension for iOS target not found
  1808. Native extension for Android target not found
  1809. Refreshing native plugins compatible for Editor in 0.69 ms, found 6 plugins.
  1810. Preloading 0 native plugins for Editor in 0.00 ms.
  1811. Unable to write to 'ProjectSettings\GvhProjectSettings.xml' (System.IO.IOException: Sharing violation on path F:\Unity\Projects\NarKampenTake2\ProjectSettings\GvhProjectSettings.xml
  1812. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0019e] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  1813. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  1814. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean useAsync) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  1815. at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,bool)
  1816. at System.Xml.XmlWriterSettings.CreateWriter (System.String outputFileName) [0x00051] in <dd0557022e4e4150b548e69900b259c8>:0
  1817. at System.Xml.XmlWriter.Create (System.String outputFileName, System.Xml.XmlWriterSettings settings) [0x0000a] in <dd0557022e4e4150b548e69900b259c8>:0
  1818. at Google.ProjectSettings.Save () [0x0006d] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:821 , Project settings were not saved!
  1819. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  1820. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  1821. UnityEngine.Logger:Log (UnityEngine.LogType,object)
  1822. UnityEngine.Debug:LogError (object)
  1823. Google.Logger:Log (string,Google.LogLevel) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/Logger.cs:136)
  1824. Google.ProjectSettings:Save () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:844)
  1825. Google.ProjectSettings:SetBool (string,bool,Google.SettingsLocation) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:485)
  1826. Google.ProjectSettings:SetBool (string,bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:497)
  1827. Google.IOSResolver:set_VerboseLoggingEnabled (bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:1040)
  1828. Google.IOSResolver:.cctor () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:726)
  1829. System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
  1830. UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
  1831. (Filename: /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs Line: 844)
  1832. Mono: successfully reloaded assembly
  1833. - Completed reload, in 1.072 seconds
  1834. Domain Reload Profiling:
  1835. ReloadAssembly (1072ms)
  1836. BeginReloadAssembly (149ms)
  1837. ExecutionOrderSort (0ms)
  1838. DisableScriptedObjects (7ms)
  1839. BackupInstance (0ms)
  1840. ReleaseScriptingObjects (0ms)
  1841. CreateAndSetChildDomain (45ms)
  1842. EndReloadAssembly (818ms)
  1843. LoadAssemblies (97ms)
  1844. RebuildTransferFunctionScriptingTraits (0ms)
  1845. SetupTypeCache (242ms)
  1846. ReleaseScriptCaches (1ms)
  1847. RebuildScriptCaches (45ms)
  1848. SetupLoadedEditorAssemblies (404ms)
  1849. LogAssemblyErrors (0ms)
  1850. InitializePlatformSupportModulesInManaged (32ms)
  1851. SetLoadedEditorAssemblies (0ms)
  1852. RefreshPlugins (1ms)
  1853. BeforeProcessingInitializeOnLoad (78ms)
  1854. ProcessInitializeOnLoadAttributes (246ms)
  1855. ProcessInitializeOnLoadMethodAttributes (42ms)
  1856. AfterProcessingInitializeOnLoad (4ms)
  1857. EditorAssembliesLoaded (0ms)
  1858. ExecutionOrderSort2 (0ms)
  1859. AwakeInstancesAfterBackupRestoration (13ms)
  1860. Platform modules already initialized, skipping
  1861. Refreshing native plugins compatible for Editor in 3.01 ms, found 6 plugins.
  1862. Preloading 0 native plugins for Editor in 0.00 ms.
  1863. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  1864. Unloading 48 unused Assets / (26.1 KB). Loaded Objects now: 4614.
  1865. Memory consumption went from 152.0 MB to 152.0 MB.
  1866. Total: 2.512900 ms (FindLiveObjects: 0.237900 ms CreateObjectMapping: 0.162000 ms MarkObjects: 2.081400 ms DeleteObjects: 0.030900 ms)
  1867. AssetImportParameters requested are different than current active one (requested -> active):
  1868. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1869. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1870. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1871. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1872. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1873. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1874. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1875. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1876. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1877. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1878. ========================================================================
  1879. Received Prepare
  1880. Registering precompiled user dll's ...
  1881. Registered in 0.011717 seconds.
  1882. Begin MonoManager ReloadAssembly
  1883. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1884. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1885. Native extension for WindowsStandalone target not found
  1886. Native extension for iOS target not found
  1887. Native extension for Android target not found
  1888. Refreshing native plugins compatible for Editor in 0.93 ms, found 6 plugins.
  1889. Preloading 0 native plugins for Editor in 0.00 ms.
  1890. Mono: successfully reloaded assembly
  1891. - Completed reload, in 1.158 seconds
  1892. Domain Reload Profiling:
  1893. ReloadAssembly (1159ms)
  1894. BeginReloadAssembly (119ms)
  1895. ExecutionOrderSort (0ms)
  1896. DisableScriptedObjects (6ms)
  1897. BackupInstance (0ms)
  1898. ReleaseScriptingObjects (0ms)
  1899. CreateAndSetChildDomain (34ms)
  1900. EndReloadAssembly (952ms)
  1901. LoadAssemblies (78ms)
  1902. RebuildTransferFunctionScriptingTraits (0ms)
  1903. SetupTypeCache (254ms)
  1904. ReleaseScriptCaches (1ms)
  1905. RebuildScriptCaches (58ms)
  1906. SetupLoadedEditorAssemblies (484ms)
  1907. LogAssemblyErrors (0ms)
  1908. InitializePlatformSupportModulesInManaged (37ms)
  1909. SetLoadedEditorAssemblies (1ms)
  1910. RefreshPlugins (1ms)
  1911. BeforeProcessingInitializeOnLoad (91ms)
  1912. ProcessInitializeOnLoadAttributes (301ms)
  1913. ProcessInitializeOnLoadMethodAttributes (47ms)
  1914. AfterProcessingInitializeOnLoad (5ms)
  1915. EditorAssembliesLoaded (0ms)
  1916. ExecutionOrderSort2 (0ms)
  1917. AwakeInstancesAfterBackupRestoration (15ms)
  1918. Platform modules already initialized, skipping
  1919. Refreshing native plugins compatible for Editor in 3.67 ms, found 6 plugins.
  1920. Preloading 0 native plugins for Editor in 0.00 ms.
  1921. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  1922. Unloading 48 unused Assets / (26.0 KB). Loaded Objects now: 4617.
  1923. Memory consumption went from 152.0 MB to 152.0 MB.
  1924. Total: 2.989500 ms (FindLiveObjects: 0.344800 ms CreateObjectMapping: 0.296200 ms MarkObjects: 2.320200 ms DeleteObjects: 0.027400 ms)
  1925. AssetImportParameters requested are different than current active one (requested -> active):
  1926. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  1927. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  1928. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  1929. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  1930. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  1931. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1932. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  1933. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  1934. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  1935. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  1936. ========================================================================
  1937. Received Import Request.
  1938. Time since last request: 252.144701 seconds.
  1939. path: Assets/Scripts/MainScene/TabsController.cs
  1940. artifactKey: Guid(cf5c15e4e1dc7c54ab51c93ef6d8479c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  1941. Start importing Assets/Scripts/MainScene/TabsController.cs using Guid(cf5c15e4e1dc7c54ab51c93ef6d8479c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '29f19aea6932913aece59563d3a32183') in 0.005688 seconds
  1942. ========================================================================
  1943. Received Prepare
  1944. Registering precompiled user dll's ...
  1945. Registered in 0.013718 seconds.
  1946. Begin MonoManager ReloadAssembly
  1947. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  1948. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  1949. Native extension for WindowsStandalone target not found
  1950. Native extension for iOS target not found
  1951. Native extension for Android target not found
  1952. Refreshing native plugins compatible for Editor in 1.11 ms, found 6 plugins.
  1953. Preloading 0 native plugins for Editor in 0.00 ms.
  1954. Unable to write to 'ProjectSettings\GvhProjectSettings.xml' (System.IO.IOException: Sharing violation on path F:\Unity\Projects\NarKampenTake2\ProjectSettings\GvhProjectSettings.xml
  1955. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0019e] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  1956. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  1957. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean useAsync) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  1958. at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,bool)
  1959. at System.Xml.XmlWriterSettings.CreateWriter (System.String outputFileName) [0x00051] in <dd0557022e4e4150b548e69900b259c8>:0
  1960. at System.Xml.XmlWriter.Create (System.String outputFileName, System.Xml.XmlWriterSettings settings) [0x0000a] in <dd0557022e4e4150b548e69900b259c8>:0
  1961. at Google.ProjectSettings.Save () [0x0006d] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:821 , Project settings were not saved!
  1962. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  1963. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  1964. UnityEngine.Logger:Log (UnityEngine.LogType,object)
  1965. UnityEngine.Debug:LogError (object)
  1966. Google.Logger:Log (string,Google.LogLevel) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/Logger.cs:136)
  1967. Google.ProjectSettings:Save () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:844)
  1968. Google.ProjectSettings:SetBool (string,bool,Google.SettingsLocation) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:485)
  1969. Google.ProjectSettings:SetBool (string,bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:497)
  1970. Google.IOSResolver:set_VerboseLoggingEnabled (bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:1040)
  1971. Google.IOSResolver:.cctor () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:726)
  1972. System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
  1973. UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
  1974. (Filename: /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs Line: 844)
  1975. Mono: successfully reloaded assembly
  1976. - Completed reload, in 1.076 seconds
  1977. Domain Reload Profiling:
  1978. ReloadAssembly (1077ms)
  1979. BeginReloadAssembly (124ms)
  1980. ExecutionOrderSort (0ms)
  1981. DisableScriptedObjects (7ms)
  1982. BackupInstance (0ms)
  1983. ReleaseScriptingObjects (0ms)
  1984. CreateAndSetChildDomain (35ms)
  1985. EndReloadAssembly (862ms)
  1986. LoadAssemblies (84ms)
  1987. RebuildTransferFunctionScriptingTraits (0ms)
  1988. SetupTypeCache (247ms)
  1989. ReleaseScriptCaches (1ms)
  1990. RebuildScriptCaches (45ms)
  1991. SetupLoadedEditorAssemblies (443ms)
  1992. LogAssemblyErrors (0ms)
  1993. InitializePlatformSupportModulesInManaged (33ms)
  1994. SetLoadedEditorAssemblies (1ms)
  1995. RefreshPlugins (1ms)
  1996. BeforeProcessingInitializeOnLoad (115ms)
  1997. ProcessInitializeOnLoadAttributes (252ms)
  1998. ProcessInitializeOnLoadMethodAttributes (38ms)
  1999. AfterProcessingInitializeOnLoad (3ms)
  2000. EditorAssembliesLoaded (0ms)
  2001. ExecutionOrderSort2 (0ms)
  2002. AwakeInstancesAfterBackupRestoration (13ms)
  2003. Platform modules already initialized, skipping
  2004. Refreshing native plugins compatible for Editor in 2.80 ms, found 6 plugins.
  2005. Preloading 0 native plugins for Editor in 0.00 ms.
  2006. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  2007. Unloading 48 unused Assets / (26.1 KB). Loaded Objects now: 4620.
  2008. Memory consumption went from 152.0 MB to 152.0 MB.
  2009. Total: 3.062800 ms (FindLiveObjects: 0.239300 ms CreateObjectMapping: 0.163200 ms MarkObjects: 2.632800 ms DeleteObjects: 0.026800 ms)
  2010. AssetImportParameters requested are different than current active one (requested -> active):
  2011. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2012. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2013. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2014. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2015. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2016. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2017. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2018. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2019. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2020. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2021. ========================================================================
  2022. Received Prepare
  2023. Registering precompiled user dll's ...
  2024. Registered in 0.011079 seconds.
  2025. Begin MonoManager ReloadAssembly
  2026. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2027. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2028. Native extension for WindowsStandalone target not found
  2029. Native extension for iOS target not found
  2030. Native extension for Android target not found
  2031. Refreshing native plugins compatible for Editor in 0.79 ms, found 6 plugins.
  2032. Preloading 0 native plugins for Editor in 0.00 ms.
  2033. Mono: successfully reloaded assembly
  2034. - Completed reload, in 1.185 seconds
  2035. Domain Reload Profiling:
  2036. ReloadAssembly (1186ms)
  2037. BeginReloadAssembly (130ms)
  2038. ExecutionOrderSort (0ms)
  2039. DisableScriptedObjects (8ms)
  2040. BackupInstance (0ms)
  2041. ReleaseScriptingObjects (0ms)
  2042. CreateAndSetChildDomain (31ms)
  2043. EndReloadAssembly (968ms)
  2044. LoadAssemblies (90ms)
  2045. RebuildTransferFunctionScriptingTraits (0ms)
  2046. SetupTypeCache (259ms)
  2047. ReleaseScriptCaches (1ms)
  2048. RebuildScriptCaches (56ms)
  2049. SetupLoadedEditorAssemblies (510ms)
  2050. LogAssemblyErrors (0ms)
  2051. InitializePlatformSupportModulesInManaged (36ms)
  2052. SetLoadedEditorAssemblies (1ms)
  2053. RefreshPlugins (1ms)
  2054. BeforeProcessingInitializeOnLoad (92ms)
  2055. ProcessInitializeOnLoadAttributes (329ms)
  2056. ProcessInitializeOnLoadMethodAttributes (47ms)
  2057. AfterProcessingInitializeOnLoad (5ms)
  2058. EditorAssembliesLoaded (0ms)
  2059. ExecutionOrderSort2 (0ms)
  2060. AwakeInstancesAfterBackupRestoration (15ms)
  2061. Platform modules already initialized, skipping
  2062. Refreshing native plugins compatible for Editor in 4.18 ms, found 6 plugins.
  2063. Preloading 0 native plugins for Editor in 0.00 ms.
  2064. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  2065. Unloading 48 unused Assets / (26.1 KB). Loaded Objects now: 4623.
  2066. Memory consumption went from 152.0 MB to 152.0 MB.
  2067. Total: 2.851700 ms (FindLiveObjects: 0.238700 ms CreateObjectMapping: 0.162800 ms MarkObjects: 2.416300 ms DeleteObjects: 0.033000 ms)
  2068. AssetImportParameters requested are different than current active one (requested -> active):
  2069. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2070. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2071. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2072. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2073. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2074. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2075. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2076. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2077. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2078. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2079. ========================================================================
  2080. Received Prepare
  2081. Registering precompiled user dll's ...
  2082. Registered in 0.011337 seconds.
  2083. Begin MonoManager ReloadAssembly
  2084. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2085. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2086. Native extension for WindowsStandalone target not found
  2087. Native extension for iOS target not found
  2088. Native extension for Android target not found
  2089. Refreshing native plugins compatible for Editor in 0.75 ms, found 6 plugins.
  2090. Preloading 0 native plugins for Editor in 0.00 ms.
  2091. Unable to write to 'ProjectSettings\GvhProjectSettings.xml' (System.IO.IOException: Sharing violation on path F:\Unity\Projects\NarKampenTake2\ProjectSettings\GvhProjectSettings.xml
  2092. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0019e] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  2093. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  2094. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean useAsync) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  2095. at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,bool)
  2096. at System.Xml.XmlWriterSettings.CreateWriter (System.String outputFileName) [0x00051] in <dd0557022e4e4150b548e69900b259c8>:0
  2097. at System.Xml.XmlWriter.Create (System.String outputFileName, System.Xml.XmlWriterSettings settings) [0x0000a] in <dd0557022e4e4150b548e69900b259c8>:0
  2098. at Google.ProjectSettings.Save () [0x0006d] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:821 , Project settings were not saved!
  2099. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  2100. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  2101. UnityEngine.Logger:Log (UnityEngine.LogType,object)
  2102. UnityEngine.Debug:LogError (object)
  2103. Google.Logger:Log (string,Google.LogLevel) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/Logger.cs:136)
  2104. Google.ProjectSettings:Save () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:844)
  2105. Google.ProjectSettings:SetBool (string,bool,Google.SettingsLocation) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:485)
  2106. Google.ProjectSettings:SetBool (string,bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:497)
  2107. Google.IOSResolver:set_VerboseLoggingEnabled (bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:1040)
  2108. Google.IOSResolver:.cctor () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:726)
  2109. System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
  2110. UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
  2111. (Filename: /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs Line: 844)
  2112. Mono: successfully reloaded assembly
  2113. - Completed reload, in 1.066 seconds
  2114. Domain Reload Profiling:
  2115. ReloadAssembly (1067ms)
  2116. BeginReloadAssembly (126ms)
  2117. ExecutionOrderSort (0ms)
  2118. DisableScriptedObjects (6ms)
  2119. BackupInstance (0ms)
  2120. ReleaseScriptingObjects (0ms)
  2121. CreateAndSetChildDomain (36ms)
  2122. EndReloadAssembly (851ms)
  2123. LoadAssemblies (92ms)
  2124. RebuildTransferFunctionScriptingTraits (0ms)
  2125. SetupTypeCache (256ms)
  2126. ReleaseScriptCaches (2ms)
  2127. RebuildScriptCaches (45ms)
  2128. SetupLoadedEditorAssemblies (404ms)
  2129. LogAssemblyErrors (0ms)
  2130. InitializePlatformSupportModulesInManaged (30ms)
  2131. SetLoadedEditorAssemblies (0ms)
  2132. RefreshPlugins (1ms)
  2133. BeforeProcessingInitializeOnLoad (68ms)
  2134. ProcessInitializeOnLoadAttributes (256ms)
  2135. ProcessInitializeOnLoadMethodAttributes (46ms)
  2136. AfterProcessingInitializeOnLoad (3ms)
  2137. EditorAssembliesLoaded (0ms)
  2138. ExecutionOrderSort2 (0ms)
  2139. AwakeInstancesAfterBackupRestoration (13ms)
  2140. Platform modules already initialized, skipping
  2141. Refreshing native plugins compatible for Editor in 4.43 ms, found 6 plugins.
  2142. Preloading 0 native plugins for Editor in 0.00 ms.
  2143. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  2144. Unloading 48 unused Assets / (26.1 KB). Loaded Objects now: 4626.
  2145. Memory consumption went from 152.1 MB to 152.0 MB.
  2146. Total: 3.269000 ms (FindLiveObjects: 0.278700 ms CreateObjectMapping: 0.202200 ms MarkObjects: 2.751900 ms DeleteObjects: 0.035300 ms)
  2147. AssetImportParameters requested are different than current active one (requested -> active):
  2148. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2149. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2150. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2151. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2152. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2153. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2154. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2155. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2156. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2157. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2158. ========================================================================
  2159. Received Prepare
  2160. Registering precompiled user dll's ...
  2161. Registered in 0.011087 seconds.
  2162. Begin MonoManager ReloadAssembly
  2163. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2164. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2165. Native extension for WindowsStandalone target not found
  2166. Native extension for iOS target not found
  2167. Native extension for Android target not found
  2168. Refreshing native plugins compatible for Editor in 1.20 ms, found 6 plugins.
  2169. Preloading 0 native plugins for Editor in 0.00 ms.
  2170. Unable to write to 'ProjectSettings\GvhProjectSettings.xml' (System.IO.IOException: Sharing violation on path F:\Unity\Projects\NarKampenTake2\ProjectSettings\GvhProjectSettings.xml
  2171. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0019e] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  2172. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  2173. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean useAsync) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  2174. at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,bool)
  2175. at System.Xml.XmlWriterSettings.CreateWriter (System.String outputFileName) [0x00051] in <dd0557022e4e4150b548e69900b259c8>:0
  2176. at System.Xml.XmlWriter.Create (System.String outputFileName, System.Xml.XmlWriterSettings settings) [0x0000a] in <dd0557022e4e4150b548e69900b259c8>:0
  2177. at Google.ProjectSettings.Save () [0x0006d] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:821 , Project settings were not saved!
  2178. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  2179. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  2180. UnityEngine.Logger:Log (UnityEngine.LogType,object)
  2181. UnityEngine.Debug:LogError (object)
  2182. Google.Logger:Log (string,Google.LogLevel) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/Logger.cs:136)
  2183. Google.ProjectSettings:Save () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:844)
  2184. Google.ProjectSettings:SetBool (string,bool,Google.SettingsLocation) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:485)
  2185. Google.ProjectSettings:SetBool (string,bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:497)
  2186. Google.IOSResolver:set_VerboseLoggingEnabled (bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:1040)
  2187. Google.IOSResolver:.cctor () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:726)
  2188. System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
  2189. UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
  2190. (Filename: /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs Line: 844)
  2191. Mono: successfully reloaded assembly
  2192. - Completed reload, in 1.161 seconds
  2193. Domain Reload Profiling:
  2194. ReloadAssembly (1162ms)
  2195. BeginReloadAssembly (119ms)
  2196. ExecutionOrderSort (0ms)
  2197. DisableScriptedObjects (6ms)
  2198. BackupInstance (0ms)
  2199. ReleaseScriptingObjects (0ms)
  2200. CreateAndSetChildDomain (30ms)
  2201. EndReloadAssembly (947ms)
  2202. LoadAssemblies (82ms)
  2203. RebuildTransferFunctionScriptingTraits (0ms)
  2204. SetupTypeCache (249ms)
  2205. ReleaseScriptCaches (2ms)
  2206. RebuildScriptCaches (57ms)
  2207. SetupLoadedEditorAssemblies (482ms)
  2208. LogAssemblyErrors (0ms)
  2209. InitializePlatformSupportModulesInManaged (36ms)
  2210. SetLoadedEditorAssemblies (1ms)
  2211. RefreshPlugins (1ms)
  2212. BeforeProcessingInitializeOnLoad (103ms)
  2213. ProcessInitializeOnLoadAttributes (288ms)
  2214. ProcessInitializeOnLoadMethodAttributes (49ms)
  2215. AfterProcessingInitializeOnLoad (4ms)
  2216. EditorAssembliesLoaded (0ms)
  2217. ExecutionOrderSort2 (0ms)
  2218. AwakeInstancesAfterBackupRestoration (15ms)
  2219. Platform modules already initialized, skipping
  2220. Refreshing native plugins compatible for Editor in 3.17 ms, found 6 plugins.
  2221. Preloading 0 native plugins for Editor in 0.00 ms.
  2222. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  2223. Unloading 48 unused Assets / (26.1 KB). Loaded Objects now: 4629.
  2224. Memory consumption went from 152.1 MB to 152.0 MB.
  2225. Total: 3.246700 ms (FindLiveObjects: 0.254900 ms CreateObjectMapping: 0.291500 ms MarkObjects: 2.667900 ms DeleteObjects: 0.031300 ms)
  2226. AssetImportParameters requested are different than current active one (requested -> active):
  2227. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2228. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2229. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2230. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2231. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2232. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2233. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2234. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2235. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2236. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2237. ========================================================================
  2238. Received Prepare
  2239. Registering precompiled user dll's ...
  2240. Registered in 0.010957 seconds.
  2241. Begin MonoManager ReloadAssembly
  2242. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2243. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2244. Native extension for WindowsStandalone target not found
  2245. Native extension for iOS target not found
  2246. Native extension for Android target not found
  2247. Refreshing native plugins compatible for Editor in 0.71 ms, found 6 plugins.
  2248. Preloading 0 native plugins for Editor in 0.00 ms.
  2249. Unable to write to 'ProjectSettings\GvhProjectSettings.xml' (System.IO.IOException: Sharing violation on path F:\Unity\Projects\NarKampenTake2\ProjectSettings\GvhProjectSettings.xml
  2250. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0019e] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  2251. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  2252. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean useAsync) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  2253. at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,bool)
  2254. at System.Xml.XmlWriterSettings.CreateWriter (System.String outputFileName) [0x00051] in <dd0557022e4e4150b548e69900b259c8>:0
  2255. at System.Xml.XmlWriter.Create (System.String outputFileName, System.Xml.XmlWriterSettings settings) [0x0000a] in <dd0557022e4e4150b548e69900b259c8>:0
  2256. at Google.ProjectSettings.Save () [0x0006d] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:821 , Project settings were not saved!
  2257. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  2258. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  2259. UnityEngine.Logger:Log (UnityEngine.LogType,object)
  2260. UnityEngine.Debug:LogError (object)
  2261. Google.Logger:Log (string,Google.LogLevel) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/Logger.cs:136)
  2262. Google.ProjectSettings:Save () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:844)
  2263. Google.ProjectSettings:SetBool (string,bool,Google.SettingsLocation) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:485)
  2264. Google.ProjectSettings:SetBool (string,bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:497)
  2265. Google.IOSResolver:set_VerboseLoggingEnabled (bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:1040)
  2266. Google.IOSResolver:.cctor () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:726)
  2267. System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
  2268. UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
  2269. (Filename: /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs Line: 844)
  2270. Mono: successfully reloaded assembly
  2271. - Completed reload, in 1.051 seconds
  2272. Domain Reload Profiling:
  2273. ReloadAssembly (1052ms)
  2274. BeginReloadAssembly (125ms)
  2275. ExecutionOrderSort (0ms)
  2276. DisableScriptedObjects (7ms)
  2277. BackupInstance (0ms)
  2278. ReleaseScriptingObjects (0ms)
  2279. CreateAndSetChildDomain (31ms)
  2280. EndReloadAssembly (835ms)
  2281. LoadAssemblies (86ms)
  2282. RebuildTransferFunctionScriptingTraits (0ms)
  2283. SetupTypeCache (231ms)
  2284. ReleaseScriptCaches (1ms)
  2285. RebuildScriptCaches (48ms)
  2286. SetupLoadedEditorAssemblies (411ms)
  2287. LogAssemblyErrors (0ms)
  2288. InitializePlatformSupportModulesInManaged (29ms)
  2289. SetLoadedEditorAssemblies (1ms)
  2290. RefreshPlugins (1ms)
  2291. BeforeProcessingInitializeOnLoad (68ms)
  2292. ProcessInitializeOnLoadAttributes (261ms)
  2293. ProcessInitializeOnLoadMethodAttributes (45ms)
  2294. AfterProcessingInitializeOnLoad (6ms)
  2295. EditorAssembliesLoaded (0ms)
  2296. ExecutionOrderSort2 (0ms)
  2297. AwakeInstancesAfterBackupRestoration (16ms)
  2298. Platform modules already initialized, skipping
  2299. Refreshing native plugins compatible for Editor in 4.31 ms, found 6 plugins.
  2300. Preloading 0 native plugins for Editor in 0.00 ms.
  2301. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  2302. Unloading 48 unused Assets / (26.0 KB). Loaded Objects now: 4632.
  2303. Memory consumption went from 152.1 MB to 152.0 MB.
  2304. Total: 2.961800 ms (FindLiveObjects: 0.242100 ms CreateObjectMapping: 0.181500 ms MarkObjects: 2.508400 ms DeleteObjects: 0.029200 ms)
  2305. AssetImportParameters requested are different than current active one (requested -> active):
  2306. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2307. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2308. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2309. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2310. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2311. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2312. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2313. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2314. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2315. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2316. ========================================================================
  2317. Received Prepare
  2318. Registering precompiled user dll's ...
  2319. Registered in 0.013617 seconds.
  2320. Begin MonoManager ReloadAssembly
  2321. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2322. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2323. Native extension for WindowsStandalone target not found
  2324. Native extension for iOS target not found
  2325. Native extension for Android target not found
  2326. Refreshing native plugins compatible for Editor in 0.69 ms, found 6 plugins.
  2327. Preloading 0 native plugins for Editor in 0.00 ms.
  2328. Mono: successfully reloaded assembly
  2329. - Completed reload, in 1.038 seconds
  2330. Domain Reload Profiling:
  2331. ReloadAssembly (1038ms)
  2332. BeginReloadAssembly (120ms)
  2333. ExecutionOrderSort (0ms)
  2334. DisableScriptedObjects (8ms)
  2335. BackupInstance (0ms)
  2336. ReleaseScriptingObjects (0ms)
  2337. CreateAndSetChildDomain (30ms)
  2338. EndReloadAssembly (831ms)
  2339. LoadAssemblies (81ms)
  2340. RebuildTransferFunctionScriptingTraits (0ms)
  2341. SetupTypeCache (244ms)
  2342. ReleaseScriptCaches (1ms)
  2343. RebuildScriptCaches (44ms)
  2344. SetupLoadedEditorAssemblies (419ms)
  2345. LogAssemblyErrors (0ms)
  2346. InitializePlatformSupportModulesInManaged (27ms)
  2347. SetLoadedEditorAssemblies (0ms)
  2348. RefreshPlugins (1ms)
  2349. BeforeProcessingInitializeOnLoad (73ms)
  2350. ProcessInitializeOnLoadAttributes (264ms)
  2351. ProcessInitializeOnLoadMethodAttributes (48ms)
  2352. AfterProcessingInitializeOnLoad (4ms)
  2353. EditorAssembliesLoaded (0ms)
  2354. ExecutionOrderSort2 (0ms)
  2355. AwakeInstancesAfterBackupRestoration (13ms)
  2356. Platform modules already initialized, skipping
  2357. Refreshing native plugins compatible for Editor in 3.07 ms, found 6 plugins.
  2358. Preloading 0 native plugins for Editor in 0.00 ms.
  2359. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  2360. Unloading 48 unused Assets / (26.0 KB). Loaded Objects now: 4635.
  2361. Memory consumption went from 152.1 MB to 152.1 MB.
  2362. Total: 5.068200 ms (FindLiveObjects: 0.327200 ms CreateObjectMapping: 0.291100 ms MarkObjects: 4.342700 ms DeleteObjects: 0.106200 ms)
  2363. AssetImportParameters requested are different than current active one (requested -> active):
  2364. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2365. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2366. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2367. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2368. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2369. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2370. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2371. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2372. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2373. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2374. ========================================================================
  2375. Received Prepare
  2376. Registering precompiled user dll's ...
  2377. Registered in 0.011334 seconds.
  2378. Begin MonoManager ReloadAssembly
  2379. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2380. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2381. Native extension for WindowsStandalone target not found
  2382. Native extension for iOS target not found
  2383. Native extension for Android target not found
  2384. Refreshing native plugins compatible for Editor in 1.48 ms, found 6 plugins.
  2385. Preloading 0 native plugins for Editor in 0.00 ms.
  2386. Mono: successfully reloaded assembly
  2387. - Completed reload, in 1.206 seconds
  2388. Domain Reload Profiling:
  2389. ReloadAssembly (1207ms)
  2390. BeginReloadAssembly (126ms)
  2391. ExecutionOrderSort (0ms)
  2392. DisableScriptedObjects (7ms)
  2393. BackupInstance (0ms)
  2394. ReleaseScriptingObjects (0ms)
  2395. CreateAndSetChildDomain (33ms)
  2396. EndReloadAssembly (998ms)
  2397. LoadAssemblies (96ms)
  2398. RebuildTransferFunctionScriptingTraits (0ms)
  2399. SetupTypeCache (299ms)
  2400. ReleaseScriptCaches (2ms)
  2401. RebuildScriptCaches (63ms)
  2402. SetupLoadedEditorAssemblies (473ms)
  2403. LogAssemblyErrors (0ms)
  2404. InitializePlatformSupportModulesInManaged (35ms)
  2405. SetLoadedEditorAssemblies (1ms)
  2406. RefreshPlugins (2ms)
  2407. BeforeProcessingInitializeOnLoad (87ms)
  2408. ProcessInitializeOnLoadAttributes (295ms)
  2409. ProcessInitializeOnLoadMethodAttributes (49ms)
  2410. AfterProcessingInitializeOnLoad (4ms)
  2411. EditorAssembliesLoaded (0ms)
  2412. ExecutionOrderSort2 (0ms)
  2413. AwakeInstancesAfterBackupRestoration (15ms)
  2414. Platform modules already initialized, skipping
  2415. Refreshing native plugins compatible for Editor in 4.05 ms, found 6 plugins.
  2416. Preloading 0 native plugins for Editor in 0.00 ms.
  2417. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  2418. Unloading 48 unused Assets / (26.1 KB). Loaded Objects now: 4638.
  2419. Memory consumption went from 152.1 MB to 152.1 MB.
  2420. Total: 2.906600 ms (FindLiveObjects: 0.246400 ms CreateObjectMapping: 0.275600 ms MarkObjects: 2.349300 ms DeleteObjects: 0.034400 ms)
  2421. AssetImportParameters requested are different than current active one (requested -> active):
  2422. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2423. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2424. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2425. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2426. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2427. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2428. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2429. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2430. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2431. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2432. ========================================================================
  2433. Received Prepare
  2434. Registering precompiled user dll's ...
  2435. Registered in 0.011562 seconds.
  2436. Begin MonoManager ReloadAssembly
  2437. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2438. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2439. Native extension for WindowsStandalone target not found
  2440. Native extension for iOS target not found
  2441. Native extension for Android target not found
  2442. Refreshing native plugins compatible for Editor in 0.68 ms, found 6 plugins.
  2443. Preloading 0 native plugins for Editor in 0.00 ms.
  2444. Mono: successfully reloaded assembly
  2445. - Completed reload, in 1.014 seconds
  2446. Domain Reload Profiling:
  2447. ReloadAssembly (1014ms)
  2448. BeginReloadAssembly (124ms)
  2449. ExecutionOrderSort (0ms)
  2450. DisableScriptedObjects (6ms)
  2451. BackupInstance (0ms)
  2452. ReleaseScriptingObjects (0ms)
  2453. CreateAndSetChildDomain (33ms)
  2454. EndReloadAssembly (807ms)
  2455. LoadAssemblies (86ms)
  2456. RebuildTransferFunctionScriptingTraits (0ms)
  2457. SetupTypeCache (234ms)
  2458. ReleaseScriptCaches (1ms)
  2459. RebuildScriptCaches (47ms)
  2460. SetupLoadedEditorAssemblies (399ms)
  2461. LogAssemblyErrors (0ms)
  2462. InitializePlatformSupportModulesInManaged (26ms)
  2463. SetLoadedEditorAssemblies (0ms)
  2464. RefreshPlugins (1ms)
  2465. BeforeProcessingInitializeOnLoad (74ms)
  2466. ProcessInitializeOnLoadAttributes (250ms)
  2467. ProcessInitializeOnLoadMethodAttributes (44ms)
  2468. AfterProcessingInitializeOnLoad (3ms)
  2469. EditorAssembliesLoaded (0ms)
  2470. ExecutionOrderSort2 (0ms)
  2471. AwakeInstancesAfterBackupRestoration (12ms)
  2472. Platform modules already initialized, skipping
  2473. Refreshing native plugins compatible for Editor in 2.98 ms, found 6 plugins.
  2474. Preloading 0 native plugins for Editor in 0.00 ms.
  2475. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  2476. Unloading 48 unused Assets / (26.1 KB). Loaded Objects now: 4641.
  2477. Memory consumption went from 152.1 MB to 152.1 MB.
  2478. Total: 3.055500 ms (FindLiveObjects: 0.242900 ms CreateObjectMapping: 0.172400 ms MarkObjects: 2.610300 ms DeleteObjects: 0.029100 ms)
  2479. AssetImportParameters requested are different than current active one (requested -> active):
  2480. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2481. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2482. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2483. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2484. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2485. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2486. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2487. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2488. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2489. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2490. ========================================================================
  2491. Received Prepare
  2492. Registering precompiled user dll's ...
  2493. Registered in 0.014401 seconds.
  2494. Begin MonoManager ReloadAssembly
  2495. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2496. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2497. Native extension for WindowsStandalone target not found
  2498. Native extension for iOS target not found
  2499. Native extension for Android target not found
  2500. Refreshing native plugins compatible for Editor in 1.11 ms, found 6 plugins.
  2501. Preloading 0 native plugins for Editor in 0.00 ms.
  2502. Mono: successfully reloaded assembly
  2503. - Completed reload, in 1.191 seconds
  2504. Domain Reload Profiling:
  2505. ReloadAssembly (1192ms)
  2506. BeginReloadAssembly (116ms)
  2507. ExecutionOrderSort (0ms)
  2508. DisableScriptedObjects (6ms)
  2509. BackupInstance (0ms)
  2510. ReleaseScriptingObjects (0ms)
  2511. CreateAndSetChildDomain (30ms)
  2512. EndReloadAssembly (976ms)
  2513. LoadAssemblies (78ms)
  2514. RebuildTransferFunctionScriptingTraits (0ms)
  2515. SetupTypeCache (287ms)
  2516. ReleaseScriptCaches (1ms)
  2517. RebuildScriptCaches (66ms)
  2518. SetupLoadedEditorAssemblies (469ms)
  2519. LogAssemblyErrors (0ms)
  2520. InitializePlatformSupportModulesInManaged (34ms)
  2521. SetLoadedEditorAssemblies (1ms)
  2522. RefreshPlugins (1ms)
  2523. BeforeProcessingInitializeOnLoad (85ms)
  2524. ProcessInitializeOnLoadAttributes (293ms)
  2525. ProcessInitializeOnLoadMethodAttributes (51ms)
  2526. AfterProcessingInitializeOnLoad (4ms)
  2527. EditorAssembliesLoaded (0ms)
  2528. ExecutionOrderSort2 (0ms)
  2529. AwakeInstancesAfterBackupRestoration (15ms)
  2530. Platform modules already initialized, skipping
  2531. Refreshing native plugins compatible for Editor in 3.61 ms, found 6 plugins.
  2532. Preloading 0 native plugins for Editor in 0.00 ms.
  2533. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  2534. Unloading 48 unused Assets / (26.1 KB). Loaded Objects now: 4644.
  2535. Memory consumption went from 152.1 MB to 152.1 MB.
  2536. Total: 3.580900 ms (FindLiveObjects: 0.247100 ms CreateObjectMapping: 0.184200 ms MarkObjects: 3.115600 ms DeleteObjects: 0.033000 ms)
  2537. AssetImportParameters requested are different than current active one (requested -> active):
  2538. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2539. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2540. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2541. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2542. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2543. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2544. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2545. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2546. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2547. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2548. ========================================================================
  2549. Received Prepare
  2550. Registering precompiled user dll's ...
  2551. Registered in 0.012835 seconds.
  2552. Begin MonoManager ReloadAssembly
  2553. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2554. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2555. Native extension for WindowsStandalone target not found
  2556. Native extension for iOS target not found
  2557. Native extension for Android target not found
  2558. Refreshing native plugins compatible for Editor in 0.69 ms, found 6 plugins.
  2559. Preloading 0 native plugins for Editor in 0.00 ms.
  2560. Unable to write to 'ProjectSettings\GvhProjectSettings.xml' (System.IO.IOException: Sharing violation on path F:\Unity\Projects\NarKampenTake2\ProjectSettings\GvhProjectSettings.xml
  2561. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0019e] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  2562. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  2563. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean useAsync) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  2564. at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,bool)
  2565. at System.Xml.XmlWriterSettings.CreateWriter (System.String outputFileName) [0x00051] in <dd0557022e4e4150b548e69900b259c8>:0
  2566. at System.Xml.XmlWriter.Create (System.String outputFileName, System.Xml.XmlWriterSettings settings) [0x0000a] in <dd0557022e4e4150b548e69900b259c8>:0
  2567. at Google.ProjectSettings.Save () [0x0006d] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:821 , Project settings were not saved!
  2568. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  2569. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  2570. UnityEngine.Logger:Log (UnityEngine.LogType,object)
  2571. UnityEngine.Debug:LogError (object)
  2572. Google.Logger:Log (string,Google.LogLevel) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/Logger.cs:136)
  2573. Google.ProjectSettings:Save () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:844)
  2574. Google.ProjectSettings:SetBool (string,bool,Google.SettingsLocation) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:485)
  2575. Google.ProjectSettings:SetBool (string,bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:497)
  2576. Google.IOSResolver:set_VerboseLoggingEnabled (bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:1040)
  2577. Google.IOSResolver:.cctor () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:726)
  2578. System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
  2579. UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
  2580. (Filename: /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs Line: 844)
  2581. Mono: successfully reloaded assembly
  2582. - Completed reload, in 1.004 seconds
  2583. Domain Reload Profiling:
  2584. ReloadAssembly (1005ms)
  2585. BeginReloadAssembly (126ms)
  2586. ExecutionOrderSort (0ms)
  2587. DisableScriptedObjects (6ms)
  2588. BackupInstance (0ms)
  2589. ReleaseScriptingObjects (0ms)
  2590. CreateAndSetChildDomain (32ms)
  2591. EndReloadAssembly (778ms)
  2592. LoadAssemblies (85ms)
  2593. RebuildTransferFunctionScriptingTraits (0ms)
  2594. SetupTypeCache (222ms)
  2595. ReleaseScriptCaches (1ms)
  2596. RebuildScriptCaches (46ms)
  2597. SetupLoadedEditorAssemblies (388ms)
  2598. LogAssemblyErrors (0ms)
  2599. InitializePlatformSupportModulesInManaged (27ms)
  2600. SetLoadedEditorAssemblies (0ms)
  2601. RefreshPlugins (1ms)
  2602. BeforeProcessingInitializeOnLoad (73ms)
  2603. ProcessInitializeOnLoadAttributes (249ms)
  2604. ProcessInitializeOnLoadMethodAttributes (35ms)
  2605. AfterProcessingInitializeOnLoad (3ms)
  2606. EditorAssembliesLoaded (0ms)
  2607. ExecutionOrderSort2 (0ms)
  2608. AwakeInstancesAfterBackupRestoration (12ms)
  2609. Platform modules already initialized, skipping
  2610. Refreshing native plugins compatible for Editor in 3.20 ms, found 6 plugins.
  2611. Preloading 0 native plugins for Editor in 0.00 ms.
  2612. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  2613. Unloading 48 unused Assets / (26.0 KB). Loaded Objects now: 4647.
  2614. Memory consumption went from 152.1 MB to 152.1 MB.
  2615. Total: 3.331200 ms (FindLiveObjects: 0.301800 ms CreateObjectMapping: 0.280300 ms MarkObjects: 2.719600 ms DeleteObjects: 0.028600 ms)
  2616. AssetImportParameters requested are different than current active one (requested -> active):
  2617. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2618. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2619. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2620. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2621. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2622. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2623. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2624. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2625. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2626. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2627. ========================================================================
  2628. Received Prepare
  2629. Registering precompiled user dll's ...
  2630. Registered in 0.011870 seconds.
  2631. Begin MonoManager ReloadAssembly
  2632. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2633. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2634. Native extension for WindowsStandalone target not found
  2635. Native extension for iOS target not found
  2636. Native extension for Android target not found
  2637. Refreshing native plugins compatible for Editor in 0.69 ms, found 6 plugins.
  2638. Preloading 0 native plugins for Editor in 0.00 ms.
  2639. Unable to write to 'ProjectSettings\GvhProjectSettings.xml' (System.IO.IOException: Sharing violation on path F:\Unity\Projects\NarKampenTake2\ProjectSettings\GvhProjectSettings.xml
  2640. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0019e] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  2641. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  2642. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean useAsync) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  2643. at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,bool)
  2644. at System.Xml.XmlWriterSettings.CreateWriter (System.String outputFileName) [0x00051] in <dd0557022e4e4150b548e69900b259c8>:0
  2645. at System.Xml.XmlWriter.Create (System.String outputFileName, System.Xml.XmlWriterSettings settings) [0x0000a] in <dd0557022e4e4150b548e69900b259c8>:0
  2646. at Google.ProjectSettings.Save () [0x0006d] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:821 , Project settings were not saved!
  2647. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  2648. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  2649. UnityEngine.Logger:Log (UnityEngine.LogType,object)
  2650. UnityEngine.Debug:LogError (object)
  2651. Google.Logger:Log (string,Google.LogLevel) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/Logger.cs:136)
  2652. Google.ProjectSettings:Save () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:844)
  2653. Google.ProjectSettings:SetBool (string,bool,Google.SettingsLocation) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:485)
  2654. Google.ProjectSettings:SetBool (string,bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:497)
  2655. Google.IOSResolver:set_VerboseLoggingEnabled (bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:1040)
  2656. Google.IOSResolver:.cctor () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:726)
  2657. System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
  2658. UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
  2659. (Filename: /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs Line: 844)
  2660. Mono: successfully reloaded assembly
  2661. - Completed reload, in 1.168 seconds
  2662. Domain Reload Profiling:
  2663. ReloadAssembly (1169ms)
  2664. BeginReloadAssembly (113ms)
  2665. ExecutionOrderSort (0ms)
  2666. DisableScriptedObjects (6ms)
  2667. BackupInstance (0ms)
  2668. ReleaseScriptingObjects (0ms)
  2669. CreateAndSetChildDomain (29ms)
  2670. EndReloadAssembly (973ms)
  2671. LoadAssemblies (79ms)
  2672. RebuildTransferFunctionScriptingTraits (0ms)
  2673. SetupTypeCache (288ms)
  2674. ReleaseScriptCaches (1ms)
  2675. RebuildScriptCaches (60ms)
  2676. SetupLoadedEditorAssemblies (471ms)
  2677. LogAssemblyErrors (0ms)
  2678. InitializePlatformSupportModulesInManaged (32ms)
  2679. SetLoadedEditorAssemblies (0ms)
  2680. RefreshPlugins (1ms)
  2681. BeforeProcessingInitializeOnLoad (87ms)
  2682. ProcessInitializeOnLoadAttributes (303ms)
  2683. ProcessInitializeOnLoadMethodAttributes (45ms)
  2684. AfterProcessingInitializeOnLoad (3ms)
  2685. EditorAssembliesLoaded (0ms)
  2686. ExecutionOrderSort2 (0ms)
  2687. AwakeInstancesAfterBackupRestoration (14ms)
  2688. Platform modules already initialized, skipping
  2689. Refreshing native plugins compatible for Editor in 3.12 ms, found 6 plugins.
  2690. Preloading 0 native plugins for Editor in 0.00 ms.
  2691. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  2692. Unloading 48 unused Assets / (26.0 KB). Loaded Objects now: 4650.
  2693. Memory consumption went from 152.1 MB to 152.1 MB.
  2694. Total: 2.966000 ms (FindLiveObjects: 0.296100 ms CreateObjectMapping: 0.295700 ms MarkObjects: 2.339900 ms DeleteObjects: 0.033600 ms)
  2695. AssetImportParameters requested are different than current active one (requested -> active):
  2696. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2697. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2698. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2699. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2700. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2701. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2702. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2703. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2704. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2705. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2706. ========================================================================
  2707. Received Import Request.
  2708. Time since last request: 16895.815091 seconds.
  2709. path: Assets/UIDocument/MenuScene/MenuSceneDocument.uxml
  2710. artifactKey: Guid(f3bf4ea758843414e97e4e5bb41dfe91) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2711. Start importing Assets/UIDocument/MenuScene/MenuSceneDocument.uxml using Guid(f3bf4ea758843414e97e4e5bb41dfe91) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '96c5be201c1e6a3b2d20694fa03c7476') in 0.032595 seconds
  2712. ========================================================================
  2713. Received Prepare
  2714. Registering precompiled user dll's ...
  2715. Registered in 0.011625 seconds.
  2716. Begin MonoManager ReloadAssembly
  2717. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2718. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2719. Native extension for WindowsStandalone target not found
  2720. Native extension for iOS target not found
  2721. Native extension for Android target not found
  2722. Refreshing native plugins compatible for Editor in 0.68 ms, found 6 plugins.
  2723. Preloading 0 native plugins for Editor in 0.00 ms.
  2724. Unable to write to 'ProjectSettings\GvhProjectSettings.xml' (System.IO.IOException: Sharing violation on path F:\Unity\Projects\NarKampenTake2\ProjectSettings\GvhProjectSettings.xml
  2725. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0019e] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  2726. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  2727. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean useAsync) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  2728. at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,bool)
  2729. at System.Xml.XmlWriterSettings.CreateWriter (System.String outputFileName) [0x00051] in <dd0557022e4e4150b548e69900b259c8>:0
  2730. at System.Xml.XmlWriter.Create (System.String outputFileName, System.Xml.XmlWriterSettings settings) [0x0000a] in <dd0557022e4e4150b548e69900b259c8>:0
  2731. at Google.ProjectSettings.Save () [0x0006d] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:821 , Project settings were not saved!
  2732. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  2733. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  2734. UnityEngine.Logger:Log (UnityEngine.LogType,object)
  2735. UnityEngine.Debug:LogError (object)
  2736. Google.Logger:Log (string,Google.LogLevel) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/Logger.cs:136)
  2737. Google.ProjectSettings:Save () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:844)
  2738. Google.ProjectSettings:SetBool (string,bool,Google.SettingsLocation) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:485)
  2739. Google.ProjectSettings:SetBool (string,bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:497)
  2740. Google.IOSResolver:set_VerboseLoggingEnabled (bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:1040)
  2741. Google.IOSResolver:.cctor () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:726)
  2742. System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
  2743. UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
  2744. (Filename: /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs Line: 844)
  2745. Mono: successfully reloaded assembly
  2746. - Completed reload, in 1.058 seconds
  2747. Domain Reload Profiling:
  2748. ReloadAssembly (1059ms)
  2749. BeginReloadAssembly (128ms)
  2750. ExecutionOrderSort (0ms)
  2751. DisableScriptedObjects (9ms)
  2752. BackupInstance (0ms)
  2753. ReleaseScriptingObjects (0ms)
  2754. CreateAndSetChildDomain (33ms)
  2755. EndReloadAssembly (839ms)
  2756. LoadAssemblies (96ms)
  2757. RebuildTransferFunctionScriptingTraits (0ms)
  2758. SetupTypeCache (244ms)
  2759. ReleaseScriptCaches (1ms)
  2760. RebuildScriptCaches (44ms)
  2761. SetupLoadedEditorAssemblies (411ms)
  2762. LogAssemblyErrors (0ms)
  2763. InitializePlatformSupportModulesInManaged (30ms)
  2764. SetLoadedEditorAssemblies (0ms)
  2765. RefreshPlugins (1ms)
  2766. BeforeProcessingInitializeOnLoad (75ms)
  2767. ProcessInitializeOnLoadAttributes (261ms)
  2768. ProcessInitializeOnLoadMethodAttributes (38ms)
  2769. AfterProcessingInitializeOnLoad (5ms)
  2770. EditorAssembliesLoaded (0ms)
  2771. ExecutionOrderSort2 (0ms)
  2772. AwakeInstancesAfterBackupRestoration (14ms)
  2773. Platform modules already initialized, skipping
  2774. Refreshing native plugins compatible for Editor in 2.94 ms, found 6 plugins.
  2775. Preloading 0 native plugins for Editor in 0.00 ms.
  2776. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  2777. Unloading 48 unused Assets / (26.1 KB). Loaded Objects now: 4654.
  2778. Memory consumption went from 152.1 MB to 152.1 MB.
  2779. Total: 2.977800 ms (FindLiveObjects: 0.266800 ms CreateObjectMapping: 0.172900 ms MarkObjects: 2.506500 ms DeleteObjects: 0.030600 ms)
  2780. AssetImportParameters requested are different than current active one (requested -> active):
  2781. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2782. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2783. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2784. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2785. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2786. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2787. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2788. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2789. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2790. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2791. ========================================================================
  2792. Received Prepare
  2793. Registering precompiled user dll's ...
  2794. Registered in 0.011137 seconds.
  2795. Begin MonoManager ReloadAssembly
  2796. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2797. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2798. Native extension for WindowsStandalone target not found
  2799. Native extension for iOS target not found
  2800. Native extension for Android target not found
  2801. Refreshing native plugins compatible for Editor in 0.79 ms, found 6 plugins.
  2802. Preloading 0 native plugins for Editor in 0.00 ms.
  2803. System.IO.IOException: Sharing violation on path F:\Unity\Projects\NarKampenTake2\ProjectSettings\GvhProjectSettings.xml
  2804. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0019e] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  2805. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  2806. at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
  2807. at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  2808. at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00007] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  2809. at System.IO.StreamReader..ctor (System.String path) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  2810. at (wrapper remoting-invoke-with-check) System.IO.StreamReader..ctor(string)
  2811. at Google.XmlUtilities.ParseXmlTextFileElements (System.String filename, Google.Logger logger, Google.XmlUtilities+ParseElement parseElement) [0x0000f] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/XmlUtilities.cs:104
  2812. at Google.ProjectSettings.Load () [0x00012] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:777
  2813. at Google.ProjectSettings.LoadIfEmpty () [0x0001b] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:558
  2814. at Google.ProjectSettings.GetBool (System.String name, System.Boolean defaultValue, Google.SettingsLocation location) [0x0002b] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:606
  2815. at Google.ProjectSettings.GetBool (System.String name, System.Boolean defaultValue) [0x00000] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:619
  2816. at Google.IOSResolver.get_VerboseLoggingEnabled () [0x00000] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:1038
  2817. at Google.IOSResolver..cctor () [0x00215] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:726
  2818. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  2819. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  2820. UnityEngine.Logger:Log (UnityEngine.LogType,object)
  2821. UnityEngine.Debug:LogError (object)
  2822. UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
  2823. Mono: successfully reloaded assembly
  2824. - Completed reload, in 1.139 seconds
  2825. Domain Reload Profiling:
  2826. ReloadAssembly (1140ms)
  2827. BeginReloadAssembly (137ms)
  2828. ExecutionOrderSort (0ms)
  2829. DisableScriptedObjects (6ms)
  2830. BackupInstance (0ms)
  2831. ReleaseScriptingObjects (0ms)
  2832. CreateAndSetChildDomain (36ms)
  2833. EndReloadAssembly (912ms)
  2834. LoadAssemblies (89ms)
  2835. RebuildTransferFunctionScriptingTraits (0ms)
  2836. SetupTypeCache (249ms)
  2837. ReleaseScriptCaches (1ms)
  2838. RebuildScriptCaches (52ms)
  2839. SetupLoadedEditorAssemblies (464ms)
  2840. LogAssemblyErrors (0ms)
  2841. InitializePlatformSupportModulesInManaged (31ms)
  2842. SetLoadedEditorAssemblies (0ms)
  2843. RefreshPlugins (1ms)
  2844. BeforeProcessingInitializeOnLoad (90ms)
  2845. ProcessInitializeOnLoadAttributes (287ms)
  2846. ProcessInitializeOnLoadMethodAttributes (50ms)
  2847. AfterProcessingInitializeOnLoad (4ms)
  2848. EditorAssembliesLoaded (0ms)
  2849. ExecutionOrderSort2 (0ms)
  2850. AwakeInstancesAfterBackupRestoration (16ms)
  2851. Platform modules already initialized, skipping
  2852. Refreshing native plugins compatible for Editor in 3.32 ms, found 6 plugins.
  2853. Preloading 0 native plugins for Editor in 0.00 ms.
  2854. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  2855. Unloading 48 unused Assets / (26.1 KB). Loaded Objects now: 4657.
  2856. Memory consumption went from 152.2 MB to 152.1 MB.
  2857. Total: 2.776200 ms (FindLiveObjects: 0.243300 ms CreateObjectMapping: 0.164200 ms MarkObjects: 2.332200 ms DeleteObjects: 0.035500 ms)
  2858. AssetImportParameters requested are different than current active one (requested -> active):
  2859. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2860. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2861. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2862. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2863. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2864. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2865. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2866. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2867. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2868. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2869. ========================================================================
  2870. Received Prepare
  2871. Registering precompiled user dll's ...
  2872. Registered in 0.011291 seconds.
  2873. Begin MonoManager ReloadAssembly
  2874. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2875. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2876. Native extension for WindowsStandalone target not found
  2877. Native extension for iOS target not found
  2878. Native extension for Android target not found
  2879. Refreshing native plugins compatible for Editor in 1.07 ms, found 6 plugins.
  2880. Preloading 0 native plugins for Editor in 0.00 ms.
  2881. Mono: successfully reloaded assembly
  2882. - Completed reload, in 1.003 seconds
  2883. Domain Reload Profiling:
  2884. ReloadAssembly (1003ms)
  2885. BeginReloadAssembly (128ms)
  2886. ExecutionOrderSort (0ms)
  2887. DisableScriptedObjects (6ms)
  2888. BackupInstance (0ms)
  2889. ReleaseScriptingObjects (0ms)
  2890. CreateAndSetChildDomain (32ms)
  2891. EndReloadAssembly (787ms)
  2892. LoadAssemblies (89ms)
  2893. RebuildTransferFunctionScriptingTraits (0ms)
  2894. SetupTypeCache (220ms)
  2895. ReleaseScriptCaches (1ms)
  2896. RebuildScriptCaches (45ms)
  2897. SetupLoadedEditorAssemblies (393ms)
  2898. LogAssemblyErrors (0ms)
  2899. InitializePlatformSupportModulesInManaged (26ms)
  2900. SetLoadedEditorAssemblies (1ms)
  2901. RefreshPlugins (1ms)
  2902. BeforeProcessingInitializeOnLoad (68ms)
  2903. ProcessInitializeOnLoadAttributes (250ms)
  2904. ProcessInitializeOnLoadMethodAttributes (44ms)
  2905. AfterProcessingInitializeOnLoad (3ms)
  2906. EditorAssembliesLoaded (0ms)
  2907. ExecutionOrderSort2 (0ms)
  2908. AwakeInstancesAfterBackupRestoration (15ms)
  2909. Platform modules already initialized, skipping
  2910. Refreshing native plugins compatible for Editor in 2.90 ms, found 6 plugins.
  2911. Preloading 0 native plugins for Editor in 0.00 ms.
  2912. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  2913. Unloading 48 unused Assets / (26.1 KB). Loaded Objects now: 4660.
  2914. Memory consumption went from 152.2 MB to 152.1 MB.
  2915. Total: 2.765300 ms (FindLiveObjects: 0.243500 ms CreateObjectMapping: 0.174700 ms MarkObjects: 2.316900 ms DeleteObjects: 0.029400 ms)
  2916. AssetImportParameters requested are different than current active one (requested -> active):
  2917. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2918. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2919. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2920. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2921. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2922. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2923. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2924. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2925. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2926. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2927. ========================================================================
  2928. Received Import Request.
  2929. Time since last request: 719.330757 seconds.
  2930. path: Assets/Scripts/MainScene/TabsController.cs
  2931. artifactKey: Guid(cf5c15e4e1dc7c54ab51c93ef6d8479c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  2932. Start importing Assets/Scripts/MainScene/TabsController.cs using Guid(cf5c15e4e1dc7c54ab51c93ef6d8479c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bd7195abfb9017ae1eb1f2c54978de2a') in 0.007545 seconds
  2933. ========================================================================
  2934. Received Prepare
  2935. Registering precompiled user dll's ...
  2936. Registered in 0.011210 seconds.
  2937. Begin MonoManager ReloadAssembly
  2938. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2939. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2940. Native extension for WindowsStandalone target not found
  2941. Native extension for iOS target not found
  2942. Native extension for Android target not found
  2943. Refreshing native plugins compatible for Editor in 0.69 ms, found 6 plugins.
  2944. Preloading 0 native plugins for Editor in 0.00 ms.
  2945. Mono: successfully reloaded assembly
  2946. - Completed reload, in 1.033 seconds
  2947. Domain Reload Profiling:
  2948. ReloadAssembly (1034ms)
  2949. BeginReloadAssembly (124ms)
  2950. ExecutionOrderSort (0ms)
  2951. DisableScriptedObjects (6ms)
  2952. BackupInstance (0ms)
  2953. ReleaseScriptingObjects (0ms)
  2954. CreateAndSetChildDomain (34ms)
  2955. EndReloadAssembly (809ms)
  2956. LoadAssemblies (83ms)
  2957. RebuildTransferFunctionScriptingTraits (0ms)
  2958. SetupTypeCache (252ms)
  2959. ReleaseScriptCaches (1ms)
  2960. RebuildScriptCaches (44ms)
  2961. SetupLoadedEditorAssemblies (386ms)
  2962. LogAssemblyErrors (0ms)
  2963. InitializePlatformSupportModulesInManaged (25ms)
  2964. SetLoadedEditorAssemblies (0ms)
  2965. RefreshPlugins (1ms)
  2966. BeforeProcessingInitializeOnLoad (73ms)
  2967. ProcessInitializeOnLoadAttributes (242ms)
  2968. ProcessInitializeOnLoadMethodAttributes (41ms)
  2969. AfterProcessingInitializeOnLoad (3ms)
  2970. EditorAssembliesLoaded (0ms)
  2971. ExecutionOrderSort2 (0ms)
  2972. AwakeInstancesAfterBackupRestoration (13ms)
  2973. Platform modules already initialized, skipping
  2974. Refreshing native plugins compatible for Editor in 3.11 ms, found 6 plugins.
  2975. Preloading 0 native plugins for Editor in 0.00 ms.
  2976. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  2977. Unloading 48 unused Assets / (26.1 KB). Loaded Objects now: 4663.
  2978. Memory consumption went from 152.2 MB to 152.1 MB.
  2979. Total: 4.313300 ms (FindLiveObjects: 0.249600 ms CreateObjectMapping: 0.176900 ms MarkObjects: 3.842600 ms DeleteObjects: 0.043200 ms)
  2980. AssetImportParameters requested are different than current active one (requested -> active):
  2981. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  2982. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  2983. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  2984. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  2985. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  2986. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2987. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  2988. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  2989. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  2990. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  2991. ========================================================================
  2992. Received Prepare
  2993. Registering precompiled user dll's ...
  2994. Registered in 0.011977 seconds.
  2995. Begin MonoManager ReloadAssembly
  2996. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  2997. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  2998. Native extension for WindowsStandalone target not found
  2999. Native extension for iOS target not found
  3000. Native extension for Android target not found
  3001. Refreshing native plugins compatible for Editor in 1.03 ms, found 6 plugins.
  3002. Preloading 0 native plugins for Editor in 0.00 ms.
  3003. Unable to write to 'ProjectSettings\GvhProjectSettings.xml' (System.IO.IOException: Sharing violation on path F:\Unity\Projects\NarKampenTake2\ProjectSettings\GvhProjectSettings.xml
  3004. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0019e] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  3005. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  3006. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean useAsync) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  3007. at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,bool)
  3008. at System.Xml.XmlWriterSettings.CreateWriter (System.String outputFileName) [0x00051] in <dd0557022e4e4150b548e69900b259c8>:0
  3009. at System.Xml.XmlWriter.Create (System.String outputFileName, System.Xml.XmlWriterSettings settings) [0x0000a] in <dd0557022e4e4150b548e69900b259c8>:0
  3010. at Google.ProjectSettings.Save () [0x0006d] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:821 , Project settings were not saved!
  3011. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  3012. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  3013. UnityEngine.Logger:Log (UnityEngine.LogType,object)
  3014. UnityEngine.Debug:LogError (object)
  3015. Google.Logger:Log (string,Google.LogLevel) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/Logger.cs:136)
  3016. Google.ProjectSettings:Save () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:844)
  3017. Google.ProjectSettings:SetBool (string,bool,Google.SettingsLocation) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:485)
  3018. Google.ProjectSettings:SetBool (string,bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:497)
  3019. Google.IOSResolver:set_VerboseLoggingEnabled (bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:1040)
  3020. Google.IOSResolver:.cctor () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:726)
  3021. System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
  3022. UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
  3023. (Filename: /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs Line: 844)
  3024. Mono: successfully reloaded assembly
  3025. - Completed reload, in 1.139 seconds
  3026. Domain Reload Profiling:
  3027. ReloadAssembly (1140ms)
  3028. BeginReloadAssembly (116ms)
  3029. ExecutionOrderSort (0ms)
  3030. DisableScriptedObjects (6ms)
  3031. BackupInstance (0ms)
  3032. ReleaseScriptingObjects (0ms)
  3033. CreateAndSetChildDomain (30ms)
  3034. EndReloadAssembly (929ms)
  3035. LoadAssemblies (78ms)
  3036. RebuildTransferFunctionScriptingTraits (0ms)
  3037. SetupTypeCache (241ms)
  3038. ReleaseScriptCaches (1ms)
  3039. RebuildScriptCaches (57ms)
  3040. SetupLoadedEditorAssemblies (479ms)
  3041. LogAssemblyErrors (0ms)
  3042. InitializePlatformSupportModulesInManaged (34ms)
  3043. SetLoadedEditorAssemblies (1ms)
  3044. RefreshPlugins (1ms)
  3045. BeforeProcessingInitializeOnLoad (98ms)
  3046. ProcessInitializeOnLoadAttributes (293ms)
  3047. ProcessInitializeOnLoadMethodAttributes (48ms)
  3048. AfterProcessingInitializeOnLoad (5ms)
  3049. EditorAssembliesLoaded (0ms)
  3050. ExecutionOrderSort2 (0ms)
  3051. AwakeInstancesAfterBackupRestoration (14ms)
  3052. Platform modules already initialized, skipping
  3053. Refreshing native plugins compatible for Editor in 3.48 ms, found 6 plugins.
  3054. Preloading 0 native plugins for Editor in 0.00 ms.
  3055. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  3056. Unloading 48 unused Assets / (26.1 KB). Loaded Objects now: 4666.
  3057. Memory consumption went from 152.2 MB to 152.2 MB.
  3058. Total: 4.149600 ms (FindLiveObjects: 0.338100 ms CreateObjectMapping: 0.616800 ms MarkObjects: 3.161100 ms DeleteObjects: 0.032700 ms)
  3059. AssetImportParameters requested are different than current active one (requested -> active):
  3060. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3061. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3062. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3063. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3064. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  3065. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3066. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3067. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3068. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3069. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3070. ========================================================================
  3071. Received Import Request.
  3072. Time since last request: 1997.246617 seconds.
  3073. path: Assets/Scripts/MainScene/TabsController.cs
  3074. artifactKey: Guid(cf5c15e4e1dc7c54ab51c93ef6d8479c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
  3075. Start importing Assets/Scripts/MainScene/TabsController.cs using Guid(cf5c15e4e1dc7c54ab51c93ef6d8479c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2702475f354a6eb47ed19c5cc25eac56') in 0.006347 seconds
  3076. ========================================================================
  3077. Received Prepare
  3078. Registering precompiled user dll's ...
  3079. Registered in 0.012008 seconds.
  3080. Begin MonoManager ReloadAssembly
  3081. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  3082. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  3083. Native extension for WindowsStandalone target not found
  3084. Native extension for iOS target not found
  3085. Native extension for Android target not found
  3086. Refreshing native plugins compatible for Editor in 1.02 ms, found 6 plugins.
  3087. Preloading 0 native plugins for Editor in 0.00 ms.
  3088. Mono: successfully reloaded assembly
  3089. - Completed reload, in 1.185 seconds
  3090. Domain Reload Profiling:
  3091. ReloadAssembly (1185ms)
  3092. BeginReloadAssembly (123ms)
  3093. ExecutionOrderSort (0ms)
  3094. DisableScriptedObjects (7ms)
  3095. BackupInstance (0ms)
  3096. ReleaseScriptingObjects (0ms)
  3097. CreateAndSetChildDomain (31ms)
  3098. EndReloadAssembly (970ms)
  3099. LoadAssemblies (85ms)
  3100. RebuildTransferFunctionScriptingTraits (0ms)
  3101. SetupTypeCache (273ms)
  3102. ReleaseScriptCaches (1ms)
  3103. RebuildScriptCaches (58ms)
  3104. SetupLoadedEditorAssemblies (492ms)
  3105. LogAssemblyErrors (0ms)
  3106. InitializePlatformSupportModulesInManaged (34ms)
  3107. SetLoadedEditorAssemblies (1ms)
  3108. RefreshPlugins (1ms)
  3109. BeforeProcessingInitializeOnLoad (94ms)
  3110. ProcessInitializeOnLoadAttributes (310ms)
  3111. ProcessInitializeOnLoadMethodAttributes (47ms)
  3112. AfterProcessingInitializeOnLoad (4ms)
  3113. EditorAssembliesLoaded (0ms)
  3114. ExecutionOrderSort2 (0ms)
  3115. AwakeInstancesAfterBackupRestoration (13ms)
  3116. Platform modules already initialized, skipping
  3117. Refreshing native plugins compatible for Editor in 3.48 ms, found 6 plugins.
  3118. Preloading 0 native plugins for Editor in 0.00 ms.
  3119. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  3120. Unloading 48 unused Assets / (26.2 KB). Loaded Objects now: 4669.
  3121. Memory consumption went from 152.2 MB to 152.2 MB.
  3122. Total: 3.502800 ms (FindLiveObjects: 0.321500 ms CreateObjectMapping: 0.227300 ms MarkObjects: 2.919500 ms DeleteObjects: 0.033400 ms)
  3123. AssetImportParameters requested are different than current active one (requested -> active):
  3124. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3125. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3126. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3127. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3128. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  3129. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3130. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3131. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3132. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3133. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3134. ========================================================================
  3135. Received Prepare
  3136. Registering precompiled user dll's ...
  3137. Registered in 0.011624 seconds.
  3138. Begin MonoManager ReloadAssembly
  3139. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  3140. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  3141. Native extension for WindowsStandalone target not found
  3142. Native extension for iOS target not found
  3143. Native extension for Android target not found
  3144. Refreshing native plugins compatible for Editor in 0.73 ms, found 6 plugins.
  3145. Preloading 0 native plugins for Editor in 0.00 ms.
  3146. Unable to write to 'ProjectSettings\GvhProjectSettings.xml' (System.IO.IOException: Sharing violation on path F:\Unity\Projects\NarKampenTake2\ProjectSettings\GvhProjectSettings.xml
  3147. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0019e] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  3148. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  3149. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean useAsync) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  3150. at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,bool)
  3151. at System.Xml.XmlWriterSettings.CreateWriter (System.String outputFileName) [0x00051] in <dd0557022e4e4150b548e69900b259c8>:0
  3152. at System.Xml.XmlWriter.Create (System.String outputFileName, System.Xml.XmlWriterSettings settings) [0x0000a] in <dd0557022e4e4150b548e69900b259c8>:0
  3153. at Google.ProjectSettings.Save () [0x0006d] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:821 , Project settings were not saved!
  3154. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  3155. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  3156. UnityEngine.Logger:Log (UnityEngine.LogType,object)
  3157. UnityEngine.Debug:LogError (object)
  3158. Google.Logger:Log (string,Google.LogLevel) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/Logger.cs:136)
  3159. Google.ProjectSettings:Save () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:844)
  3160. Google.ProjectSettings:SetBool (string,bool,Google.SettingsLocation) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:485)
  3161. Google.ProjectSettings:SetBool (string,bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:497)
  3162. Google.IOSResolver:set_VerboseLoggingEnabled (bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:1040)
  3163. Google.IOSResolver:.cctor () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:726)
  3164. System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
  3165. UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
  3166. (Filename: /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs Line: 844)
  3167. Mono: successfully reloaded assembly
  3168. - Completed reload, in 1.183 seconds
  3169. Domain Reload Profiling:
  3170. ReloadAssembly (1184ms)
  3171. BeginReloadAssembly (116ms)
  3172. ExecutionOrderSort (0ms)
  3173. DisableScriptedObjects (7ms)
  3174. BackupInstance (0ms)
  3175. ReleaseScriptingObjects (0ms)
  3176. CreateAndSetChildDomain (31ms)
  3177. EndReloadAssembly (970ms)
  3178. LoadAssemblies (79ms)
  3179. RebuildTransferFunctionScriptingTraits (0ms)
  3180. SetupTypeCache (272ms)
  3181. ReleaseScriptCaches (2ms)
  3182. RebuildScriptCaches (59ms)
  3183. SetupLoadedEditorAssemblies (475ms)
  3184. LogAssemblyErrors (0ms)
  3185. InitializePlatformSupportModulesInManaged (37ms)
  3186. SetLoadedEditorAssemblies (1ms)
  3187. RefreshPlugins (1ms)
  3188. BeforeProcessingInitializeOnLoad (90ms)
  3189. ProcessInitializeOnLoadAttributes (299ms)
  3190. ProcessInitializeOnLoadMethodAttributes (44ms)
  3191. AfterProcessingInitializeOnLoad (3ms)
  3192. EditorAssembliesLoaded (0ms)
  3193. ExecutionOrderSort2 (0ms)
  3194. AwakeInstancesAfterBackupRestoration (14ms)
  3195. Platform modules already initialized, skipping
  3196. Refreshing native plugins compatible for Editor in 3.25 ms, found 6 plugins.
  3197. Preloading 0 native plugins for Editor in 0.00 ms.
  3198. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  3199. Unloading 48 unused Assets / (26.1 KB). Loaded Objects now: 4672.
  3200. Memory consumption went from 152.2 MB to 152.2 MB.
  3201. Total: 2.879100 ms (FindLiveObjects: 0.250300 ms CreateObjectMapping: 0.179900 ms MarkObjects: 2.412800 ms DeleteObjects: 0.035300 ms)
  3202. AssetImportParameters requested are different than current active one (requested -> active):
  3203. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3204. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3205. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3206. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3207. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  3208. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3209. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3210. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3211. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3212. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3213. ========================================================================
  3214. Received Prepare
  3215. Registering precompiled user dll's ...
  3216. Registered in 0.011097 seconds.
  3217. Begin MonoManager ReloadAssembly
  3218. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  3219. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  3220. Native extension for WindowsStandalone target not found
  3221. Native extension for iOS target not found
  3222. Native extension for Android target not found
  3223. Refreshing native plugins compatible for Editor in 0.88 ms, found 6 plugins.
  3224. Preloading 0 native plugins for Editor in 0.00 ms.
  3225. Unable to write to 'ProjectSettings\GvhProjectSettings.xml' (System.IO.IOException: Sharing violation on path F:\Unity\Projects\NarKampenTake2\ProjectSettings\GvhProjectSettings.xml
  3226. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0019e] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  3227. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  3228. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean useAsync) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  3229. at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,bool)
  3230. at System.Xml.XmlWriterSettings.CreateWriter (System.String outputFileName) [0x00051] in <dd0557022e4e4150b548e69900b259c8>:0
  3231. at System.Xml.XmlWriter.Create (System.String outputFileName, System.Xml.XmlWriterSettings settings) [0x0000a] in <dd0557022e4e4150b548e69900b259c8>:0
  3232. at Google.ProjectSettings.Save () [0x0006d] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:821 , Project settings were not saved!
  3233. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  3234. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  3235. UnityEngine.Logger:Log (UnityEngine.LogType,object)
  3236. UnityEngine.Debug:LogError (object)
  3237. Google.Logger:Log (string,Google.LogLevel) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/Logger.cs:136)
  3238. Google.ProjectSettings:Save () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:844)
  3239. Google.ProjectSettings:SetBool (string,bool,Google.SettingsLocation) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:485)
  3240. Google.ProjectSettings:SetBool (string,bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:497)
  3241. Google.IOSResolver:set_VerboseLoggingEnabled (bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:1040)
  3242. Google.IOSResolver:.cctor () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:726)
  3243. System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
  3244. UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
  3245. (Filename: /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs Line: 844)
  3246. Mono: successfully reloaded assembly
  3247. - Completed reload, in 1.130 seconds
  3248. Domain Reload Profiling:
  3249. ReloadAssembly (1131ms)
  3250. BeginReloadAssembly (134ms)
  3251. ExecutionOrderSort (0ms)
  3252. DisableScriptedObjects (6ms)
  3253. BackupInstance (0ms)
  3254. ReleaseScriptingObjects (0ms)
  3255. CreateAndSetChildDomain (35ms)
  3256. EndReloadAssembly (892ms)
  3257. LoadAssemblies (98ms)
  3258. RebuildTransferFunctionScriptingTraits (0ms)
  3259. SetupTypeCache (273ms)
  3260. ReleaseScriptCaches (1ms)
  3261. RebuildScriptCaches (56ms)
  3262. SetupLoadedEditorAssemblies (415ms)
  3263. LogAssemblyErrors (0ms)
  3264. InitializePlatformSupportModulesInManaged (31ms)
  3265. SetLoadedEditorAssemblies (0ms)
  3266. RefreshPlugins (1ms)
  3267. BeforeProcessingInitializeOnLoad (87ms)
  3268. ProcessInitializeOnLoadAttributes (252ms)
  3269. ProcessInitializeOnLoadMethodAttributes (39ms)
  3270. AfterProcessingInitializeOnLoad (3ms)
  3271. EditorAssembliesLoaded (0ms)
  3272. ExecutionOrderSort2 (0ms)
  3273. AwakeInstancesAfterBackupRestoration (14ms)
  3274. Platform modules already initialized, skipping
  3275. Refreshing native plugins compatible for Editor in 2.90 ms, found 6 plugins.
  3276. Preloading 0 native plugins for Editor in 0.00 ms.
  3277. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  3278. Unloading 48 unused Assets / (26.1 KB). Loaded Objects now: 4675.
  3279. Memory consumption went from 152.2 MB to 152.2 MB.
  3280. Total: 2.928200 ms (FindLiveObjects: 0.242500 ms CreateObjectMapping: 0.165500 ms MarkObjects: 2.487600 ms DeleteObjects: 0.031900 ms)
  3281. AssetImportParameters requested are different than current active one (requested -> active):
  3282. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3283. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3284. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3285. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3286. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  3287. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3288. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3289. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3290. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3291. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3292. ========================================================================
  3293. Received Prepare
  3294. Registering precompiled user dll's ...
  3295. Registered in 0.010576 seconds.
  3296. Begin MonoManager ReloadAssembly
  3297. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  3298. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  3299. Native extension for WindowsStandalone target not found
  3300. Native extension for iOS target not found
  3301. Native extension for Android target not found
  3302. Refreshing native plugins compatible for Editor in 0.69 ms, found 6 plugins.
  3303. Preloading 0 native plugins for Editor in 0.00 ms.
  3304. Mono: successfully reloaded assembly
  3305. - Completed reload, in 1.029 seconds
  3306. Domain Reload Profiling:
  3307. ReloadAssembly (1030ms)
  3308. BeginReloadAssembly (120ms)
  3309. ExecutionOrderSort (0ms)
  3310. DisableScriptedObjects (7ms)
  3311. BackupInstance (0ms)
  3312. ReleaseScriptingObjects (0ms)
  3313. CreateAndSetChildDomain (34ms)
  3314. EndReloadAssembly (817ms)
  3315. LoadAssemblies (79ms)
  3316. RebuildTransferFunctionScriptingTraits (0ms)
  3317. SetupTypeCache (250ms)
  3318. ReleaseScriptCaches (1ms)
  3319. RebuildScriptCaches (44ms)
  3320. SetupLoadedEditorAssemblies (387ms)
  3321. LogAssemblyErrors (0ms)
  3322. InitializePlatformSupportModulesInManaged (29ms)
  3323. SetLoadedEditorAssemblies (0ms)
  3324. RefreshPlugins (1ms)
  3325. BeforeProcessingInitializeOnLoad (71ms)
  3326. ProcessInitializeOnLoadAttributes (245ms)
  3327. ProcessInitializeOnLoadMethodAttributes (37ms)
  3328. AfterProcessingInitializeOnLoad (3ms)
  3329. EditorAssembliesLoaded (0ms)
  3330. ExecutionOrderSort2 (0ms)
  3331. AwakeInstancesAfterBackupRestoration (12ms)
  3332. Platform modules already initialized, skipping
  3333. Refreshing native plugins compatible for Editor in 5.29 ms, found 6 plugins.
  3334. Preloading 0 native plugins for Editor in 0.00 ms.
  3335. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  3336. Unloading 48 unused Assets / (26.0 KB). Loaded Objects now: 4678.
  3337. Memory consumption went from 152.2 MB to 152.2 MB.
  3338. Total: 4.700400 ms (FindLiveObjects: 0.249700 ms CreateObjectMapping: 0.171200 ms MarkObjects: 4.238200 ms DeleteObjects: 0.040000 ms)
  3339. AssetImportParameters requested are different than current active one (requested -> active):
  3340. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3341. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3342. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3343. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3344. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  3345. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3346. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3347. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3348. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3349. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3350. ========================================================================
  3351. Received Prepare
  3352. Registering precompiled user dll's ...
  3353. Registered in 0.010479 seconds.
  3354. Begin MonoManager ReloadAssembly
  3355. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  3356. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  3357. Native extension for WindowsStandalone target not found
  3358. Native extension for iOS target not found
  3359. Native extension for Android target not found
  3360. Refreshing native plugins compatible for Editor in 1.15 ms, found 6 plugins.
  3361. Preloading 0 native plugins for Editor in 0.00 ms.
  3362. Mono: successfully reloaded assembly
  3363. - Completed reload, in 1.160 seconds
  3364. Domain Reload Profiling:
  3365. ReloadAssembly (1161ms)
  3366. BeginReloadAssembly (128ms)
  3367. ExecutionOrderSort (0ms)
  3368. DisableScriptedObjects (7ms)
  3369. BackupInstance (0ms)
  3370. ReleaseScriptingObjects (0ms)
  3371. CreateAndSetChildDomain (37ms)
  3372. EndReloadAssembly (942ms)
  3373. LoadAssemblies (88ms)
  3374. RebuildTransferFunctionScriptingTraits (0ms)
  3375. SetupTypeCache (262ms)
  3376. ReleaseScriptCaches (2ms)
  3377. RebuildScriptCaches (60ms)
  3378. SetupLoadedEditorAssemblies (464ms)
  3379. LogAssemblyErrors (0ms)
  3380. InitializePlatformSupportModulesInManaged (38ms)
  3381. SetLoadedEditorAssemblies (1ms)
  3382. RefreshPlugins (1ms)
  3383. BeforeProcessingInitializeOnLoad (84ms)
  3384. ProcessInitializeOnLoadAttributes (289ms)
  3385. ProcessInitializeOnLoadMethodAttributes (47ms)
  3386. AfterProcessingInitializeOnLoad (4ms)
  3387. EditorAssembliesLoaded (0ms)
  3388. ExecutionOrderSort2 (0ms)
  3389. AwakeInstancesAfterBackupRestoration (16ms)
  3390. Platform modules already initialized, skipping
  3391. Refreshing native plugins compatible for Editor in 4.81 ms, found 6 plugins.
  3392. Preloading 0 native plugins for Editor in 0.00 ms.
  3393. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  3394. Unloading 48 unused Assets / (26.2 KB). Loaded Objects now: 4681.
  3395. Memory consumption went from 152.2 MB to 152.2 MB.
  3396. Total: 4.017500 ms (FindLiveObjects: 0.296600 ms CreateObjectMapping: 0.200800 ms MarkObjects: 3.482900 ms DeleteObjects: 0.036200 ms)
  3397. AssetImportParameters requested are different than current active one (requested -> active):
  3398. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3399. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3400. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3401. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3402. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  3403. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3404. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3405. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3406. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3407. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3408. ========================================================================
  3409. Received Prepare
  3410. Registering precompiled user dll's ...
  3411. Registered in 0.010706 seconds.
  3412. Begin MonoManager ReloadAssembly
  3413. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  3414. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  3415. Native extension for WindowsStandalone target not found
  3416. Native extension for iOS target not found
  3417. Native extension for Android target not found
  3418. Refreshing native plugins compatible for Editor in 0.68 ms, found 6 plugins.
  3419. Preloading 0 native plugins for Editor in 0.00 ms.
  3420. Mono: successfully reloaded assembly
  3421. - Completed reload, in 1.041 seconds
  3422. Domain Reload Profiling:
  3423. ReloadAssembly (1041ms)
  3424. BeginReloadAssembly (131ms)
  3425. ExecutionOrderSort (0ms)
  3426. DisableScriptedObjects (8ms)
  3427. BackupInstance (0ms)
  3428. ReleaseScriptingObjects (0ms)
  3429. CreateAndSetChildDomain (32ms)
  3430. EndReloadAssembly (811ms)
  3431. LoadAssemblies (88ms)
  3432. RebuildTransferFunctionScriptingTraits (0ms)
  3433. SetupTypeCache (233ms)
  3434. ReleaseScriptCaches (1ms)
  3435. RebuildScriptCaches (44ms)
  3436. SetupLoadedEditorAssemblies (414ms)
  3437. LogAssemblyErrors (0ms)
  3438. InitializePlatformSupportModulesInManaged (25ms)
  3439. SetLoadedEditorAssemblies (0ms)
  3440. RefreshPlugins (1ms)
  3441. BeforeProcessingInitializeOnLoad (82ms)
  3442. ProcessInitializeOnLoadAttributes (261ms)
  3443. ProcessInitializeOnLoadMethodAttributes (42ms)
  3444. AfterProcessingInitializeOnLoad (3ms)
  3445. EditorAssembliesLoaded (0ms)
  3446. ExecutionOrderSort2 (0ms)
  3447. AwakeInstancesAfterBackupRestoration (12ms)
  3448. Platform modules already initialized, skipping
  3449. Refreshing native plugins compatible for Editor in 4.86 ms, found 6 plugins.
  3450. Preloading 0 native plugins for Editor in 0.00 ms.
  3451. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  3452. Unloading 48 unused Assets / (26.1 KB). Loaded Objects now: 4684.
  3453. Memory consumption went from 152.2 MB to 152.2 MB.
  3454. Total: 3.150800 ms (FindLiveObjects: 0.246900 ms CreateObjectMapping: 0.177600 ms MarkObjects: 2.691500 ms DeleteObjects: 0.033800 ms)
  3455. AssetImportParameters requested are different than current active one (requested -> active):
  3456. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3457. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3458. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3459. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3460. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  3461. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3462. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3463. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3464. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3465. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3466. ========================================================================
  3467. Received Prepare
  3468. Registering precompiled user dll's ...
  3469. Registered in 0.010681 seconds.
  3470. Begin MonoManager ReloadAssembly
  3471. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  3472. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  3473. Native extension for WindowsStandalone target not found
  3474. Native extension for iOS target not found
  3475. Native extension for Android target not found
  3476. Refreshing native plugins compatible for Editor in 0.88 ms, found 6 plugins.
  3477. Preloading 0 native plugins for Editor in 0.00 ms.
  3478. Unable to write to 'ProjectSettings\GvhProjectSettings.xml' (System.IO.IOException: Sharing violation on path F:\Unity\Projects\NarKampenTake2\ProjectSettings\GvhProjectSettings.xml
  3479. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0019e] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  3480. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  3481. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean useAsync) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  3482. at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,bool)
  3483. at System.Xml.XmlWriterSettings.CreateWriter (System.String outputFileName) [0x00051] in <dd0557022e4e4150b548e69900b259c8>:0
  3484. at System.Xml.XmlWriter.Create (System.String outputFileName, System.Xml.XmlWriterSettings settings) [0x0000a] in <dd0557022e4e4150b548e69900b259c8>:0
  3485. at Google.ProjectSettings.Save () [0x0006d] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:821 , Project settings were not saved!
  3486. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  3487. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  3488. UnityEngine.Logger:Log (UnityEngine.LogType,object)
  3489. UnityEngine.Debug:LogError (object)
  3490. Google.Logger:Log (string,Google.LogLevel) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/Logger.cs:136)
  3491. Google.ProjectSettings:Save () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:844)
  3492. Google.ProjectSettings:SetBool (string,bool,Google.SettingsLocation) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:485)
  3493. Google.ProjectSettings:SetBool (string,bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:497)
  3494. Google.IOSResolver:set_VerboseLoggingEnabled (bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:1040)
  3495. Google.IOSResolver:.cctor () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:726)
  3496. System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
  3497. UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
  3498. (Filename: /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs Line: 844)
  3499. Mono: successfully reloaded assembly
  3500. - Completed reload, in 1.145 seconds
  3501. Domain Reload Profiling:
  3502. ReloadAssembly (1146ms)
  3503. BeginReloadAssembly (122ms)
  3504. ExecutionOrderSort (0ms)
  3505. DisableScriptedObjects (6ms)
  3506. BackupInstance (0ms)
  3507. ReleaseScriptingObjects (0ms)
  3508. CreateAndSetChildDomain (33ms)
  3509. EndReloadAssembly (931ms)
  3510. LoadAssemblies (84ms)
  3511. RebuildTransferFunctionScriptingTraits (0ms)
  3512. SetupTypeCache (257ms)
  3513. ReleaseScriptCaches (1ms)
  3514. RebuildScriptCaches (58ms)
  3515. SetupLoadedEditorAssemblies (467ms)
  3516. LogAssemblyErrors (0ms)
  3517. InitializePlatformSupportModulesInManaged (34ms)
  3518. SetLoadedEditorAssemblies (1ms)
  3519. RefreshPlugins (1ms)
  3520. BeforeProcessingInitializeOnLoad (82ms)
  3521. ProcessInitializeOnLoadAttributes (301ms)
  3522. ProcessInitializeOnLoadMethodAttributes (45ms)
  3523. AfterProcessingInitializeOnLoad (4ms)
  3524. EditorAssembliesLoaded (0ms)
  3525. ExecutionOrderSort2 (0ms)
  3526. AwakeInstancesAfterBackupRestoration (15ms)
  3527. Platform modules already initialized, skipping
  3528. Refreshing native plugins compatible for Editor in 4.89 ms, found 6 plugins.
  3529. Preloading 0 native plugins for Editor in 0.00 ms.
  3530. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  3531. Unloading 48 unused Assets / (26.1 KB). Loaded Objects now: 4687.
  3532. Memory consumption went from 152.2 MB to 152.2 MB.
  3533. Total: 2.790000 ms (FindLiveObjects: 0.254800 ms CreateObjectMapping: 0.203000 ms MarkObjects: 2.285700 ms DeleteObjects: 0.045600 ms)
  3534. AssetImportParameters requested are different than current active one (requested -> active):
  3535. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3536. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3537. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3538. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3539. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  3540. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3541. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3542. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3543. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3544. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3545. ========================================================================
  3546. Received Prepare
  3547. Registering precompiled user dll's ...
  3548. Registered in 0.011492 seconds.
  3549. Begin MonoManager ReloadAssembly
  3550. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  3551. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  3552. Native extension for WindowsStandalone target not found
  3553. Native extension for iOS target not found
  3554. Native extension for Android target not found
  3555. Refreshing native plugins compatible for Editor in 0.77 ms, found 6 plugins.
  3556. Preloading 0 native plugins for Editor in 0.00 ms.
  3557. Unable to write to 'ProjectSettings\GvhProjectSettings.xml' (System.IO.IOException: Sharing violation on path F:\Unity\Projects\NarKampenTake2\ProjectSettings\GvhProjectSettings.xml
  3558. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0019e] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  3559. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  3560. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean useAsync) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  3561. at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,bool)
  3562. at System.Xml.XmlWriterSettings.CreateWriter (System.String outputFileName) [0x00051] in <dd0557022e4e4150b548e69900b259c8>:0
  3563. at System.Xml.XmlWriter.Create (System.String outputFileName, System.Xml.XmlWriterSettings settings) [0x0000a] in <dd0557022e4e4150b548e69900b259c8>:0
  3564. at Google.ProjectSettings.Save () [0x0006d] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:821 , Project settings were not saved!
  3565. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  3566. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  3567. UnityEngine.Logger:Log (UnityEngine.LogType,object)
  3568. UnityEngine.Debug:LogError (object)
  3569. Google.Logger:Log (string,Google.LogLevel) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/Logger.cs:136)
  3570. Google.ProjectSettings:Save () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:844)
  3571. Google.ProjectSettings:SetBool (string,bool,Google.SettingsLocation) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:485)
  3572. Google.ProjectSettings:SetBool (string,bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:497)
  3573. Google.IOSResolver:set_VerboseLoggingEnabled (bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:1040)
  3574. Google.IOSResolver:.cctor () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:726)
  3575. System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
  3576. UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
  3577. (Filename: /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs Line: 844)
  3578. Mono: successfully reloaded assembly
  3579. - Completed reload, in 1.130 seconds
  3580. Domain Reload Profiling:
  3581. ReloadAssembly (1131ms)
  3582. BeginReloadAssembly (122ms)
  3583. ExecutionOrderSort (0ms)
  3584. DisableScriptedObjects (6ms)
  3585. BackupInstance (0ms)
  3586. ReleaseScriptingObjects (0ms)
  3587. CreateAndSetChildDomain (30ms)
  3588. EndReloadAssembly (910ms)
  3589. LoadAssemblies (87ms)
  3590. RebuildTransferFunctionScriptingTraits (0ms)
  3591. SetupTypeCache (239ms)
  3592. ReleaseScriptCaches (1ms)
  3593. RebuildScriptCaches (52ms)
  3594. SetupLoadedEditorAssemblies (482ms)
  3595. LogAssemblyErrors (0ms)
  3596. InitializePlatformSupportModulesInManaged (36ms)
  3597. SetLoadedEditorAssemblies (1ms)
  3598. RefreshPlugins (1ms)
  3599. BeforeProcessingInitializeOnLoad (97ms)
  3600. ProcessInitializeOnLoadAttributes (298ms)
  3601. ProcessInitializeOnLoadMethodAttributes (46ms)
  3602. AfterProcessingInitializeOnLoad (3ms)
  3603. EditorAssembliesLoaded (0ms)
  3604. ExecutionOrderSort2 (0ms)
  3605. AwakeInstancesAfterBackupRestoration (13ms)
  3606. Platform modules already initialized, skipping
  3607. Refreshing native plugins compatible for Editor in 3.30 ms, found 6 plugins.
  3608. Preloading 0 native plugins for Editor in 0.00 ms.
  3609. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  3610. Unloading 48 unused Assets / (26.1 KB). Loaded Objects now: 4690.
  3611. Memory consumption went from 152.3 MB to 152.2 MB.
  3612. Total: 3.178300 ms (FindLiveObjects: 0.361600 ms CreateObjectMapping: 0.321700 ms MarkObjects: 2.458600 ms DeleteObjects: 0.035500 ms)
  3613. AssetImportParameters requested are different than current active one (requested -> active):
  3614. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3615. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3616. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3617. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3618. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  3619. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3620. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3621. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3622. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3623. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3624. ========================================================================
  3625. Received Prepare
  3626. Registering precompiled user dll's ...
  3627. Registered in 0.011822 seconds.
  3628. Begin MonoManager ReloadAssembly
  3629. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  3630. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  3631. Native extension for WindowsStandalone target not found
  3632. Native extension for iOS target not found
  3633. Native extension for Android target not found
  3634. Refreshing native plugins compatible for Editor in 0.76 ms, found 6 plugins.
  3635. Preloading 0 native plugins for Editor in 0.00 ms.
  3636. Unable to write to 'ProjectSettings\GvhProjectSettings.xml' (System.IO.IOException: Sharing violation on path F:\Unity\Projects\NarKampenTake2\ProjectSettings\GvhProjectSettings.xml
  3637. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0019e] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  3638. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  3639. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean useAsync) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  3640. at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,bool)
  3641. at System.Xml.XmlWriterSettings.CreateWriter (System.String outputFileName) [0x00051] in <dd0557022e4e4150b548e69900b259c8>:0
  3642. at System.Xml.XmlWriter.Create (System.String outputFileName, System.Xml.XmlWriterSettings settings) [0x0000a] in <dd0557022e4e4150b548e69900b259c8>:0
  3643. at Google.ProjectSettings.Save () [0x0006d] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:821 , Project settings were not saved!
  3644. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  3645. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  3646. UnityEngine.Logger:Log (UnityEngine.LogType,object)
  3647. UnityEngine.Debug:LogError (object)
  3648. Google.Logger:Log (string,Google.LogLevel) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/Logger.cs:136)
  3649. Google.ProjectSettings:Save () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:844)
  3650. Google.ProjectSettings:SetBool (string,bool,Google.SettingsLocation) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:485)
  3651. Google.ProjectSettings:SetBool (string,bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:497)
  3652. Google.IOSResolver:set_VerboseLoggingEnabled (bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:1040)
  3653. Google.IOSResolver:.cctor () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:726)
  3654. System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
  3655. UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
  3656. (Filename: /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs Line: 844)
  3657. Mono: successfully reloaded assembly
  3658. - Completed reload, in 1.145 seconds
  3659. Domain Reload Profiling:
  3660. ReloadAssembly (1146ms)
  3661. BeginReloadAssembly (124ms)
  3662. ExecutionOrderSort (0ms)
  3663. DisableScriptedObjects (7ms)
  3664. BackupInstance (0ms)
  3665. ReleaseScriptingObjects (0ms)
  3666. CreateAndSetChildDomain (31ms)
  3667. EndReloadAssembly (922ms)
  3668. LoadAssemblies (89ms)
  3669. RebuildTransferFunctionScriptingTraits (0ms)
  3670. SetupTypeCache (249ms)
  3671. ReleaseScriptCaches (1ms)
  3672. RebuildScriptCaches (56ms)
  3673. SetupLoadedEditorAssemblies (464ms)
  3674. LogAssemblyErrors (0ms)
  3675. InitializePlatformSupportModulesInManaged (33ms)
  3676. SetLoadedEditorAssemblies (0ms)
  3677. RefreshPlugins (1ms)
  3678. BeforeProcessingInitializeOnLoad (81ms)
  3679. ProcessInitializeOnLoadAttributes (301ms)
  3680. ProcessInitializeOnLoadMethodAttributes (44ms)
  3681. AfterProcessingInitializeOnLoad (3ms)
  3682. EditorAssembliesLoaded (0ms)
  3683. ExecutionOrderSort2 (0ms)
  3684. AwakeInstancesAfterBackupRestoration (15ms)
  3685. Platform modules already initialized, skipping
  3686. Refreshing native plugins compatible for Editor in 4.83 ms, found 6 plugins.
  3687. Preloading 0 native plugins for Editor in 0.00 ms.
  3688. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  3689. Unloading 48 unused Assets / (26.1 KB). Loaded Objects now: 4693.
  3690. Memory consumption went from 152.3 MB to 152.2 MB.
  3691. Total: 2.963700 ms (FindLiveObjects: 0.260100 ms CreateObjectMapping: 0.191300 ms MarkObjects: 2.478100 ms DeleteObjects: 0.033500 ms)
  3692. AssetImportParameters requested are different than current active one (requested -> active):
  3693. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3694. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3695. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3696. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3697. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  3698. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3699. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3700. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3701. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3702. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3703. ========================================================================
  3704. Received Prepare
  3705. Registering precompiled user dll's ...
  3706. Registered in 0.012207 seconds.
  3707. Begin MonoManager ReloadAssembly
  3708. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  3709. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  3710. Native extension for WindowsStandalone target not found
  3711. Native extension for iOS target not found
  3712. Native extension for Android target not found
  3713. Refreshing native plugins compatible for Editor in 1.18 ms, found 6 plugins.
  3714. Preloading 0 native plugins for Editor in 0.00 ms.
  3715. Unable to write to 'ProjectSettings\GvhProjectSettings.xml' (System.IO.IOException: Sharing violation on path F:\Unity\Projects\NarKampenTake2\ProjectSettings\GvhProjectSettings.xml
  3716. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0019e] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  3717. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  3718. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean useAsync) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  3719. at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,bool)
  3720. at System.Xml.XmlWriterSettings.CreateWriter (System.String outputFileName) [0x00051] in <dd0557022e4e4150b548e69900b259c8>:0
  3721. at System.Xml.XmlWriter.Create (System.String outputFileName, System.Xml.XmlWriterSettings settings) [0x0000a] in <dd0557022e4e4150b548e69900b259c8>:0
  3722. at Google.ProjectSettings.Save () [0x0006d] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:821 , Project settings were not saved!
  3723. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  3724. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  3725. UnityEngine.Logger:Log (UnityEngine.LogType,object)
  3726. UnityEngine.Debug:LogError (object)
  3727. Google.Logger:Log (string,Google.LogLevel) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/Logger.cs:136)
  3728. Google.ProjectSettings:Save () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:844)
  3729. Google.ProjectSettings:SetBool (string,bool,Google.SettingsLocation) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:485)
  3730. Google.ProjectSettings:SetBool (string,bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:497)
  3731. Google.IOSResolver:set_VerboseLoggingEnabled (bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:1040)
  3732. Google.IOSResolver:.cctor () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:726)
  3733. System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
  3734. UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
  3735. (Filename: /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs Line: 844)
  3736. Mono: successfully reloaded assembly
  3737. - Completed reload, in 1.025 seconds
  3738. Domain Reload Profiling:
  3739. ReloadAssembly (1026ms)
  3740. BeginReloadAssembly (132ms)
  3741. ExecutionOrderSort (0ms)
  3742. DisableScriptedObjects (6ms)
  3743. BackupInstance (0ms)
  3744. ReleaseScriptingObjects (0ms)
  3745. CreateAndSetChildDomain (37ms)
  3746. EndReloadAssembly (802ms)
  3747. LoadAssemblies (94ms)
  3748. RebuildTransferFunctionScriptingTraits (0ms)
  3749. SetupTypeCache (233ms)
  3750. ReleaseScriptCaches (1ms)
  3751. RebuildScriptCaches (46ms)
  3752. SetupLoadedEditorAssemblies (387ms)
  3753. LogAssemblyErrors (0ms)
  3754. InitializePlatformSupportModulesInManaged (26ms)
  3755. SetLoadedEditorAssemblies (1ms)
  3756. RefreshPlugins (1ms)
  3757. BeforeProcessingInitializeOnLoad (68ms)
  3758. ProcessInitializeOnLoadAttributes (253ms)
  3759. ProcessInitializeOnLoadMethodAttributes (35ms)
  3760. AfterProcessingInitializeOnLoad (3ms)
  3761. EditorAssembliesLoaded (0ms)
  3762. ExecutionOrderSort2 (0ms)
  3763. AwakeInstancesAfterBackupRestoration (12ms)
  3764. Platform modules already initialized, skipping
  3765. Refreshing native plugins compatible for Editor in 2.90 ms, found 6 plugins.
  3766. Preloading 0 native plugins for Editor in 0.00 ms.
  3767. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  3768. Unloading 48 unused Assets / (26.1 KB). Loaded Objects now: 4696.
  3769. Memory consumption went from 152.3 MB to 152.3 MB.
  3770. Total: 3.083400 ms (FindLiveObjects: 0.250100 ms CreateObjectMapping: 0.184100 ms MarkObjects: 2.616600 ms DeleteObjects: 0.032000 ms)
  3771. AssetImportParameters requested are different than current active one (requested -> active):
  3772. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3773. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3774. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3775. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3776. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  3777. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3778. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3779. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3780. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3781. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3782. ========================================================================
  3783. Received Prepare
  3784. Registering precompiled user dll's ...
  3785. Registered in 0.011136 seconds.
  3786. Begin MonoManager ReloadAssembly
  3787. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  3788. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  3789. Native extension for WindowsStandalone target not found
  3790. Native extension for iOS target not found
  3791. Native extension for Android target not found
  3792. Refreshing native plugins compatible for Editor in 1.06 ms, found 6 plugins.
  3793. Preloading 0 native plugins for Editor in 0.00 ms.
  3794. Mono: successfully reloaded assembly
  3795. - Completed reload, in 1.179 seconds
  3796. Domain Reload Profiling:
  3797. ReloadAssembly (1180ms)
  3798. BeginReloadAssembly (119ms)
  3799. ExecutionOrderSort (0ms)
  3800. DisableScriptedObjects (6ms)
  3801. BackupInstance (0ms)
  3802. ReleaseScriptingObjects (0ms)
  3803. CreateAndSetChildDomain (30ms)
  3804. EndReloadAssembly (973ms)
  3805. LoadAssemblies (83ms)
  3806. RebuildTransferFunctionScriptingTraits (0ms)
  3807. SetupTypeCache (275ms)
  3808. ReleaseScriptCaches (2ms)
  3809. RebuildScriptCaches (63ms)
  3810. SetupLoadedEditorAssemblies (483ms)
  3811. LogAssemblyErrors (0ms)
  3812. InitializePlatformSupportModulesInManaged (32ms)
  3813. SetLoadedEditorAssemblies (0ms)
  3814. RefreshPlugins (1ms)
  3815. BeforeProcessingInitializeOnLoad (90ms)
  3816. ProcessInitializeOnLoadAttributes (310ms)
  3817. ProcessInitializeOnLoadMethodAttributes (46ms)
  3818. AfterProcessingInitializeOnLoad (3ms)
  3819. EditorAssembliesLoaded (0ms)
  3820. ExecutionOrderSort2 (0ms)
  3821. AwakeInstancesAfterBackupRestoration (17ms)
  3822. Platform modules already initialized, skipping
  3823. Refreshing native plugins compatible for Editor in 4.90 ms, found 6 plugins.
  3824. Preloading 0 native plugins for Editor in 0.00 ms.
  3825. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  3826. Unloading 48 unused Assets / (26.1 KB). Loaded Objects now: 4699.
  3827. Memory consumption went from 152.3 MB to 152.3 MB.
  3828. Total: 3.388900 ms (FindLiveObjects: 0.255400 ms CreateObjectMapping: 0.325000 ms MarkObjects: 2.774200 ms DeleteObjects: 0.033400 ms)
  3829. AssetImportParameters requested are different than current active one (requested -> active):
  3830. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3831. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3832. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3833. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3834. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  3835. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3836. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3837. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3838. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3839. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3840. ========================================================================
  3841. Received Prepare
  3842. Registering precompiled user dll's ...
  3843. Registered in 0.012619 seconds.
  3844. Begin MonoManager ReloadAssembly
  3845. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  3846. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  3847. Native extension for WindowsStandalone target not found
  3848. Native extension for iOS target not found
  3849. Native extension for Android target not found
  3850. Refreshing native plugins compatible for Editor in 0.96 ms, found 6 plugins.
  3851. Preloading 0 native plugins for Editor in 0.00 ms.
  3852. Mono: successfully reloaded assembly
  3853. - Completed reload, in 1.143 seconds
  3854. Domain Reload Profiling:
  3855. ReloadAssembly (1144ms)
  3856. BeginReloadAssembly (127ms)
  3857. ExecutionOrderSort (0ms)
  3858. DisableScriptedObjects (8ms)
  3859. BackupInstance (0ms)
  3860. ReleaseScriptingObjects (0ms)
  3861. CreateAndSetChildDomain (35ms)
  3862. EndReloadAssembly (926ms)
  3863. LoadAssemblies (83ms)
  3864. RebuildTransferFunctionScriptingTraits (0ms)
  3865. SetupTypeCache (244ms)
  3866. ReleaseScriptCaches (1ms)
  3867. RebuildScriptCaches (59ms)
  3868. SetupLoadedEditorAssemblies (472ms)
  3869. LogAssemblyErrors (0ms)
  3870. InitializePlatformSupportModulesInManaged (34ms)
  3871. SetLoadedEditorAssemblies (1ms)
  3872. RefreshPlugins (1ms)
  3873. BeforeProcessingInitializeOnLoad (84ms)
  3874. ProcessInitializeOnLoadAttributes (301ms)
  3875. ProcessInitializeOnLoadMethodAttributes (48ms)
  3876. AfterProcessingInitializeOnLoad (3ms)
  3877. EditorAssembliesLoaded (0ms)
  3878. ExecutionOrderSort2 (0ms)
  3879. AwakeInstancesAfterBackupRestoration (14ms)
  3880. Platform modules already initialized, skipping
  3881. Refreshing native plugins compatible for Editor in 5.02 ms, found 6 plugins.
  3882. Preloading 0 native plugins for Editor in 0.00 ms.
  3883. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  3884. Unloading 48 unused Assets / (26.1 KB). Loaded Objects now: 4702.
  3885. Memory consumption went from 152.3 MB to 152.3 MB.
  3886. Total: 3.027200 ms (FindLiveObjects: 0.298300 ms CreateObjectMapping: 0.236900 ms MarkObjects: 2.460900 ms DeleteObjects: 0.030200 ms)
  3887. AssetImportParameters requested are different than current active one (requested -> active):
  3888. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3889. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3890. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3891. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3892. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  3893. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3894. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3895. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3896. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3897. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3898. ========================================================================
  3899. Received Prepare
  3900. Registering precompiled user dll's ...
  3901. Registered in 0.011899 seconds.
  3902. Begin MonoManager ReloadAssembly
  3903. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  3904. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  3905. Native extension for WindowsStandalone target not found
  3906. Native extension for iOS target not found
  3907. Native extension for Android target not found
  3908. Refreshing native plugins compatible for Editor in 0.69 ms, found 6 plugins.
  3909. Preloading 0 native plugins for Editor in 0.00 ms.
  3910. Unable to write to 'ProjectSettings\GvhProjectSettings.xml' (System.IO.IOException: Sharing violation on path F:\Unity\Projects\NarKampenTake2\ProjectSettings\GvhProjectSettings.xml
  3911. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0019e] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  3912. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  3913. at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean useAsync) [0x00000] in <9aad1b3a47484d63ba2b3985692d80e9>:0
  3914. at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,bool)
  3915. at System.Xml.XmlWriterSettings.CreateWriter (System.String outputFileName) [0x00051] in <dd0557022e4e4150b548e69900b259c8>:0
  3916. at System.Xml.XmlWriter.Create (System.String outputFileName, System.Xml.XmlWriterSettings settings) [0x0000a] in <dd0557022e4e4150b548e69900b259c8>:0
  3917. at Google.ProjectSettings.Save () [0x0006d] in /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:821 , Project settings were not saved!
  3918. UnityEngine.StackTraceUtility:ExtractStackTrace ()
  3919. UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
  3920. UnityEngine.Logger:Log (UnityEngine.LogType,object)
  3921. UnityEngine.Debug:LogError (object)
  3922. Google.Logger:Log (string,Google.LogLevel) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/Logger.cs:136)
  3923. Google.ProjectSettings:Save () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:844)
  3924. Google.ProjectSettings:SetBool (string,bool,Google.SettingsLocation) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:485)
  3925. Google.ProjectSettings:SetBool (string,bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs:497)
  3926. Google.IOSResolver:set_VerboseLoggingEnabled (bool) (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:1040)
  3927. Google.IOSResolver:.cctor () (at /Users/drsanta/dev/tmp/unity-jar-resolver/source/IOSResolver/src/IOSResolver.cs:726)
  3928. System.Runtime.CompilerServices.RuntimeHelpers:RunClassConstructor (System.RuntimeTypeHandle)
  3929. UnityEditor.EditorAssemblies:ProcessInitializeOnLoadAttributes (System.Type[])
  3930. (Filename: /Users/drsanta/dev/tmp/unity-jar-resolver/source/VersionHandlerImpl/src/ProjectSettings.cs Line: 844)
  3931. Mono: successfully reloaded assembly
  3932. - Completed reload, in 1.040 seconds
  3933. Domain Reload Profiling:
  3934. ReloadAssembly (1040ms)
  3935. BeginReloadAssembly (124ms)
  3936. ExecutionOrderSort (0ms)
  3937. DisableScriptedObjects (6ms)
  3938. BackupInstance (0ms)
  3939. ReleaseScriptingObjects (0ms)
  3940. CreateAndSetChildDomain (32ms)
  3941. EndReloadAssembly (827ms)
  3942. LoadAssemblies (83ms)
  3943. RebuildTransferFunctionScriptingTraits (0ms)
  3944. SetupTypeCache (240ms)
  3945. ReleaseScriptCaches (1ms)
  3946. RebuildScriptCaches (48ms)
  3947. SetupLoadedEditorAssemblies (412ms)
  3948. LogAssemblyErrors (0ms)
  3949. InitializePlatformSupportModulesInManaged (31ms)
  3950. SetLoadedEditorAssemblies (0ms)
  3951. RefreshPlugins (1ms)
  3952. BeforeProcessingInitializeOnLoad (74ms)
  3953. ProcessInitializeOnLoadAttributes (263ms)
  3954. ProcessInitializeOnLoadMethodAttributes (38ms)
  3955. AfterProcessingInitializeOnLoad (5ms)
  3956. EditorAssembliesLoaded (0ms)
  3957. ExecutionOrderSort2 (0ms)
  3958. AwakeInstancesAfterBackupRestoration (13ms)
  3959. Platform modules already initialized, skipping
  3960. Refreshing native plugins compatible for Editor in 2.95 ms, found 6 plugins.
  3961. Preloading 0 native plugins for Editor in 0.00 ms.
  3962. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  3963. Unloading 48 unused Assets / (26.2 KB). Loaded Objects now: 4705.
  3964. Memory consumption went from 152.3 MB to 152.3 MB.
  3965. Total: 3.025800 ms (FindLiveObjects: 0.255800 ms CreateObjectMapping: 0.186000 ms MarkObjects: 2.554500 ms DeleteObjects: 0.028600 ms)
  3966. AssetImportParameters requested are different than current active one (requested -> active):
  3967. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  3968. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  3969. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  3970. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  3971. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  3972. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3973. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  3974. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  3975. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  3976. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  3977. ========================================================================
  3978. Received Prepare
  3979. Registering precompiled user dll's ...
  3980. Registered in 0.012548 seconds.
  3981. Begin MonoManager ReloadAssembly
  3982. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
  3983. Symbol file LoadedFromMemory doesn't match image F:\Unity\Projects\NarKampenTake2\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
  3984. Native extension for WindowsStandalone target not found
  3985. Native extension for iOS target not found
  3986. Native extension for Android target not found
  3987. Refreshing native plugins compatible for Editor in 0.96 ms, found 6 plugins.
  3988. Preloading 0 native plugins for Editor in 0.00 ms.
  3989. Mono: successfully reloaded assembly
  3990. - Completed reload, in 1.189 seconds
  3991. Domain Reload Profiling:
  3992. ReloadAssembly (1190ms)
  3993. BeginReloadAssembly (129ms)
  3994. ExecutionOrderSort (0ms)
  3995. DisableScriptedObjects (6ms)
  3996. BackupInstance (0ms)
  3997. ReleaseScriptingObjects (0ms)
  3998. CreateAndSetChildDomain (35ms)
  3999. EndReloadAssembly (968ms)
  4000. LoadAssemblies (96ms)
  4001. RebuildTransferFunctionScriptingTraits (0ms)
  4002. SetupTypeCache (277ms)
  4003. ReleaseScriptCaches (2ms)
  4004. RebuildScriptCaches (61ms)
  4005. SetupLoadedEditorAssemblies (471ms)
  4006. LogAssemblyErrors (0ms)
  4007. InitializePlatformSupportModulesInManaged (30ms)
  4008. SetLoadedEditorAssemblies (0ms)
  4009. RefreshPlugins (1ms)
  4010. BeforeProcessingInitializeOnLoad (84ms)
  4011. ProcessInitializeOnLoadAttributes (303ms)
  4012. ProcessInitializeOnLoadMethodAttributes (47ms)
  4013. AfterProcessingInitializeOnLoad (5ms)
  4014. EditorAssembliesLoaded (0ms)
  4015. ExecutionOrderSort2 (0ms)
  4016. AwakeInstancesAfterBackupRestoration (16ms)
  4017. Platform modules already initialized, skipping
  4018. Refreshing native plugins compatible for Editor in 3.19 ms, found 6 plugins.
  4019. Preloading 0 native plugins for Editor in 0.00 ms.
  4020. Unloading 4083 Unused Serialized files (Serialized files now loaded: 0)
  4021. Unloading 48 unused Assets / (26.0 KB). Loaded Objects now: 4708.
  4022. Memory consumption went from 152.3 MB to 152.3 MB.
  4023. Total: 3.730200 ms (FindLiveObjects: 0.254000 ms CreateObjectMapping: 0.183300 ms MarkObjects: 3.239600 ms DeleteObjects: 0.052500 ms)
  4024. AssetImportParameters requested are different than current active one (requested -> active):
  4025. custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
  4026. custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
  4027. custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
  4028. custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
  4029. custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
  4030. custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
  4031. custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
  4032. custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
  4033. custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
  4034. custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->