選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Learun.Application.Web.csproj 568 KiB

4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
3年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
3年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
3年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
3年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
4年前
3年前
3年前
4年前
4年前
4年前
4年前
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProductVersion>
  8. </ProductVersion>
  9. <SchemaVersion>2.0</SchemaVersion>
  10. <ProjectGuid>{2F94FC64-4D55-4874-8A71-95E9DB1F2AAD}</ProjectGuid>
  11. <ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
  12. <OutputType>Library</OutputType>
  13. <AppDesignerFolder>Properties</AppDesignerFolder>
  14. <RootNamespace>Learun.Application.Web</RootNamespace>
  15. <AssemblyName>Learun.Application.Web</AssemblyName>
  16. <TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
  17. <MvcBuildViews>false</MvcBuildViews>
  18. <UseIISExpress>true</UseIISExpress>
  19. <IISExpressSSLPort />
  20. <IISExpressAnonymousAuthentication />
  21. <IISExpressWindowsAuthentication />
  22. <IISExpressUseClassicPipelineMode />
  23. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\..\</SolutionDir>
  24. <RestorePackages>true</RestorePackages>
  25. <UseGlobalApplicationHostFile />
  26. <Use64BitIISExpress />
  27. <SccProjectName>
  28. </SccProjectName>
  29. <SccLocalPath>
  30. </SccLocalPath>
  31. <SccAuxPath>
  32. </SccAuxPath>
  33. <SccProvider>
  34. </SccProvider>
  35. <TargetFrameworkProfile />
  36. </PropertyGroup>
  37. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  38. <DebugSymbols>true</DebugSymbols>
  39. <DebugType>full</DebugType>
  40. <Optimize>false</Optimize>
  41. <OutputPath>bin\</OutputPath>
  42. <DefineConstants>DEBUG;TRACE</DefineConstants>
  43. <ErrorReport>prompt</ErrorReport>
  44. <WarningLevel>4</WarningLevel>
  45. <AllowUnsafeBlocks>false</AllowUnsafeBlocks>
  46. <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
  47. </PropertyGroup>
  48. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  49. <DebugType>pdbonly</DebugType>
  50. <Optimize>true</Optimize>
  51. <OutputPath>bin\</OutputPath>
  52. <DefineConstants>TRACE</DefineConstants>
  53. <ErrorReport>prompt</ErrorReport>
  54. <WarningLevel>4</WarningLevel>
  55. </PropertyGroup>
  56. <ItemGroup>
  57. <Reference Include="ClosedXML, Version=0.93.0.0, Culture=neutral, processorArchitecture=MSIL">
  58. <HintPath>..\packages\ClosedXML.0.93.0\lib\net40\ClosedXML.dll</HintPath>
  59. </Reference>
  60. <Reference Include="DocumentFormat.OpenXml, Version=2.8.1.0, Culture=neutral, PublicKeyToken=8fb06cb64d019a17, processorArchitecture=MSIL">
  61. <HintPath>..\packages\DocumentFormat.OpenXml.2.8.1\lib\net46\DocumentFormat.OpenXml.dll</HintPath>
  62. </Reference>
  63. <Reference Include="EntityFramework">
  64. <HintPath>..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.dll</HintPath>
  65. </Reference>
  66. <Reference Include="EntityFramework.SqlServer">
  67. <HintPath>..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.SqlServer.dll</HintPath>
  68. </Reference>
  69. <Reference Include="ExcelNumberFormat, Version=1.0.3.0, Culture=neutral, PublicKeyToken=23c6f5d73be07eca, processorArchitecture=MSIL">
  70. <HintPath>..\packages\ExcelNumberFormat.1.0.3\lib\net20\ExcelNumberFormat.dll</HintPath>
  71. </Reference>
  72. <Reference Include="FastMember.Signed, Version=1.3.0.0, Culture=neutral, PublicKeyToken=9e8f22703bef9a29, processorArchitecture=MSIL">
  73. <HintPath>..\packages\FastMember.Signed.1.3.0\lib\net45\FastMember.Signed.dll</HintPath>
  74. </Reference>
  75. <Reference Include="Hangfire.Core, Version=1.7.3.0, Culture=neutral, processorArchitecture=MSIL">
  76. <HintPath>..\packages\Hangfire.Core.1.7.3\lib\net45\Hangfire.Core.dll</HintPath>
  77. </Reference>
  78. <Reference Include="Hangfire.SqlServer, Version=1.7.3.0, Culture=neutral, processorArchitecture=MSIL">
  79. <HintPath>..\packages\Hangfire.SqlServer.1.7.3\lib\net45\Hangfire.SqlServer.dll</HintPath>
  80. </Reference>
  81. <Reference Include="ICSharpCode.SharpZipLib, Version=0.86.0.518, Culture=neutral, PublicKeyToken=1b03e6acf1164f73, processorArchitecture=MSIL">
  82. <HintPath>..\packages\SharpZipLib.0.86.0\lib\20\ICSharpCode.SharpZipLib.dll</HintPath>
  83. </Reference>
  84. <Reference Include="Microsoft.AspNet.SignalR.Client, Version=2.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  85. <SpecificVersion>False</SpecificVersion>
  86. <HintPath>..\packages\Microsoft.AspNet.SignalR.Client.2.2.3\lib\net45\Microsoft.AspNet.SignalR.Client.dll</HintPath>
  87. </Reference>
  88. <Reference Include="Microsoft.CSharp" />
  89. <Reference Include="Microsoft.Owin, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  90. <HintPath>..\packages\Microsoft.Owin.3.0.0\lib\net45\Microsoft.Owin.dll</HintPath>
  91. </Reference>
  92. <Reference Include="Microsoft.Owin.Host.SystemWeb, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  93. <HintPath>..\packages\Microsoft.Owin.Host.SystemWeb.3.0.0\lib\net45\Microsoft.Owin.Host.SystemWeb.dll</HintPath>
  94. </Reference>
  95. <Reference Include="Microsoft.Practices.ServiceLocation">
  96. <HintPath>..\packages\CommonServiceLocator.1.3\lib\portable-net4+sl5+netcore45+wpa81+wp8\Microsoft.Practices.ServiceLocation.dll</HintPath>
  97. </Reference>
  98. <Reference Include="Microsoft.Practices.Unity">
  99. <HintPath>..\packages\Unity.4.0.1\lib\net45\Microsoft.Practices.Unity.dll</HintPath>
  100. </Reference>
  101. <Reference Include="Microsoft.Practices.Unity.Configuration">
  102. <HintPath>..\packages\Unity.4.0.1\lib\net45\Microsoft.Practices.Unity.Configuration.dll</HintPath>
  103. </Reference>
  104. <Reference Include="Microsoft.Practices.Unity.RegistrationByConvention">
  105. <HintPath>..\packages\Unity.4.0.1\lib\net45\Microsoft.Practices.Unity.RegistrationByConvention.dll</HintPath>
  106. </Reference>
  107. <Reference Include="Microsoft.QualityTools.Testing.Fakes, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  108. <SpecificVersion>False</SpecificVersion>
  109. </Reference>
  110. <Reference Include="Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  111. <HintPath>..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
  112. <Private>True</Private>
  113. </Reference>
  114. <Reference Include="Microsoft.Win32.Primitives, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  115. <HintPath>..\packages\Microsoft.Win32.Primitives.4.3.0\lib\net46\Microsoft.Win32.Primitives.dll</HintPath>
  116. </Reference>
  117. <Reference Include="MySql.Data, Version=6.9.9.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL">
  118. <SpecificVersion>False</SpecificVersion>
  119. <HintPath>..\packages\MySql.Data.6.9.9\lib\net45\MySql.Data.dll</HintPath>
  120. </Reference>
  121. <Reference Include="MySql.Data.Entity.EF6, Version=6.9.9.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL">
  122. <SpecificVersion>False</SpecificVersion>
  123. <HintPath>..\packages\MySql.Data.Entity.6.9.9\lib\net45\MySql.Data.Entity.EF6.dll</HintPath>
  124. </Reference>
  125. <Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  126. <HintPath>..\packages\Newtonsoft.Json.12.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
  127. </Reference>
  128. <Reference Include="NPOI, Version=2.3.0.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
  129. <HintPath>..\packages\NPOI.2.3.0\lib\net40\NPOI.dll</HintPath>
  130. </Reference>
  131. <Reference Include="NPOI.OOXML, Version=2.3.0.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
  132. <HintPath>..\packages\NPOI.2.3.0\lib\net40\NPOI.OOXML.dll</HintPath>
  133. </Reference>
  134. <Reference Include="NPOI.OpenXml4Net, Version=2.3.0.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
  135. <HintPath>..\packages\NPOI.2.3.0\lib\net40\NPOI.OpenXml4Net.dll</HintPath>
  136. </Reference>
  137. <Reference Include="NPOI.OpenXmlFormats, Version=2.3.0.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
  138. <HintPath>..\packages\NPOI.2.3.0\lib\net40\NPOI.OpenXmlFormats.dll</HintPath>
  139. </Reference>
  140. <Reference Include="Oracle.ManagedDataAccess, Version=4.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342, processorArchitecture=MSIL">
  141. <SpecificVersion>False</SpecificVersion>
  142. <HintPath>..\packages\Oracle.ManagedDataAccess.12.1.24160719\lib\net40\Oracle.ManagedDataAccess.dll</HintPath>
  143. </Reference>
  144. <Reference Include="Oracle.ManagedDataAccess.EntityFramework, Version=6.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342, processorArchitecture=MSIL">
  145. <SpecificVersion>False</SpecificVersion>
  146. <HintPath>..\packages\Oracle.ManagedDataAccess.EntityFramework.12.1.2400\lib\net45\Oracle.ManagedDataAccess.EntityFramework.dll</HintPath>
  147. </Reference>
  148. <Reference Include="Owin, Version=1.0.0.0, Culture=neutral, PublicKeyToken=f0ebd12fd5e55cc5, processorArchitecture=MSIL">
  149. <HintPath>..\packages\Owin.1.0\lib\net40\Owin.dll</HintPath>
  150. </Reference>
  151. <Reference Include="System" />
  152. <Reference Include="System.AppContext, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  153. <HintPath>..\packages\System.AppContext.4.3.0\lib\net46\System.AppContext.dll</HintPath>
  154. </Reference>
  155. <Reference Include="System.ComponentModel.Composition" />
  156. <Reference Include="System.Console, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  157. <HintPath>..\packages\System.Console.4.3.0\lib\net46\System.Console.dll</HintPath>
  158. </Reference>
  159. <Reference Include="System.Data" />
  160. <Reference Include="System.Data.DataSetExtensions" />
  161. <Reference Include="System.Diagnostics.DiagnosticSource, Version=4.0.1.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
  162. <HintPath>..\packages\System.Diagnostics.DiagnosticSource.4.3.0\lib\net46\System.Diagnostics.DiagnosticSource.dll</HintPath>
  163. </Reference>
  164. <Reference Include="System.Diagnostics.Tracing, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  165. <HintPath>..\packages\System.Diagnostics.Tracing.4.3.0\lib\net462\System.Diagnostics.Tracing.dll</HintPath>
  166. </Reference>
  167. <Reference Include="System.Drawing" />
  168. <Reference Include="System.Globalization.Calendars, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  169. <HintPath>..\packages\System.Globalization.Calendars.4.3.0\lib\net46\System.Globalization.Calendars.dll</HintPath>
  170. </Reference>
  171. <Reference Include="System.IO, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  172. <HintPath>..\packages\System.IO.4.3.0\lib\net462\System.IO.dll</HintPath>
  173. </Reference>
  174. <Reference Include="System.IO.Compression, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
  175. <HintPath>..\packages\System.IO.Compression.4.3.0\lib\net46\System.IO.Compression.dll</HintPath>
  176. </Reference>
  177. <Reference Include="System.IO.Compression.FileSystem" />
  178. <Reference Include="System.IO.Compression.ZipFile, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
  179. <HintPath>..\packages\System.IO.Compression.ZipFile.4.3.0\lib\net46\System.IO.Compression.ZipFile.dll</HintPath>
  180. </Reference>
  181. <Reference Include="System.IO.FileSystem, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  182. <HintPath>..\packages\System.IO.FileSystem.4.3.0\lib\net46\System.IO.FileSystem.dll</HintPath>
  183. </Reference>
  184. <Reference Include="System.IO.FileSystem.Primitives, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  185. <HintPath>..\packages\System.IO.FileSystem.Primitives.4.3.0\lib\net46\System.IO.FileSystem.Primitives.dll</HintPath>
  186. </Reference>
  187. <Reference Include="System.IO.Packaging, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  188. <HintPath>..\packages\System.IO.Packaging.4.4.0\lib\net46\System.IO.Packaging.dll</HintPath>
  189. </Reference>
  190. <Reference Include="System.Management" />
  191. <Reference Include="System.Net.Http, Version=4.1.1.3, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  192. <HintPath>..\packages\System.Net.Http.4.3.4\lib\net46\System.Net.Http.dll</HintPath>
  193. </Reference>
  194. <Reference Include="System.Net.Sockets, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  195. <HintPath>..\packages\System.Net.Sockets.4.3.0\lib\net46\System.Net.Sockets.dll</HintPath>
  196. </Reference>
  197. <Reference Include="System.Numerics" />
  198. <Reference Include="System.Reflection, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  199. <HintPath>..\packages\System.Reflection.4.3.0\lib\net462\System.Reflection.dll</HintPath>
  200. </Reference>
  201. <Reference Include="System.Runtime, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  202. <HintPath>..\packages\System.Runtime.4.3.0\lib\net462\System.Runtime.dll</HintPath>
  203. </Reference>
  204. <Reference Include="System.Runtime.Extensions, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  205. <HintPath>..\packages\System.Runtime.Extensions.4.3.0\lib\net462\System.Runtime.Extensions.dll</HintPath>
  206. </Reference>
  207. <Reference Include="System.Runtime.InteropServices, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  208. <HintPath>..\packages\System.Runtime.InteropServices.4.3.0\lib\net462\System.Runtime.InteropServices.dll</HintPath>
  209. </Reference>
  210. <Reference Include="System.Runtime.InteropServices.RuntimeInformation, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  211. <HintPath>..\packages\System.Runtime.InteropServices.RuntimeInformation.4.3.0\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll</HintPath>
  212. </Reference>
  213. <Reference Include="System.Runtime.Serialization" />
  214. <Reference Include="System.Security" />
  215. <Reference Include="System.Security.Cryptography.Algorithms, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  216. <HintPath>..\packages\System.Security.Cryptography.Algorithms.4.3.0\lib\net461\System.Security.Cryptography.Algorithms.dll</HintPath>
  217. </Reference>
  218. <Reference Include="System.Security.Cryptography.Encoding, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  219. <HintPath>..\packages\System.Security.Cryptography.Encoding.4.3.0\lib\net46\System.Security.Cryptography.Encoding.dll</HintPath>
  220. </Reference>
  221. <Reference Include="System.Security.Cryptography.Primitives, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  222. <HintPath>..\packages\System.Security.Cryptography.Primitives.4.3.0\lib\net46\System.Security.Cryptography.Primitives.dll</HintPath>
  223. </Reference>
  224. <Reference Include="System.Security.Cryptography.X509Certificates, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  225. <HintPath>..\packages\System.Security.Cryptography.X509Certificates.4.3.0\lib\net461\System.Security.Cryptography.X509Certificates.dll</HintPath>
  226. </Reference>
  227. <Reference Include="System.ServiceModel" />
  228. <Reference Include="System.ServiceModel.Web" />
  229. <Reference Include="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51">
  230. <HintPath>..\packages\System.ValueTuple.4.5.0\lib\net461\System.ValueTuple.dll</HintPath>
  231. </Reference>
  232. <Reference Include="System.Web.DynamicData" />
  233. <Reference Include="System.Web.Entity" />
  234. <Reference Include="System.Web.ApplicationServices" />
  235. <Reference Include="System.ComponentModel.DataAnnotations" />
  236. <Reference Include="System.Web.Extensions" />
  237. <Reference Include="System.Web.Helpers, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  238. <HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.4\lib\net45\System.Web.Helpers.dll</HintPath>
  239. </Reference>
  240. <Reference Include="System.Web.Mvc, Version=5.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  241. <HintPath>..\packages\Microsoft.AspNet.Mvc.5.2.4\lib\net45\System.Web.Mvc.dll</HintPath>
  242. </Reference>
  243. <Reference Include="System.Web.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  244. <HintPath>..\packages\Microsoft.AspNet.Razor.3.2.4\lib\net45\System.Web.Razor.dll</HintPath>
  245. </Reference>
  246. <Reference Include="System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  247. <HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.4\lib\net45\System.Web.WebPages.dll</HintPath>
  248. </Reference>
  249. <Reference Include="System.Web.WebPages.Deployment, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  250. <HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.4\lib\net45\System.Web.WebPages.Deployment.dll</HintPath>
  251. </Reference>
  252. <Reference Include="System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  253. <HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.4\lib\net45\System.Web.WebPages.Razor.dll</HintPath>
  254. </Reference>
  255. <Reference Include="System.Web" />
  256. <Reference Include="System.Web.Abstractions" />
  257. <Reference Include="System.Web.Routing" />
  258. <Reference Include="System.Xml" />
  259. <Reference Include="System.Configuration" />
  260. <Reference Include="System.Web.Services" />
  261. <Reference Include="System.EnterpriseServices" />
  262. <Reference Include="System.Net.Http.WebRequest">
  263. </Reference>
  264. <Reference Include="System.Xml.Linq" />
  265. <Reference Include="System.Xml.ReaderWriter, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  266. <HintPath>..\packages\System.Xml.ReaderWriter.4.3.0\lib\net46\System.Xml.ReaderWriter.dll</HintPath>
  267. </Reference>
  268. <Reference Include="WindowsBase" />
  269. </ItemGroup>
  270. <ItemGroup>
  271. <Compile Include="App_Start\01 Handler\AjaxOnlyAttribute.cs" />
  272. <Compile Include="App_Start\01 Handler\DepartAuthFillters.cs" />
  273. <Compile Include="App_Start\01 Handler\HandlerErrorAttribute.cs" />
  274. <Compile Include="App_Start\01 Handler\HandlerLoginAttribute.cs" />
  275. <Compile Include="App_Start\01 Handler\HandlerValidateAntiForgeryTokenAttribute.cs" />
  276. <Compile Include="App_Start\01 Handler\HangfireAuthorizationFilter.cs" />
  277. <Compile Include="App_Start\01 Handler\MvcControllerBaseNoLogin.cs" />
  278. <Compile Include="App_Start\01 Handler\MvcControllerBase.cs" />
  279. <Compile Include="App_Start\01 Handler\ResultFillters.cs" />
  280. <Compile Include="App_Start\FilterConfig.cs" />
  281. <Compile Include="App_Start\RouteConfig.cs" />
  282. <Compile Include="App_Start\Startup.cs" />
  283. <Compile Include="Areas\AdmissionsPlatform\AdmissionsPlatformAreaRegistration.cs" />
  284. <Compile Include="Areas\AppManager\AppManagerAreaRegistration.cs" />
  285. <Compile Include="Areas\AppManager\Controllers\DTImgController.cs" />
  286. <Compile Include="Areas\AppManager\Controllers\FunctionManagerController.cs" />
  287. <Compile Include="Areas\Ask\Controllers\Ask_MainOfTeacherController.cs" />
  288. <Compile Include="Areas\AssetManagementSystem\AssetManagementSystemAreaRegistration.cs" />
  289. <Compile Include="Areas\AssetManagementSystem\Controllers\AllocationController.cs" />
  290. <Compile Include="Areas\AssetManagementSystem\Controllers\AssReportController.cs" />
  291. <Compile Include="Areas\AssetManagementSystem\Controllers\AssScrapController.cs" />
  292. <Compile Include="Areas\AssetManagementSystem\Controllers\Ass_AssetsChangeController.cs" />
  293. <Compile Include="Areas\AssetManagementSystem\Controllers\Ass_AssetsChangeItemController.cs" />
  294. <Compile Include="Areas\AssetManagementSystem\Controllers\Ass_AssetsInfoApplyController.cs" />
  295. <Compile Include="Areas\AssetManagementSystem\Controllers\Ass_AssetsInfoController.cs" />
  296. <Compile Include="Areas\AssetManagementSystem\Controllers\Ass_AssetsInfoItemApplyController.cs" />
  297. <Compile Include="Areas\AssetManagementSystem\Controllers\Ass_AssetsInfoItemController.cs" />
  298. <Compile Include="Areas\AssetManagementSystem\Controllers\Ass_AssetsOutApplyController.cs" />
  299. <Compile Include="Areas\AssetManagementSystem\Controllers\Ass_AssetsOutApplyIncompleteController.cs" />
  300. <Compile Include="Areas\AssetManagementSystem\Controllers\Ass_AssetsOutItemApplyController.cs" />
  301. <Compile Include="Areas\AssetManagementSystem\Controllers\Ass_AssetsTypeController.cs" />
  302. <Compile Include="Areas\AssetManagementSystem\Controllers\Ass_InventoryController.cs" />
  303. <Compile Include="Areas\AssetManagementSystem\Controllers\Ass_InventoryItemController.cs" />
  304. <Compile Include="Areas\AssetManagementSystem\Controllers\Ass_PurchaseApplyController.cs" />
  305. <Compile Include="Areas\AssetManagementSystem\Controllers\Ass_PurchaseController.cs" />
  306. <Compile Include="Areas\AssetManagementSystem\Controllers\Ass_PurchaseItemApplyController.cs" />
  307. <Compile Include="Areas\AssetManagementSystem\Controllers\Ass_PurchaseItemController.cs" />
  308. <Compile Include="Areas\AssetManagementSystem\Controllers\Ass_ReceiveController.cs" />
  309. <Compile Include="Areas\AssetManagementSystem\Controllers\Ass_ReceiveItemController.cs" />
  310. <Compile Include="Areas\AssetManagementSystem\Controllers\Ass_RecycleController.cs" />
  311. <Compile Include="Areas\AssetManagementSystem\Controllers\Ass_RepairController.cs" />
  312. <Compile Include="Areas\AssetManagementSystem\Controllers\Ass_RepairItemController.cs" />
  313. <Compile Include="Areas\AssetManagementSystem\Controllers\Ass_ScrapItemController.cs" />
  314. <Compile Include="Areas\AssetManagementSystem\Controllers\Ass_StorageController.cs" />
  315. <Compile Include="Areas\AssetManagementSystem\Controllers\Ass_SupplierController.cs" />
  316. <Compile Include="Areas\AssetManagementSystem\Controllers\Ass_UserChangeInfoController.cs" />
  317. <Compile Include="Areas\AssetManagementSystem\Controllers\Ass_WarningController.cs" />
  318. <Compile Include="Areas\CustomFunction\CustomFunctionAreaRegistration.cs" />
  319. <Compile Include="Areas\EducationalAdministration\Controllers\ArrangeLessonSyncController.cs" />
  320. <Compile Include="Areas\EducationalAdministration\Controllers\ArrangeLessonTermAttemperController.cs" />
  321. <Compile Include="Areas\EducationalAdministration\Controllers\CertificateManageController.cs" />
  322. <Compile Include="Areas\EducationalAdministration\Controllers\CertificateResultController.cs" />
  323. <Compile Include="Areas\EducationalAdministration\Controllers\EvaCodeOfContuctController.cs" />
  324. <Compile Include="Areas\EducationalAdministration\Controllers\EvaDormitoryInteriorController.cs" />
  325. <Compile Include="Areas\EducationalAdministration\Controllers\EvaHygieveController.cs" />
  326. <Compile Include="Areas\EducationalAdministration\Controllers\EvaViolationOfDisciplineController.cs" />
  327. <Compile Include="Areas\EducationalAdministration\Controllers\FillinFromController.cs" />
  328. <Compile Include="Areas\EducationalAdministration\Controllers\LeaveSchoolAController.cs" />
  329. <Compile Include="Areas\EducationalAdministration\Controllers\PracticeBaseController.cs" />
  330. <Compile Include="Areas\EducationalAdministration\Controllers\R_EnterBuildingController.cs" />
  331. <Compile Include="Areas\EducationalAdministration\Controllers\R_EnterSchoolController.cs" />
  332. <Compile Include="Areas\EducationalAdministration\Controllers\ScoreStatisticsController.cs" />
  333. <Compile Include="Areas\EducationalAdministration\Controllers\StuAttendanceController.cs" />
  334. <Compile Include="Areas\EducationalAdministration\Controllers\StuGrantController.cs" />
  335. <Compile Include="Areas\EducationalAdministration\Controllers\StuInfoBasicChangeController.cs" />
  336. <Compile Include="Areas\EducationalAdministration\Controllers\StuInfoSemsterController.cs" />
  337. <Compile Include="Areas\EducationalAdministration\Controllers\StuScoreNotPassController.cs" />
  338. <Compile Include="Areas\EducationalAdministration\Controllers\Sys_ReceiveDocumentController.cs" />
  339. <Compile Include="Areas\EvaluationTeach\EvaluationTeachAreaRegistration.cs" />
  340. <Compile Include="Areas\EvaluationTeach\Controllers\Eval_MainController.cs" />
  341. <Compile Include="Areas\EvaluationTeach\Controllers\Eval_QuestionController.cs" />
  342. <Compile Include="Areas\EvaluationTeach\Controllers\Eval_QuestionItemsController.cs" />
  343. <Compile Include="Areas\Ask\AskAreaRegistration.cs" />
  344. <Compile Include="Areas\EducationalAdministration\Controllers\BookBorrowController.cs" />
  345. <Compile Include="Areas\EducationalAdministration\Controllers\BookCardController.cs" />
  346. <Compile Include="Areas\EducationalAdministration\Controllers\BookClassController.cs" />
  347. <Compile Include="Areas\EducationalAdministration\Controllers\BookInfoController.cs" />
  348. <Compile Include="Areas\EducationalAdministration\Controllers\BookLocationController.cs" />
  349. <Compile Include="Areas\EducationalAdministration\Controllers\BookLoseController.cs" />
  350. <Compile Include="Areas\EducationalAdministration\Controllers\EmpInfoEnternalController.cs" />
  351. <Compile Include="Areas\EducationalAdministration\Controllers\LanMailController.cs" />
  352. <Compile Include="Areas\EducationalAdministration\Controllers\OpenLessonPlanController.cs" />
  353. <Compile Include="Areas\EducationalAdministration\Controllers\StatisticsController.cs" />
  354. <Compile Include="Areas\EducationalAdministration\Controllers\StuInfoFreshController.cs" />
  355. <Compile Include="Areas\EducationalAdministration\Controllers\StuInfoFreshOnlineServiceController.cs" />
  356. <Compile Include="Areas\EducationalAdministration\Controllers\StuSelectLessonListOfElectivePreController.cs" />
  357. <Compile Include="Areas\EducationalAdministration\Controllers\TeachAttendanceController.cs" />
  358. <Compile Include="Areas\EducationalAdministration\Controllers\TeachPlanController.cs" />
  359. <Compile Include="Areas\EducationalAdministration\Controllers\TeachSwitchController.cs" />
  360. <Compile Include="Areas\EducationalAdministration\EducationalAdministrationAreaRegistration.cs" />
  361. <Compile Include="Areas\LogisticsManagement\Controllers\APAppointmentPsychologistController.cs" />
  362. <Compile Include="Areas\LogisticsManagement\Controllers\CompanyNewsController.cs" />
  363. <Compile Include="Areas\LogisticsManagement\LogisticsManagementAreaRegistration.cs" />
  364. <Compile Include="Areas\LR_AuthorizeModule\Controllers\AuthorizeController.cs" />
  365. <Compile Include="Areas\LR_AuthorizeModule\Controllers\FilterIPController.cs" />
  366. <Compile Include="Areas\LR_AuthorizeModule\Controllers\FilterTimeController.cs" />
  367. <Compile Include="Areas\LR_AuthorizeModule\Controllers\UserRelationController.cs" />
  368. <Compile Include="Areas\LR_AuthorizeModule\LR_AuthorizeModuleAreaRegistration.cs" />
  369. <Compile Include="Areas\LR_CodeDemo\Controllers\GantProjectController.cs" />
  370. <Compile Include="Areas\LR_CodeDemo\Controllers\GanttDemoController.cs" />
  371. <Compile Include="Areas\LR_CodeDemo\Controllers\GridDemoController.cs" />
  372. <Compile Include="Areas\LR_CodeDemo\Controllers\ImgShowController.cs" />
  373. <Compile Include="Areas\LR_CodeDemo\Controllers\StockDemoController.cs" />
  374. <Compile Include="Areas\LR_CodeDemo\Controllers\WorkOrderController.cs" />
  375. <Compile Include="Areas\LR_CodeDemo\LR_CodeDemoAreaRegistration.cs" />
  376. <Compile Include="Areas\LR_CodeGeneratorModule\Controllers\CodeSchemaController.cs" />
  377. <Compile Include="Areas\LR_CodeGeneratorModule\Controllers\IconController.cs" />
  378. <Compile Include="Areas\LR_CodeGeneratorModule\Controllers\PluginDemoController.cs" />
  379. <Compile Include="Areas\LR_CodeGeneratorModule\Controllers\TemplateAPPController.cs" />
  380. <Compile Include="Areas\LR_CodeGeneratorModule\Controllers\TemplatePCController.cs" />
  381. <Compile Include="Areas\LR_CodeGeneratorModule\LR_CodeGeneratorModuleAreaRegistration.cs" />
  382. <Compile Include="Areas\LR_CRMModule\Controllers\CashBalanceController.cs" />
  383. <Compile Include="Areas\LR_CRMModule\Controllers\ChanceController.cs" />
  384. <Compile Include="Areas\LR_CRMModule\Controllers\CrmOrderController.cs" />
  385. <Compile Include="Areas\LR_CRMModule\Controllers\CustomerContactController.cs" />
  386. <Compile Include="Areas\LR_CRMModule\Controllers\CustomerController.cs" />
  387. <Compile Include="Areas\LR_CRMModule\Controllers\ExpensesController.cs" />
  388. <Compile Include="Areas\LR_CRMModule\Controllers\InvoiceController.cs" />
  389. <Compile Include="Areas\LR_CRMModule\Controllers\ReceivableController.cs" />
  390. <Compile Include="Areas\LR_CRMModule\Controllers\TrailRecordController.cs" />
  391. <Compile Include="Areas\LR_CRMModule\LR_CRMModuleAreaRegistration.cs" />
  392. <Compile Include="Areas\LR_Desktop\Controllers\CalculateProjectController.cs" />
  393. <Compile Include="Areas\LR_Desktop\Controllers\DTChartController.cs" />
  394. <Compile Include="Areas\LR_Desktop\Controllers\DTListController.cs" />
  395. <Compile Include="Areas\LR_Desktop\Controllers\DTSettingController.cs" />
  396. <Compile Include="Areas\LR_Desktop\Controllers\DTTargetController.cs" />
  397. <Compile Include="Areas\LR_Desktop\Controllers\FormulaChildController.cs" />
  398. <Compile Include="Areas\LR_Desktop\Controllers\FormulaMainController.cs" />
  399. <Compile Include="Areas\LR_Desktop\Controllers\MessageRindController.cs" />
  400. <Compile Include="Areas\LR_Desktop\Controllers\QualityReportController.cs" />
  401. <Compile Include="Areas\LR_Desktop\Controllers\SSO_Drag_CardSortManageController.cs" />
  402. <Compile Include="Areas\LR_Desktop\Controllers\SSO_Drag_DesktopManageController.cs" />
  403. <Compile Include="Areas\LR_Desktop\Controllers\WeChatDevelopController.cs" />
  404. <Compile Include="Areas\LR_Desktop\LR_DesktopAreaRegistration.cs" />
  405. <Compile Include="Areas\LR_DisplayBoard\Controllers\LR_KBConfigInfoController.cs" />
  406. <Compile Include="Areas\LR_DisplayBoard\Controllers\LR_KBFeaManageController.cs" />
  407. <Compile Include="Areas\LR_DisplayBoard\Controllers\LR_KBKanBanInfoController.cs" />
  408. <Compile Include="Areas\LR_DisplayBoard\LR_DisplayBoardAreaRegistration.cs" />
  409. <Compile Include="Areas\LR_FormModule\Controllers\CustmerformController.cs" />
  410. <Compile Include="Areas\LR_FormModule\Controllers\FormRelationController.cs" />
  411. <Compile Include="Areas\LR_FormModule\LR_FormModuleAreaRegistration.cs" />
  412. <Compile Include="Areas\LR_IM\Controllers\IMMsgController.cs" />
  413. <Compile Include="Areas\LR_IM\Controllers\SysUserController.cs" />
  414. <Compile Include="Areas\LR_IM\LR_IMAreaRegistration.cs" />
  415. <Compile Include="Areas\LR_LGManager\Controllers\CorporateMaterialApplyController.cs" />
  416. <Compile Include="Areas\LR_LGManager\Controllers\CorporateMaterialItemController.cs" />
  417. <Compile Include="Areas\LR_LGManager\Controllers\StampApplyController.cs" />
  418. <Compile Include="Areas\LR_LGManager\LR_LGManagerModuleAreaRegistration.cs" />
  419. <Compile Include="Areas\LR_Message\Controllers\LR_StrategyInfoController.cs" />
  420. <Compile Include="Areas\LR_Message\LR_MessageAreaRegistration.cs" />
  421. <Compile Include="Areas\LR_NewWorkFlow\Controllers\NWFDelegateController.cs" />
  422. <Compile Include="Areas\LR_NewWorkFlow\Controllers\NWFProcessController.cs" />
  423. <Compile Include="Areas\LR_NewWorkFlow\Controllers\NWFSchemeController.cs" />
  424. <Compile Include="Areas\LR_NewWorkFlow\Controllers\StampInfoController.cs" />
  425. <Compile Include="Areas\LR_NewWorkFlow\LR_NewWorkFlowAreaRegistration.cs" />
  426. <Compile Include="Areas\LR_OAModule\Controllers\EmailController.cs" />
  427. <Compile Include="Areas\LR_OAModule\Controllers\LostArticleInfoController.cs" />
  428. <Compile Include="Areas\LR_OAModule\Controllers\ModuleExportController.cs" />
  429. <Compile Include="Areas\LR_OAModule\Controllers\NewsController.cs" />
  430. <Compile Include="Areas\LR_OAModule\Controllers\NoticeController.cs" />
  431. <Compile Include="Areas\LR_OAModule\Controllers\ProjectGanttController.cs" />
  432. <Compile Include="Areas\LR_OAModule\Controllers\ResourceFileController.cs" />
  433. <Compile Include="Areas\LR_OAModule\Controllers\ScheduleController.cs" />
  434. <Compile Include="Areas\LR_OAModule\Controllers\SignetController.cs" />
  435. <Compile Include="Areas\LR_OAModule\LR_OAModuleAreaRegistration.cs" />
  436. <Compile Include="Areas\LR_OrganizationModule\Controllers\CompanyController.cs" />
  437. <Compile Include="Areas\LR_OrganizationModule\Controllers\DepartmentController.cs" />
  438. <Compile Include="Areas\LR_OrganizationModule\Controllers\PostController.cs" />
  439. <Compile Include="Areas\LR_OrganizationModule\Controllers\RoleController.cs" />
  440. <Compile Include="Areas\LR_OrganizationModule\Controllers\UserController.cs" />
  441. <Compile Include="Areas\LR_OrganizationModule\LR_OrganizationModuleAreaRegistration.cs" />
  442. <Compile Include="Areas\LR_PortalSite\Controllers\ArticleController.cs" />
  443. <Compile Include="Areas\LR_PortalSite\Controllers\HomeConfigController.cs" />
  444. <Compile Include="Areas\LR_PortalSite\Controllers\PageController.cs" />
  445. <Compile Include="Areas\LR_PortalSite\LR_PortalSiteAreaRegistration.cs" />
  446. <Compile Include="Areas\LR_ReportModule\Controllers\ReportManageController.cs" />
  447. <Compile Include="Areas\LR_ReportModule\Controllers\ReportTemplateController.cs" />
  448. <Compile Include="Areas\LR_ReportModule\LR_ReportModuleAreaRegistration.cs" />
  449. <Compile Include="Areas\LR_ReportTestModule\Controllers\LR_ReportTestController.cs" />
  450. <Compile Include="Areas\LR_ReportTestModule\LR_ReportTestModuleAreaRegistration.cs" />
  451. <Compile Include="Areas\LR_ReportTest\LR_ReportTestAreaRegistration.cs" />
  452. <Compile Include="Areas\LR_SystemModule\Controllers\AnnexesController.cs" />
  453. <Compile Include="Areas\LR_SystemModule\Controllers\AreaController.cs" />
  454. <Compile Include="Areas\LR_SystemModule\Controllers\CodeRuleController.cs" />
  455. <Compile Include="Areas\LR_SystemModule\Controllers\CustmerQueryController.cs" />
  456. <Compile Include="Areas\LR_SystemModule\Controllers\DatabaseLinkController.cs" />
  457. <Compile Include="Areas\LR_SystemModule\Controllers\DatabaseTableController.cs" />
  458. <Compile Include="Areas\LR_SystemModule\Controllers\DataItemController.cs" />
  459. <Compile Include="Areas\LR_SystemModule\Controllers\DataSourceController.cs" />
  460. <Compile Include="Areas\LR_SystemModule\Controllers\DbFieldController.cs" />
  461. <Compile Include="Areas\LR_SystemModule\Controllers\ExcelExportController.cs" />
  462. <Compile Include="Areas\LR_SystemModule\Controllers\ExcelImportController.cs" />
  463. <Compile Include="Areas\LR_SystemModule\Controllers\FilesController.cs" />
  464. <Compile Include="Areas\LR_SystemModule\Controllers\ImgController.cs" />
  465. <Compile Include="Areas\LR_SystemModule\Controllers\InterfaceController.cs" />
  466. <Compile Include="Areas\LR_SystemModule\Controllers\LogController.cs" />
  467. <Compile Include="Areas\LR_SystemModule\Controllers\LogoImgController.cs" />
  468. <Compile Include="Areas\LR_SystemModule\Controllers\ModuleController.cs" />
  469. <Compile Include="Areas\LR_SystemModule\LR_SystemModuleAreaRegistration.cs" />
  470. <Compile Include="Areas\LR_TaskScheduling\Controllers\TSLogController.cs" />
  471. <Compile Include="Areas\LR_TaskScheduling\Controllers\TSSchemeController.cs" />
  472. <Compile Include="Areas\LR_TaskScheduling\LR_TaskSchedulingAreaRegistration.cs" />
  473. <Compile Include="Areas\LR_WebChatModule\Controllers\OrganizeController.cs" />
  474. <Compile Include="Areas\LR_WebChatModule\Controllers\TokenController.cs" />
  475. <Compile Include="Areas\LR_WebChatModule\Controllers\UserController.cs" />
  476. <Compile Include="Areas\LR_WebChatModule\LR_WebChatModuleAreaRegistration.cs" />
  477. <Compile Include="Areas\LR_WorkFlowModule\Controllers\WfEngineController.cs" />
  478. <Compile Include="Areas\LR_WorkFlowModule\Controllers\WfMyTaskController.cs" />
  479. <Compile Include="Areas\LR_WorkFlowModule\Controllers\WfDelegateRuleController.cs" />
  480. <Compile Include="Areas\LR_WorkFlowModule\Controllers\WfMonitorController.cs" />
  481. <Compile Include="Areas\LR_WorkFlowModule\Controllers\WfSchemeController.cs" />
  482. <Compile Include="Areas\LR_WorkFlowModule\Controllers\WfSystemDemoController.cs" />
  483. <Compile Include="Areas\LR_WorkFlowModule\LR_WorkFlowModuleAreaRegistration.cs" />
  484. <Compile Include="Areas\Permission\PermissionAreaRegistration.cs" />
  485. <Compile Include="Areas\PersonnelManagement\Controllers\EpidemicReportController.cs" />
  486. <Compile Include="Areas\PersonnelManagement\Controllers\EpidemicSituationCopyController.cs" />
  487. <Compile Include="Areas\PersonnelManagement\Controllers\FD_BudgetFileController.cs" />
  488. <Compile Include="Areas\PersonnelManagement\Controllers\MeetingNoticeController.cs" />
  489. <Compile Include="Areas\PersonnelManagement\Controllers\MP_ManagementPlanController.cs" />
  490. <Compile Include="Areas\PersonnelManagement\Controllers\MP_PerformanceTrackingController.cs" />
  491. <Compile Include="Areas\PersonnelManagement\Controllers\MP_QualityObjectivesController.cs" />
  492. <Compile Include="Areas\PersonnelManagement\Controllers\OvertimeApplicationController.cs" />
  493. <Compile Include="Areas\PersonnelManagement\Controllers\ResearchMentController.cs" />
  494. <Compile Include="Areas\PersonnelManagement\Controllers\StuSaverecordController.cs" />
  495. <Compile Include="Areas\PersonnelManagement\Controllers\TimeTableController.cs" />
  496. <Compile Include="Areas\PersonnelManagement\PersonnelManagementAreaRegistration.cs" />
  497. <Compile Include="Areas\ReceiveSendFeeManagement\Controllers\FD_BudgetBasicsController.cs" />
  498. <Compile Include="Areas\ReceiveSendFeeManagement\Controllers\FD_IncomeManageController.cs" />
  499. <Compile Include="Areas\ReceiveSendFeeManagement\Controllers\FD_PayManageController.cs" />
  500. <Compile Include="Areas\ReceiveSendFeeManagement\ReceiveSendFeeManagementAreaRegistration.cs" />
  501. <Compile Include="Areas\StudentWork\Controllers\SW_Ask_MainController.cs" />
  502. <Compile Include="Areas\StudentWork\Controllers\SW_Ask_Main_QuestionController.cs" />
  503. <Compile Include="Areas\StudentWork\Controllers\SW_Ask_BatchController.cs" />
  504. <Compile Include="Areas\StudentWork\Controllers\SW_Ask_Batch_TypeController.cs" />
  505. <Compile Include="Areas\StudentWork\Controllers\SW_Ask_QuestionController.cs" />
  506. <Compile Include="Areas\StudentWork\Controllers\SW_Ask_QuestionItemsController.cs" />
  507. <Compile Include="Areas\StudentWork\StudentWorkAreaRegistration.cs" />
  508. <Compile Include="Controllers\ErrorController.cs" />
  509. <Compile Include="Controllers\HomeController.cs" />
  510. <Compile Include="Controllers\LoginController.cs" />
  511. <Compile Include="Controllers\ShowRegisterController.cs" />
  512. <Compile Include="Controllers\OnlineRegistrateController.cs" />
  513. <Compile Include="Controllers\SSOSystemController.cs" />
  514. <Compile Include="Controllers\UserCenterController.cs" />
  515. <Compile Include="Controllers\UtilityController.cs" />
  516. <Compile Include="Extensions\HtmlHelperExtensions.cs" />
  517. <Compile Include="Global.asax.cs">
  518. <DependentUpon>Global.asax</DependentUpon>
  519. </Compile>
  520. <Compile Include="Properties\AssemblyInfo.cs" />
  521. <Compile Include="Areas\LR_AuthorizeModule\Controllers\DataAuthorizeController.cs" />
  522. <Compile Include="Areas\LR_LGManager\Controllers\LGMapController.cs" />
  523. <Compile Include="Areas\LR_LGManager\Controllers\LGTypeController.cs" />
  524. <Compile Include="Areas\LR_ReportTest\Controllers\TestCRMReportController.cs" />
  525. <Compile Include="Areas\EducationalAdministration\Controllers\CdDeptController.cs" />
  526. <Compile Include="Areas\EducationalAdministration\Controllers\CdMajorController.cs" />
  527. <Compile Include="Areas\EducationalAdministration\Controllers\LessonInfoController.cs" />
  528. <Compile Include="Areas\EducationalAdministration\Controllers\CdLessonSortController.cs" />
  529. <Compile Include="Areas\EducationalAdministration\Controllers\CdLessonSortDetailController.cs" />
  530. <Compile Include="Areas\EducationalAdministration\Controllers\CdClassTypeController.cs" />
  531. <Compile Include="Areas\EducationalAdministration\Controllers\ClassroomBuildingController.cs" />
  532. <Compile Include="Areas\EducationalAdministration\Controllers\ClassroomInfoController.cs" />
  533. <Compile Include="Areas\EducationalAdministration\Controllers\ClassInfoController.cs" />
  534. <Compile Include="Areas\EducationalAdministration\Controllers\EmpInfoController.cs" />
  535. <Compile Include="Areas\EducationalAdministration\Controllers\StuInfoBasicController.cs" />
  536. <Compile Include="Areas\EducationalAdministration\Controllers\DIC_PROVINCEController.cs" />
  537. <Compile Include="Areas\EducationalAdministration\Controllers\DIC_CITYController.cs" />
  538. <Compile Include="Areas\EducationalAdministration\Controllers\DIC_AREAController.cs" />
  539. <Compile Include="Areas\EducationalAdministration\Controllers\ArrangeLessonTermController.cs" />
  540. <Compile Include="Areas\EducationalAdministration\Controllers\SYS_SendMessageController.cs" />
  541. <Compile Include="Areas\EducationalAdministration\Controllers\SYS_ReceiveMessageController.cs" />
  542. <Compile Include="Areas\EducationalAdministration\Controllers\JournalSendController.cs" />
  543. <Compile Include="Areas\EducationalAdministration\Controllers\JournalReceiveController.cs" />
  544. <Compile Include="Areas\EducationalAdministration\Controllers\AddressBookController.cs" />
  545. <Compile Include="Areas\PersonnelManagement\Controllers\TeacherCertificateController.cs" />
  546. <Compile Include="Areas\PersonnelManagement\Controllers\TeacherTrainController.cs" />
  547. <Compile Include="Areas\PersonnelManagement\Controllers\TeacherTitleEvaluationController.cs" />
  548. <Compile Include="Areas\PersonnelManagement\Controllers\TeacherRetireController.cs" />
  549. <Compile Include="Areas\PersonnelManagement\Controllers\TeacherDimissionController.cs" />
  550. <Compile Include="Areas\PersonnelManagement\Controllers\TeacherTitleChangeController.cs" />
  551. <Compile Include="Areas\PersonnelManagement\Controllers\TeacherPostChangeController.cs" />
  552. <Compile Include="Areas\PersonnelManagement\Controllers\SalarySheetController.cs" />
  553. <Compile Include="Areas\EducationalAdministration\Controllers\Sys_ReceiveFileController.cs" />
  554. <Compile Include="Areas\EducationalAdministration\Controllers\Sys_SendFileController.cs" />
  555. <Compile Include="Areas\EducationalAdministration\Controllers\Sys_SendComplaintController.cs" />
  556. <Compile Include="Areas\EducationalAdministration\Controllers\Sys_ReceiveComplaintController.cs" />
  557. <Compile Include="Areas\Permission\Controllers\Perm_FunctionTypeController.cs" />
  558. <Compile Include="Areas\Permission\Controllers\Perm_FunctionController.cs" />
  559. <Compile Include="Areas\Permission\Controllers\Perm_UserPermissionController.cs" />
  560. <Compile Include="Areas\Ask\Controllers\Ask_TypeController.cs" />
  561. <Compile Include="Areas\Ask\Controllers\Ask_MainController.cs" />
  562. <Compile Include="Areas\Ask\Controllers\Ask_QuestionController.cs" />
  563. <Compile Include="Areas\Ask\Controllers\Ask_QuestionItemsController.cs" />
  564. <Compile Include="Areas\LR_Desktop\Controllers\LR_OA_NewsReadController.cs" />
  565. <Compile Include="Areas\LR_Desktop\Controllers\Sys_QRCodeInLoginController.cs" />
  566. <Compile Include="Areas\LogisticsManagement\Controllers\AccommodationController.cs" />
  567. <Compile Include="Areas\Permission\Controllers\Perm_ChartGroupController.cs" />
  568. <Compile Include="Areas\EducationalAdministration\Controllers\EmpReportCardController.cs" />
  569. <Compile Include="Areas\LogisticsManagement\Controllers\SanitationController.cs" />
  570. <Compile Include="Areas\EducationalAdministration\Controllers\StuInfoBasic_ChangeLogController.cs" />
  571. <Compile Include="Areas\EducationalAdministration\Controllers\ArrangeLessonTermOfElectiveController.cs" />
  572. <Compile Include="Areas\EducationalAdministration\Controllers\OpenLessonPlanOfElectiveController.cs" />
  573. <Compile Include="Areas\EducationalAdministration\Controllers\StuSelectLessonListOfElectiveController.cs" />
  574. <Compile Include="Areas\EducationalAdministration\Controllers\ArrangeExamTermController.cs" />
  575. <Compile Include="Areas\EducationalAdministration\Controllers\StuAttendanceLeaveController.cs" />
  576. <Compile Include="Areas\EducationalAdministration\Controllers\ArrangeExamStructureController.cs" />
  577. <Compile Include="Areas\ReceiveSendFeeManagement\Controllers\FinaChargeBankController.cs" />
  578. <Compile Include="Areas\ReceiveSendFeeManagement\Controllers\FinaChargeItemController.cs" />
  579. <Compile Include="Areas\ReceiveSendFeeManagement\Controllers\FinaChargesStandardController.cs" />
  580. <Compile Include="Areas\ReceiveSendFeeManagement\Controllers\FinaReplaceModeController.cs" />
  581. <Compile Include="Areas\ReceiveSendFeeManagement\Controllers\FinaRefundItemController.cs" />
  582. <Compile Include="Areas\EducationalAdministration\Controllers\StuScoreController.cs" />
  583. <Compile Include="Areas\EducationalAdministration\Controllers\StuPunishmentController.cs" />
  584. <Compile Include="Areas\EducationalAdministration\Controllers\StuEncourgementController.cs" />
  585. <Compile Include="Areas\EducationalAdministration\Controllers\QingJu_UserAccountController.cs" />
  586. <Compile Include="Areas\LR_Desktop\Controllers\Sys_CustomerServiceController.cs" />
  587. <Compile Include="Areas\LR_Desktop\Controllers\Sys_DataBaseBackupController.cs" />
  588. <Compile Include="Areas\LR_Desktop\Controllers\Sys_DataBaseBackupSetController.cs" />
  589. <Compile Include="Areas\EducationalAdministration\Controllers\DgreeController.cs" />
  590. <Compile Include="Areas\LR_Desktop\Controllers\Sys_UpdateRecordController.cs" />
  591. <Compile Include="Areas\EducationalAdministration\Controllers\SchoolCalendarController.cs" />
  592. <Compile Include="Areas\EducationalAdministration\Controllers\EADateArrangeController.cs" />
  593. <Compile Include="Areas\Permission\Controllers\Perm_FunctionVisitController.cs" />
  594. <Compile Include="Areas\EducationalAdministration\Controllers\Edu_ChangeTeacherLessonController.cs" />
  595. <Compile Include="Areas\EducationalAdministration\Controllers\StuEnrollController.cs" />
  596. <Compile Include="Areas\EducationalAdministration\Controllers\CdLessonTypeController.cs" />
  597. <Compile Include="Areas\EducationalAdministration\Controllers\ElectiveMergeController.cs" />
  598. <Compile Include="Areas\EducationalAdministration\Controllers\ElectiveMergeItemController.cs" />
  599. <Compile Include="Areas\EducationalAdministration\Controllers\OpenLessonPlanOfElectiveDelController.cs" />
  600. <Compile Include="Areas\EducationalAdministration\Controllers\ElectiveMajorController.cs" />
  601. <Compile Include="Areas\EducationalAdministration\Controllers\OpenLessonPlanOfElectiveChangeController.cs" />
  602. <Compile Include="Areas\PersonnelManagement\Controllers\MP_BrowseRecordController.cs" />
  603. <Compile Include="Areas\PersonnelManagement\Controllers\WP_WorkPlanController.cs" />
  604. <Compile Include="Areas\PersonnelManagement\Controllers\WP_WorkSummaryController.cs" />
  605. <Compile Include="Areas\PersonnelManagement\Controllers\WP_CatalogController.cs" />
  606. <Compile Include="Areas\PersonnelManagement\Controllers\WP_FileListController.cs" />
  607. <Compile Include="Areas\EducationalAdministration\Controllers\StuScoreNotPassTwoController.cs" />
  608. <Compile Include="Areas\LR_Desktop\Controllers\WeChatConfigController.cs" />
  609. <Compile Include="Areas\LR_Desktop\Controllers\WeChatTempletController.cs" />
  610. <Compile Include="Areas\LR_Desktop\Controllers\LoginPageConfigController.cs" />
  611. <Compile Include="Areas\EducationalAdministration\Controllers\TeachingMaterialController.cs" />
  612. <Compile Include="Areas\EducationalAdministration\Controllers\TMPlanController.cs" />
  613. <Compile Include="Areas\EducationalAdministration\Controllers\TMOrderController.cs" />
  614. <Compile Include="Areas\EducationalAdministration\Controllers\TMODetailController.cs" />
  615. <Compile Include="Areas\EducationalAdministration\Controllers\TMInController.cs" />
  616. <Compile Include="Areas\EducationalAdministration\Controllers\TMIDetailController.cs" />
  617. <Compile Include="Areas\EducationalAdministration\Controllers\TMOutController.cs" />
  618. <Compile Include="Areas\EducationalAdministration\Controllers\TMOutDetailController.cs" />
  619. <Compile Include="Areas\EducationalAdministration\Controllers\ClassAssessmentController.cs" />
  620. <Compile Include="Areas\EducationalAdministration\Controllers\InternshipPlanPostController.cs" />
  621. <Compile Include="Areas\EducationalAdministration\Controllers\InternShipSignUpController.cs" />
  622. <Compile Include="Areas\EducationalAdministration\Controllers\InternShipLogController.cs" />
  623. <Compile Include="Areas\EducationalAdministration\Controllers\InternShipSummaryController.cs" />
  624. <Compile Include="Areas\EducationalAdministration\Controllers\InternshipAchievementController.cs" />
  625. <Compile Include="Areas\EducationalAdministration\Controllers\InternshipExcellentController.cs" />
  626. <Compile Include="Areas\PersonnelManagement\Controllers\DutyScheduleController.cs" />
  627. <Compile Include="Areas\PersonnelManagement\Controllers\PartyMemberController.cs" />
  628. <Compile Include="Areas\PersonnelManagement\Controllers\PMLearnArrangementController.cs" />
  629. <Compile Include="Areas\EducationalAdministration\Controllers\InformationSectionController.cs" />
  630. <Compile Include="Areas\EducationalAdministration\Controllers\SealManagerController.cs" />
  631. <Compile Include="Areas\PersonnelManagement\Controllers\OfficialSealManagerController.cs" />
  632. <Compile Include="Areas\PersonnelManagement\Controllers\ConferenceRoomController.cs" />
  633. <Compile Include="Areas\PersonnelManagement\Controllers\ActivityVenueController.cs" />
  634. <Compile Include="Areas\PersonnelManagement\Controllers\VenhicleManageController.cs" />
  635. <Compile Include="Areas\EducationalAdministration\Controllers\HomeWorkController.cs" />
  636. <Compile Include="Areas\EducationalAdministration\Controllers\LeaveSchoolController.cs" />
  637. <Compile Include="Areas\LR_Desktop\Controllers\LoginModelController.cs" />
  638. <Compile Include="Areas\EducationalAdministration\Controllers\StuMailController.cs" />
  639. <Compile Include="Areas\PersonnelManagement\Controllers\ActivityScheduleController.cs" />
  640. <Compile Include="Areas\PersonnelManagement\Controllers\ClassWorkController.cs" />
  641. <Compile Include="Areas\PersonnelManagement\Controllers\EmpRepairController.cs" />
  642. <Compile Include="Areas\PersonnelManagement\Controllers\PMOrganizationController.cs" />
  643. <Compile Include="Areas\PersonnelManagement\Controllers\PMCadreController.cs" />
  644. <Compile Include="Areas\PersonnelManagement\Controllers\PMMembershipController.cs" />
  645. <Compile Include="Areas\PersonnelManagement\Controllers\PMLifeController.cs" />
  646. <Compile Include="Areas\PersonnelManagement\Controllers\PMDuesController.cs" />
  647. <Compile Include="Areas\PersonnelManagement\Controllers\SRProjectController.cs" />
  648. <Compile Include="Areas\PersonnelManagement\Controllers\SRWorkController.cs" />
  649. <Compile Include="Areas\PersonnelManagement\Controllers\SRPaperController.cs" />
  650. <Compile Include="Areas\PersonnelManagement\Controllers\SRConferenceController.cs" />
  651. <Compile Include="Areas\PersonnelManagement\Controllers\SRAppraisalController.cs" />
  652. <Compile Include="Areas\EducationalAdministration\Controllers\StuCancelExamController.cs" />
  653. <Compile Include="Areas\PersonnelManagement\Controllers\LeagueActivityController.cs" />
  654. <Compile Include="Areas\PersonnelManagement\Controllers\LeagueMemberChangeController.cs" />
  655. <Compile Include="Areas\PersonnelManagement\Controllers\LeagueMemberController.cs" />
  656. <Compile Include="Areas\PersonnelManagement\Controllers\CommunityInfoController.cs" />
  657. <Compile Include="Areas\PersonnelManagement\Controllers\CommunityMemberController.cs" />
  658. <Compile Include="Areas\PersonnelManagement\Controllers\CommunityAttendanceController.cs" />
  659. <Compile Include="Areas\EducationalAdministration\Controllers\StuConsumptionController.cs" />
  660. <Compile Include="Areas\PersonnelManagement\Controllers\EpidemicSituationController.cs" />
  661. <Compile Include="Areas\PersonnelManagement\Controllers\ContactsDetailsController.cs" />
  662. <Compile Include="Areas\EducationalAdministration\Controllers\ArrangeLessonButtController.cs" />
  663. <Compile Include="Areas\PersonnelManagement\Controllers\TeacherRecruitPlanController.cs" />
  664. <Compile Include="Areas\PersonnelManagement\Controllers\TeacherCancelEmployController.cs" />
  665. <Compile Include="Areas\PersonnelManagement\Controllers\TeacherJobAssessmentController.cs" />
  666. <Compile Include="Areas\PersonnelManagement\Controllers\TeacherPartTimeJobController.cs" />
  667. <Compile Include="Areas\PersonnelManagement\Controllers\TeacherEncourgementController.cs" />
  668. <Compile Include="Areas\PersonnelManagement\Controllers\TeacherChangeController.cs" />
  669. <Compile Include="Areas\PersonnelManagement\Controllers\EpiPassPlaceController.cs" />
  670. <Compile Include="Areas\PersonnelManagement\Controllers\EpiPeopleDetailsController.cs" />
  671. <Compile Include="Areas\PersonnelManagement\Controllers\LaborUnionPlanController.cs" />
  672. <Compile Include="Areas\PersonnelManagement\Controllers\SchoolWomenManagementController.cs" />
  673. <Compile Include="Areas\LR_Desktop\Controllers\ThematicManagementController.cs" />
  674. <Compile Include="Areas\LR_Desktop\Controllers\DTTitleController.cs" />
  675. <Compile Include="Areas\LogisticsManagement\Controllers\BC_EmpViolationRecordController.cs" />
  676. <Compile Include="Areas\LogisticsManagement\Controllers\BC_SecurityManagementController.cs" />
  677. <Compile Include="Areas\LogisticsManagement\Controllers\BC_BlacklistController.cs" />
  678. <Compile Include="Areas\LogisticsManagement\Controllers\BC_GreenAndCleanController.cs" />
  679. <Compile Include="Areas\LogisticsManagement\Controllers\BC_ShopManagementController.cs" />
  680. <Compile Include="Areas\LogisticsManagement\Controllers\BC_ShopGoodsController.cs" />
  681. <Compile Include="Areas\LogisticsManagement\Controllers\BC_ShopPurchaseRecordController.cs" />
  682. <Compile Include="Areas\LogisticsManagement\Controllers\BC_ShopSaleRecordController.cs" />
  683. <Compile Include="Areas\LogisticsManagement\Controllers\BC_HotelManagementController.cs" />
  684. <Compile Include="Areas\LogisticsManagement\Controllers\BC_RestaurantManagementController.cs" />
  685. <Compile Include="Areas\LogisticsManagement\Controllers\BC_RecipesMangementController.cs" />
  686. <Compile Include="Areas\LogisticsManagement\Controllers\BC_IngredientsController.cs" />
  687. <Compile Include="Areas\LogisticsManagement\Controllers\BC_RegisterInController.cs" />
  688. <Compile Include="Areas\LogisticsManagement\Controllers\BC_RegisterOutController.cs" />
  689. <Compile Include="Areas\LogisticsManagement\Controllers\BC_ISPManagementController.cs" />
  690. <Compile Include="Areas\LogisticsManagement\Controllers\BC_ISPShowController.cs" />
  691. <Compile Include="Areas\PersonnelManagement\Controllers\PartyMemberEncouragementController.cs" />
  692. <Compile Include="Areas\PersonnelManagement\Controllers\PartyMemberPunishmentController.cs" />
  693. <Compile Include="Areas\PersonnelManagement\Controllers\PMMembershipChangeController.cs" />
  694. <Compile Include="Areas\PersonnelManagement\Controllers\PartyMemberTrainController.cs" />
  695. <Compile Include="Areas\PersonnelManagement\Controllers\LeagueMemberDuesController.cs" />
  696. <Compile Include="Areas\PersonnelManagement\Controllers\LeagueMemberEncouragementController.cs" />
  697. <Compile Include="Areas\PersonnelManagement\Controllers\LeagueMemberPunishmentController.cs" />
  698. <Compile Include="Areas\PersonnelManagement\Controllers\LeagueMemberTrainController.cs" />
  699. <Compile Include="Areas\PersonnelManagement\Controllers\VolunteerActivityController.cs" />
  700. <Compile Include="Areas\PersonnelManagement\Controllers\LaborUnionOrganizationController.cs" />
  701. <Compile Include="Areas\PersonnelManagement\Controllers\LaborUnionMemberController.cs" />
  702. <Compile Include="Areas\PersonnelManagement\Controllers\LaborUnionMemberEncouragementController.cs" />
  703. <Compile Include="Areas\PersonnelManagement\Controllers\LaborUnionFeesIncomeController.cs" />
  704. <Compile Include="Areas\PersonnelManagement\Controllers\LaborUnionFeesExpendController.cs" />
  705. <Compile Include="Areas\PersonnelManagement\Controllers\LaborUnionWelfareController.cs" />
  706. <Compile Include="Areas\PersonnelManagement\Controllers\LaborUnionWelfareApplyController.cs" />
  707. <Compile Include="Areas\PersonnelManagement\Controllers\LaborUnionActivityController.cs" />
  708. <Compile Include="Areas\PersonnelManagement\Controllers\WorkStudyPositionController.cs" />
  709. <Compile Include="Areas\PersonnelManagement\Controllers\WorkStudyPositionApplyController.cs" />
  710. <Compile Include="Areas\PersonnelManagement\Controllers\WorkStudyPayMoneyController.cs" />
  711. <Compile Include="Areas\PersonnelManagement\Controllers\ScholarshipManagementController.cs" />
  712. <Compile Include="Areas\PersonnelManagement\Controllers\FundManagementController.cs" />
  713. <Compile Include="Areas\PersonnelManagement\Controllers\BC_PublishManagementController.cs" />
  714. <Compile Include="Areas\PersonnelManagement\Controllers\BC_PopQuizController.cs" />
  715. <Compile Include="Areas\PersonnelManagement\Controllers\BC_ElectronicMaterialMangementController.cs" />
  716. <Compile Include="Areas\PersonnelManagement\Controllers\BC_MicroClassSystemController.cs" />
  717. <Compile Include="Areas\PersonnelManagement\Controllers\BC_MindMappingController.cs" />
  718. <Compile Include="Areas\PersonnelManagement\Controllers\BC_DiscussionResultsController.cs" />
  719. <Compile Include="Areas\PersonnelManagement\Controllers\BC_EvaluationInformationController.cs" />
  720. <Compile Include="Areas\PersonnelManagement\Controllers\BC_ExcellentCourseController.cs" />
  721. <Compile Include="Areas\PersonnelManagement\Controllers\BC_PracticeTemplateController.cs" />
  722. <Compile Include="Areas\PersonnelManagement\Controllers\BC_InternshipFileController.cs" />
  723. <Compile Include="Areas\PersonnelManagement\Controllers\BC_EffectEvaluationController.cs" />
  724. <Compile Include="Areas\EducationalAdministration\Controllers\StuMoralEducationController.cs" />
  725. <Compile Include="Areas\EducationalAdministration\Controllers\InsuranceHandleController.cs" />
  726. <Compile Include="Areas\EducationalAdministration\Controllers\InsuranceClaimController.cs" />
  727. <Compile Include="Areas\PersonnelManagement\Controllers\BC_CostManagementController.cs" />
  728. <Compile Include="Areas\PersonnelManagement\Controllers\BC_ExaminationController.cs" />
  729. <Compile Include="Areas\PersonnelManagement\Controllers\BC_TrainingApplicationController.cs" />
  730. <Compile Include="Areas\PersonnelManagement\Controllers\BC_StudentEnrolmentController.cs" />
  731. <Compile Include="Areas\EducationalAdministration\Controllers\MoralEducationSetController.cs" />
  732. <Compile Include="Areas\EducationalAdministration\Controllers\ClassMoralEducationController.cs" />
  733. <Compile Include="Areas\EducationalAdministration\Controllers\ClassDataHandInController.cs" />
  734. <Compile Include="Areas\PersonnelManagement\Controllers\CommunityActivityController.cs" />
  735. <Compile Include="Areas\PersonnelManagement\Controllers\CommunityMemberEncouragementController.cs" />
  736. <Compile Include="Areas\PersonnelManagement\Controllers\SRProjectApplyController.cs" />
  737. <Compile Include="Areas\PersonnelManagement\Controllers\SRProjectSetUpController.cs" />
  738. <Compile Include="Areas\PersonnelManagement\Controllers\SRFeesIncomeController.cs" />
  739. <Compile Include="Areas\PersonnelManagement\Controllers\SRFeesExpendController.cs" />
  740. <Compile Include="Areas\PersonnelManagement\Controllers\SRProcessController.cs" />
  741. <Compile Include="Areas\PersonnelManagement\Controllers\SRFinalController.cs" />
  742. <Compile Include="Areas\PersonnelManagement\Controllers\SRAchievementController.cs" />
  743. <Compile Include="Areas\PersonnelManagement\Controllers\SRWinningController.cs" />
  744. <Compile Include="Areas\PersonnelManagement\Controllers\SRWorkloadController.cs" />
  745. <Compile Include="Areas\PersonnelManagement\Controllers\SREncouragementController.cs" />
  746. <Compile Include="Areas\PersonnelManagement\Controllers\SRDocumentController.cs" />
  747. <Compile Include="Areas\PersonnelManagement\Controllers\MeetingManagementController.cs" />
  748. <Compile Include="Areas\PersonnelManagement\Controllers\TeacherPassportController.cs" />
  749. <Compile Include="Areas\PersonnelManagement\Controllers\TeacherGoAbroadController.cs" />
  750. <Compile Include="Areas\PersonnelManagement\Controllers\Sal_SalaryTemplateController.cs" />
  751. <Compile Include="Areas\PersonnelManagement\Controllers\Sal_SalaryTemplateItemController.cs" />
  752. <Compile Include="Areas\PersonnelManagement\Controllers\Sal_UserSalaryController.cs" />
  753. <Compile Include="Areas\PersonnelManagement\Controllers\Sal_UserSalaryItemController.cs" />
  754. <Compile Include="Areas\EducationalAdministration\Controllers\PM_EducationExperienceController.cs" />
  755. <Compile Include="Areas\EducationalAdministration\Controllers\PM_TechnicalPostController.cs" />
  756. <Compile Include="Areas\EducationalAdministration\Controllers\PM_WorkerTechnologyController.cs" />
  757. <Compile Include="Areas\EducationalAdministration\Controllers\PM_ResumeController.cs" />
  758. <Compile Include="Areas\EducationalAdministration\Controllers\PM_FamilySituationController.cs" />
  759. <Compile Include="Areas\EducationalAdministration\Controllers\ThermographyController.cs" />
  760. <Compile Include="Areas\AdmissionsPlatform\Controllers\AP_OnlineUserInfoController.cs" />
  761. <Compile Include="Areas\AdmissionsPlatform\Controllers\AP_OnlineStudentInfoController.cs" />
  762. <Compile Include="Areas\PersonnelManagement\Controllers\TeacherPunishmentController.cs" />
  763. <Compile Include="Areas\PersonnelManagement\Controllers\ContractCategoryController.cs" />
  764. <Compile Include="Areas\PersonnelManagement\Controllers\ContractManagementController.cs" />
  765. <Compile Include="Areas\EducationalAdministration\Controllers\SignUpAboutOnlineController.cs" />
  766. <Compile Include="Areas\EducationalAdministration\Controllers\SignUpAboutTrainController.cs" />
  767. <Compile Include="Areas\EducationalAdministration\Controllers\StuInfoBasicTwoController.cs" />
  768. <Compile Include="Areas\StudentWork\Controllers\SW_Ask_TypeController.cs" />
  769. <Compile Include="Areas\LogisticsManagement\Controllers\APStuHealthRecordsController.cs" />
  770. <Compile Include="Areas\LogisticsManagement\Controllers\MSRMilitaryServiceRegistrationController.cs" />
  771. <Compile Include="Areas\LogisticsManagement\Controllers\MSRIntentionManagementController.cs" />
  772. <Compile Include="Areas\LogisticsManagement\Controllers\MSRMilitaryRecordController.cs" />
  773. <Compile Include="Areas\EducationalAdministration\Controllers\StuInfoGraduateController.cs" />
  774. <Compile Include="Areas\LogisticsManagement\Controllers\ListenClassRecordController.cs" />
  775. <Compile Include="Areas\StudentWork\Controllers\SW_HolidayGoController.cs" />
  776. <Compile Include="Areas\StudentWork\Controllers\SW_Ask_NotHaveAllController.cs" />
  777. <Compile Include="Areas\StudentWork\Controllers\SW_Ask_NotHaveAll_TypeController.cs" />
  778. <Compile Include="Areas\AdmissionsPlatform\Controllers\AP_IntegralSetController.cs" />
  779. <Compile Include="Areas\AdmissionsPlatform\Controllers\AP_IntegralDetailsController.cs" />
  780. <Compile Include="Areas\AdmissionsPlatform\Controllers\AP_TeacherBankCardController.cs" />
  781. <Compile Include="Areas\AdmissionsPlatform\Controllers\AP_CompanyPaymentAccountController.cs" />
  782. <Compile Include="Areas\EducationalAdministration\Controllers\BCdCultureDegreeController.cs" />
  783. <Compile Include="Areas\LogisticsManagement\Controllers\EditonManagementController.cs" />
  784. <Compile Include="Areas\EducationalAdministration\Controllers\StuEnrollAmountRecordController.cs" />
  785. <Compile Include="Areas\LogisticsManagement\Controllers\AQ_XJController.cs" />
  786. <Compile Include="Areas\LogisticsManagement\Controllers\AJ_FYController.cs" />
  787. <Compile Include="Areas\LogisticsManagement\Controllers\SupportManagementController.cs" />
  788. <Compile Include="Areas\EducationalAdministration\Controllers\PBPostController.cs" />
  789. <Compile Include="Areas\PersonnelManagement\Controllers\PMMeetingController.cs" />
  790. <Compile Include="Areas\PersonnelManagement\Controllers\PMActivistsController.cs" />
  791. <Compile Include="Areas\LogisticsManagement\Controllers\Acc_CleanManagementController.cs" />
  792. <Compile Include="Areas\LogisticsManagement\Controllers\Acc_RewardController.cs" />
  793. <Compile Include="Areas\LogisticsManagement\Controllers\Acc_PunishmentController.cs" />
  794. <Compile Include="Areas\LogisticsManagement\Controllers\Acc_GoodsDemageController.cs" />
  795. <Compile Include="Areas\EducationalAdministration\Controllers\StuInfoFreshSusController.cs" />
  796. <Compile Include="Areas\EducationalAdministration\Controllers\BC_JobRequirementController.cs" />
  797. <Compile Include="Areas\EducationalAdministration\Controllers\BC_PersonnelRequiementController.cs" />
  798. <Compile Include="Areas\EducationalAdministration\Controllers\BC_TrainingLectureController.cs" />
  799. <Compile Include="Areas\EducationalAdministration\Controllers\BC_SupplyAndDemandMettingController.cs" />
  800. <Compile Include="Areas\EducationalAdministration\Controllers\BC_SpecialDestinationController.cs" />
  801. <Compile Include="Areas\EducationalAdministration\Controllers\BC_EPIController.cs" />
  802. <Compile Include="Areas\LogisticsManagement\Controllers\ADR_RecordController.cs" />
  803. <Compile Include="Startup1.cs" />
  804. <Compile Include="Areas\EducationalAdministration\Controllers\ADR_DeviceController.cs" />
  805. <Compile Include="Areas\EducationalAdministration\Controllers\ADR_DeviceLogController.cs" />
  806. <Compile Include="Areas\PersonnelManagement\Controllers\ADR_RestrictionController.cs" />
  807. <Compile Include="Areas\PersonnelManagement\Controllers\ADR_AddApplyController.cs" />
  808. <Compile Include="Areas\AssetManagementSystem\Controllers\Ass_AcceptanceController.cs" />
  809. <Compile Include="Areas\EducationalAdministration\Controllers\LoginUserBindController.cs" />
  810. <Compile Include="Areas\EducationalAdministration\Controllers\Sys_InformationPushController.cs" />
  811. <Compile Include="Areas\EducationalAdministration\Controllers\StuLeaveManagementController.cs" />
  812. <Compile Include="Areas\EducationalAdministration\Controllers\EATalentTrainController.cs" />
  813. <Compile Include="Areas\EducationalAdministration\Controllers\Sys_DefaultPwdConfigController.cs" />
  814. <Compile Include="Areas\PersonnelManagement\Controllers\MeetingSignInRecordController.cs" />
  815. <Compile Include="Areas\PersonnelManagement\Controllers\MeetingMinutesController.cs" />
  816. <Compile Include="Areas\PersonnelManagement\Controllers\ResearchGERController.cs" />
  817. <Compile Include="Areas\PersonnelManagement\Controllers\ReleaseMettingController.cs" />
  818. <Compile Include="Areas\PersonnelManagement\Controllers\StudyGuideController.cs" />
  819. <Compile Include="Areas\PersonnelManagement\Controllers\ResourceImportController.cs" />
  820. <Compile Include="Areas\LR_Desktop\Controllers\SSO_Drag_CollectManageController.cs" />
  821. <Compile Include="Areas\CustomFunction\Controllers\SRProjectLevelController.cs" />
  822. <Compile Include="Areas\CustomFunction\Controllers\SRProjectTypeController.cs" />
  823. <Compile Include="Areas\CustomFunction\Controllers\SRProjectPlanController.cs" />
  824. <Compile Include="Areas\CustomFunction\Controllers\SRProjectWorkController.cs" />
  825. <Compile Include="Areas\EducationalAdministration\Controllers\DispatchController.cs" />
  826. <Compile Include="Areas\EducationalAdministration\Controllers\StuScholarshipManageController.cs" />
  827. <Compile Include="Areas\EducationalAdministration\Controllers\StuSubsideManageController.cs" />
  828. <Compile Include="Areas\EducationalAdministration\Controllers\DispatchAuditController.cs" />
  829. <Compile Include="Areas\CustomFunction\Controllers\SRProjectBasicController.cs" />
  830. <Compile Include="Areas\CustomFunction\Controllers\SRProjectPeopleController.cs" />
  831. <Compile Include="Areas\CustomFunction\Controllers\SRProjectAchievementController.cs" />
  832. <Compile Include="Areas\CustomFunction\Controllers\PaperManageController.cs" />
  833. <Compile Include="Areas\CustomFunction\Controllers\FundsTypeManageController.cs" />
  834. <Compile Include="Areas\CustomFunction\Controllers\FundsManageMainController.cs" />
  835. <Compile Include="Areas\CustomFunction\Controllers\FundsManageChildController.cs" />
  836. <Compile Include="Areas\CustomFunction\Controllers\ExpendedManageMainController.cs" />
  837. <Compile Include="Areas\CustomFunction\Controllers\ExpendedManageChildController.cs" />
  838. <Compile Include="Areas\CustomFunction\Controllers\SRAchievementsController.cs" />
  839. </ItemGroup>
  840. <ItemGroup>
  841. <Content Include="Areas\AdmissionsPlatform\Views\AP_OnlineUserInfo\DropOutIndex.js" />
  842. <Content Include="Areas\AdmissionsPlatform\Views\AP_OnlineUserInfo\PaymentIndex.js" />
  843. <Content Include="Areas\AdmissionsPlatform\Views\AP_OnlineUserInfo\RegistrateForm.js" />
  844. <Content Include="Areas\AdmissionsPlatform\Views\AP_OnlineUserInfo\ReportForm.js" />
  845. <Content Include="Areas\AdmissionsPlatform\Views\AP_OnlineUserInfo\PaymentForm.js" />
  846. <Content Include="Areas\AdmissionsPlatform\Views\AP_OnlineUserInfo\BindTeacherForm.js" />
  847. <Content Include="Areas\AdmissionsPlatform\Views\AP_OnlineUserInfo\RegistrateIndex.js" />
  848. <Content Include="Areas\AdmissionsPlatform\Views\AP_OnlineUserInfo\ReportIndex.js" />
  849. <Content Include="Areas\AppManager\Views\DTImg\Form.css" />
  850. <Content Include="Areas\AppManager\Views\DTImg\Form.js" />
  851. <Content Include="Areas\AppManager\Views\DTImg\Index.js" />
  852. <Content Include="Areas\AppManager\Views\FunctionManager\Form.css" />
  853. <Content Include="Areas\AppManager\Views\FunctionManager\Form.js" />
  854. <Content Include="Areas\AppManager\Views\FunctionManager\Index.js" />
  855. <Content Include="Areas\Ask\Views\Ask_MainOfTeacher\AnswerIndex.js" />
  856. <Content Include="Areas\Ask\Views\Ask_MainOfTeacher\AnswerQuery.js" />
  857. <Content Include="Areas\Ask\Views\Ask_MainOfTeacher\Form.js" />
  858. <Content Include="Areas\Ask\Views\Ask_MainOfTeacher\Index.js" />
  859. <Content Include="Areas\Ask\Views\Ask_MainOfTeacher\Paper.js" />
  860. <Content Include="Areas\Ask\Views\Ask_MainOfTeacher\PaperAdminView.js" />
  861. <Content Include="Areas\Ask\Views\Ask_MainOfTeacher\PaperView.js" />
  862. <Content Include="Areas\Ask\Views\Ask_MainOfTeacher\TeacherIndex.js" />
  863. <Content Include="Areas\Ask\Views\Ask_Question\AnalysisIndex.js" />
  864. <Content Include="Areas\AssetManagementSystem\Views\Allocation\Form.js" />
  865. <Content Include="Areas\AssetManagementSystem\Views\Allocation\Index.js" />
  866. <Content Include="Areas\AssetManagementSystem\Views\AssReport\AssAddReport.js" />
  867. <Content Include="Areas\AssetManagementSystem\Views\AssReport\AssStatusReport.js" />
  868. <Content Include="Areas\AssetManagementSystem\Views\AssReport\AssTypeReport.js" />
  869. <Content Include="Areas\AssetManagementSystem\Views\AssScrap\Form.js" />
  870. <Content Include="Areas\AssetManagementSystem\Views\AssScrap\FormView.js" />
  871. <Content Include="Areas\AssetManagementSystem\Views\AssScrap\Index.js" />
  872. <Content Include="Areas\AssetManagementSystem\Views\Ass_Acceptance\ViewForm.js" />
  873. <Content Include="Areas\AssetManagementSystem\Views\Ass_AllocationItem\Form.js" />
  874. <Content Include="Areas\AssetManagementSystem\Views\Ass_AllocationItem\Index.js" />
  875. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsChangeItem\Form.js" />
  876. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsChangeItem\Index.js" />
  877. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsChange\Form.js" />
  878. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsChange\Index.js" />
  879. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoApply\Form.js" />
  880. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoApply\FormJY.js" />
  881. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoApply\FormJYHC.js" />
  882. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoApply\FormPurchase.js" />
  883. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoApply\FormPurchaseJY.js" />
  884. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoApply\FormView.js" />
  885. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoApply\FormViewJY.js" />
  886. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoApply\Index.js" />
  887. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoApply\IndexJY.js" />
  888. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoApply\IndexJYHC.js" />
  889. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoItemApply\Form.js" />
  890. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoItemApply\FormPurchase.js" />
  891. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoItemApply\Index.js" />
  892. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoItem\Form.js" />
  893. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoItem\FormView.js" />
  894. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoItem\Index.js" />
  895. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoItem\IndexOfMy.js" />
  896. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoItem\IndexScrap.js" />
  897. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoItem\IndexTwo.js" />
  898. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfo\Form.js" />
  899. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfo\Index.js" />
  900. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsOutApplyIncomplete\Form.js" />
  901. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsOutApplyIncomplete\FormItem.js" />
  902. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsOutApplyIncomplete\Index.js" />
  903. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsOutApply\Form.js" />
  904. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsOutApply\FormView.js" />
  905. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsOutApply\Index.js" />
  906. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsOutItemApply\Form.js" />
  907. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsOutItemApply\Index.js" />
  908. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsType\Form.js" />
  909. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsType\Index.js" />
  910. <Content Include="Areas\AssetManagementSystem\Views\Ass_InventoryItemApply\Form.js" />
  911. <Content Include="Areas\AssetManagementSystem\Views\Ass_InventoryItemApply\Index.js" />
  912. <Content Include="Areas\AssetManagementSystem\Views\Ass_Inventory\Form.js" />
  913. <Content Include="Areas\AssetManagementSystem\Views\Ass_Inventory\FormView.js" />
  914. <Content Include="Areas\AssetManagementSystem\Views\Ass_Inventory\Index.js" />
  915. <Content Include="Areas\AssetManagementSystem\Views\Ass_PurchaseApply\Form.js" />
  916. <Content Include="Areas\AssetManagementSystem\Views\Ass_PurchaseApply\FormView.js" />
  917. <Content Include="Areas\AssetManagementSystem\Views\Ass_PurchaseApply\Index.js" />
  918. <Content Include="Areas\AssetManagementSystem\Views\Ass_PurchaseItemApply\Form.js" />
  919. <Content Include="Areas\AssetManagementSystem\Views\Ass_PurchaseItemApply\Index.js" />
  920. <Content Include="Areas\AssetManagementSystem\Views\Ass_PurchaseItem\Form.js" />
  921. <Content Include="Areas\AssetManagementSystem\Views\Ass_PurchaseItem\Index.js" />
  922. <Content Include="Areas\AssetManagementSystem\Views\Ass_Purchase\Form.js" />
  923. <Content Include="Areas\AssetManagementSystem\Views\Ass_Purchase\FormView.js" />
  924. <Content Include="Areas\AssetManagementSystem\Views\Ass_Purchase\Index.js" />
  925. <Content Include="Areas\AssetManagementSystem\Views\Ass_Purchase\StartForm.js" />
  926. <Content Include="Areas\AssetManagementSystem\Views\Ass_ReceiveItem\Form.js" />
  927. <Content Include="Areas\AssetManagementSystem\Views\Ass_ReceiveItem\Index.js" />
  928. <Content Include="Areas\AssetManagementSystem\Views\Ass_Receive\FormView.js" />
  929. <Content Include="Areas\AssetManagementSystem\Views\Ass_Receive\Form.js" />
  930. <Content Include="Areas\AssetManagementSystem\Views\Ass_Receive\Index.js" />
  931. <Content Include="Areas\AssetManagementSystem\Views\Ass_Recycle\Form.js" />
  932. <Content Include="Areas\AssetManagementSystem\Views\Ass_Recycle\Index.js" />
  933. <Content Include="Areas\AssetManagementSystem\Views\Ass_RepairItem\Form.js" />
  934. <Content Include="Areas\AssetManagementSystem\Views\Ass_RepairItem\Index.js" />
  935. <Content Include="Areas\AssetManagementSystem\Views\Ass_Repair\Form.js" />
  936. <Content Include="Areas\AssetManagementSystem\Views\Ass_Repair\FormView.js" />
  937. <Content Include="Areas\AssetManagementSystem\Views\Ass_Repair\Index.js" />
  938. <Content Include="Areas\AssetManagementSystem\Views\Ass_ScrapItem\Form.js" />
  939. <Content Include="Areas\AssetManagementSystem\Views\Ass_ScrapItem\Index.js" />
  940. <Content Include="Areas\AssetManagementSystem\Views\Ass_Storage\Form.js" />
  941. <Content Include="Areas\AssetManagementSystem\Views\Ass_Storage\Index.js" />
  942. <Content Include="Areas\AssetManagementSystem\Views\Ass_Supplier\Form.js" />
  943. <Content Include="Areas\AssetManagementSystem\Views\Ass_Supplier\Index.js" />
  944. <Content Include="Areas\AssetManagementSystem\Views\Ass_UserChangeInfo\Form.js" />
  945. <Content Include="Areas\AssetManagementSystem\Views\Ass_UserChangeInfo\Index.js" />
  946. <Content Include="Areas\AssetManagementSystem\Views\Ass_Warning\Form.js" />
  947. <Content Include="Areas\AssetManagementSystem\Views\Ass_Warning\Index.js" />
  948. <Content Include="Areas\CustomFunction\Views\ExpendedManageMain\IndexStatistics.js" />
  949. <Content Include="Areas\CustomFunction\Views\ExpendedManageMain\IndexCheck.js" />
  950. <Content Include="Areas\CustomFunction\Views\FundsManageMain\IndexStatistics.js" />
  951. <Content Include="Areas\CustomFunction\Views\FundsManageMain\IndexCheck.js" />
  952. <Content Include="Areas\CustomFunction\Views\PaperManage\IndexReport.js" />
  953. <Content Include="Areas\CustomFunction\Views\SRAchievements\IndexStatisticsForPeople.js" />
  954. <Content Include="Areas\CustomFunction\Views\SRAchievements\IndexStatistics.js" />
  955. <Content Include="Areas\CustomFunction\Views\SRProjectAchievement\IndexYJ.js" />
  956. <Content Include="Areas\CustomFunction\Views\SRProjectBasic\FormNoCompleted.js" />
  957. <Content Include="Areas\CustomFunction\Views\SRProjectBasic\IndexNoCompleted.js" />
  958. <Content Include="Areas\CustomFunction\Views\SRProjectBasic\IndexCompleted.js" />
  959. <Content Include="Areas\CustomFunction\Views\SRProjectBasic\IndexTJ.js" />
  960. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonSync\Form.js" />
  961. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonSync\Index.js" />
  962. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonTermAttemper\Form.js" />
  963. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonTermAttemper\FormView.js" />
  964. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonTermAttemper\Index.js" />
  965. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonTermOfElective\EmptyByConditionForm.js" />
  966. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonTermOfElective\SyncByConditionForm.js" />
  967. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonTerm\ClearByConditionForm.js" />
  968. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonTerm\EmptyByConditionForm.js" />
  969. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonTerm\SyncByConditionForm.js" />
  970. <Content Include="Areas\EducationalAdministration\Views\CertificateManage\Form.js" />
  971. <Content Include="Areas\EducationalAdministration\Views\CertificateManage\Index.js" />
  972. <Content Include="Areas\EducationalAdministration\Views\CertificateResult\Form.js" />
  973. <Content Include="Areas\EducationalAdministration\Views\CertificateResult\Index.js" />
  974. <Content Include="Areas\EducationalAdministration\Views\ClassInfo\FormType.js" />
  975. <Content Include="Areas\EducationalAdministration\Views\Dispatch\ReadIndex.js" />
  976. <Content Include="Areas\EducationalAdministration\Views\Dispatch\SelectForm.css" />
  977. <Content Include="Areas\EducationalAdministration\Views\Dispatch\SelectForm.js" />
  978. <Content Include="Areas\EducationalAdministration\Views\Dispatch\ReadForm.js" />
  979. <Content Include="Areas\EducationalAdministration\Views\Dispatch\Form.js" />
  980. <Content Include="Areas\EducationalAdministration\Views\Dispatch\FormView.js" />
  981. <Content Include="Areas\EducationalAdministration\Views\Dispatch\Index.js" />
  982. <Content Include="Areas\EducationalAdministration\Views\Dispatch\IndexXF.cshtml" />
  983. <Content Include="Areas\EducationalAdministration\Views\Dispatch\IndexXF.js" />
  984. <Content Include="Areas\EducationalAdministration\Views\EADateArrange\InitByConditionForm.js" />
  985. <Content Include="Areas\EducationalAdministration\Views\EmpInfo\FormModify.js" />
  986. <Content Include="Areas\EducationalAdministration\Views\EmpInfo\FormEdit.js" />
  987. <Content Include="Areas\EducationalAdministration\Views\EmpInfo\ImportForm.css" />
  988. <Content Include="Areas\EducationalAdministration\Views\EmpInfo\ImportForm.js" />
  989. <Content Include="Areas\EducationalAdministration\Views\EmpInfo\IndexOfDC.js" />
  990. <Content Include="Areas\EducationalAdministration\Views\EmpInfo\Print.css" />
  991. <Content Include="Areas\EducationalAdministration\Views\EvaCodeOfContuct\Form.js" />
  992. <Content Include="Areas\EducationalAdministration\Views\EvaCodeOfContuct\Index.js" />
  993. <Content Include="Areas\EducationalAdministration\Views\EvaDormitoryInterior\Form.js" />
  994. <Content Include="Areas\EducationalAdministration\Views\EvaDormitoryInterior\Index.js" />
  995. <Content Include="Areas\EducationalAdministration\Views\EvaHygieve\Form.js" />
  996. <Content Include="Areas\EducationalAdministration\Views\EvaHygieve\Index.js" />
  997. <Content Include="Areas\EducationalAdministration\Views\EvaViolationOfDiscipline\Form.js" />
  998. <Content Include="Areas\EducationalAdministration\Views\EvaViolationOfDiscipline\Index.js" />
  999. <Content Include="Areas\EducationalAdministration\Views\FillinFrom\Form.js" />
  1000. <Content Include="Areas\EducationalAdministration\Views\FillinFrom\FormIndex.js" />
  1001. <Content Include="Areas\EducationalAdministration\Views\FillinFrom\FormPeople.js" />
  1002. <Content Include="Areas\EducationalAdministration\Views\FillinFrom\Index.js" />
  1003. <Content Include="Areas\EducationalAdministration\Views\JournalSend\FormOfDC.js" />
  1004. <Content Include="Areas\EducationalAdministration\Views\JournalSend\IndexOfDC.js" />
  1005. <Content Include="Areas\EducationalAdministration\Views\LeaveSchoolA\Form.js" />
  1006. <Content Include="Areas\EducationalAdministration\Views\LeaveSchoolA\Index.js" />
  1007. <Content Include="Areas\EducationalAdministration\Views\LessonInfo\FormNoMajor.js" />
  1008. <Content Include="Areas\EducationalAdministration\Views\LessonInfo\IndexNoMajor.js" />
  1009. <Content Include="Areas\EducationalAdministration\Views\LoginUserBind\Form.js" />
  1010. <Content Include="Areas\EducationalAdministration\Views\LoginUserBind\BindAccountIndex.js" />
  1011. <Content Include="Areas\EducationalAdministration\Views\PracticeBase\Form.js" />
  1012. <Content Include="Areas\EducationalAdministration\Views\PracticeBase\Index.js" />
  1013. <Content Include="Areas\EducationalAdministration\Views\R_EnterBuilding\ClassReport.js" />
  1014. <Content Include="Areas\EducationalAdministration\Views\R_EnterBuilding\DeptReport.js" />
  1015. <Content Include="Areas\EducationalAdministration\Views\R_EnterBuilding\Form.js" />
  1016. <Content Include="Areas\EducationalAdministration\Views\R_EnterBuilding\Index.js" />
  1017. <Content Include="Areas\EducationalAdministration\Views\R_EnterBuilding\MajorReport.js" />
  1018. <Content Include="Areas\EducationalAdministration\Views\R_EnterSchool\ClassReport.js" />
  1019. <Content Include="Areas\EducationalAdministration\Views\R_EnterSchool\MajorReport.js" />
  1020. <Content Include="Areas\EducationalAdministration\Views\R_EnterSchool\Form.js" />
  1021. <Content Include="Areas\EducationalAdministration\Views\R_EnterSchool\DeptReport.js" />
  1022. <Content Include="Areas\EducationalAdministration\Views\R_EnterSchool\Index.js" />
  1023. <Content Include="Areas\EducationalAdministration\Views\ScoreStatistics\Form.js" />
  1024. <Content Include="Areas\EducationalAdministration\Views\ScoreStatistics\Index.js" />
  1025. <Content Include="Areas\EducationalAdministration\Views\StuAttendanceLeave\IndexInStudent.js" />
  1026. <Content Include="Areas\EducationalAdministration\Views\StuAttendance\IndexOfUnrecord.js" />
  1027. <Content Include="Areas\EducationalAdministration\Views\StuAttendance\Index.js" />
  1028. <Content Include="Areas\EducationalAdministration\Views\StuCancelExam\Detail.js" />
  1029. <Content Include="Areas\EducationalAdministration\Views\StuConsumption\IndexForStudent.js" />
  1030. <Content Include="Areas\EducationalAdministration\Views\StuConsumption\IndexForTeacher.js" />
  1031. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\AmountForm.js" />
  1032. <Content Include="Areas\EducationalAdministration\Views\StuGrant\Form.js" />
  1033. <Content Include="Areas\EducationalAdministration\Views\StuGrant\Index.js" />
  1034. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasicChange\Form.js" />
  1035. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasicChange\FormView.js" />
  1036. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasicChange\Index.js" />
  1037. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasic\FormOfDC.js" />
  1038. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasic\Graduate.js" />
  1039. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasic\CreateGraduateNo.js" />
  1040. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasic\CreateGraduateNoForm.js" />
  1041. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasic\IndexOfDC.js" />
  1042. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasic\IndexInClass.js" />
  1043. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasic\MyClass.js" />
  1044. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasic\Print.css" />
  1045. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\AllocationClassDC.js" />
  1046. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\StatisticClassIndex.js" />
  1047. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\StatusView.js" />
  1048. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\OnsitePayForm.js" />
  1049. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\LoanForm.js" />
  1050. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\FormDC.js" />
  1051. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\SchoolUniform.js" />
  1052. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\IndexDC.js" />
  1053. <Content Include="Areas\EducationalAdministration\Views\StuInfoSemster\Form.js" />
  1054. <Content Include="Areas\EducationalAdministration\Views\StuInfoSemster\Index.js" />
  1055. <Content Include="Areas\EducationalAdministration\Views\StuLeaveManagement\CheckForm.js" />
  1056. <Content Include="Areas\EducationalAdministration\Views\StuLeaveManagement\CheckIndex.js" />
  1057. <Content Include="Areas\EducationalAdministration\Views\StuScoreNotPassTwo\InputScoreIndexInTeacher.js" />
  1058. <Content Include="Areas\EducationalAdministration\Views\StuScoreNotPassTwo\InputScoreIndex.js" />
  1059. <Content Include="Areas\EducationalAdministration\Views\StuScoreNotPassTwo\Monitor.js" />
  1060. <Content Include="Areas\EducationalAdministration\Views\StuScoreNotPass\Form.js" />
  1061. <Content Include="Areas\EducationalAdministration\Views\StuScoreNotPass\Index.js" />
  1062. <Content Include="Areas\EducationalAdministration\Views\StuScoreNotPass\InputScoreIndexInTeacher.js" />
  1063. <Content Include="Areas\EducationalAdministration\Views\StuScoreNotPass\InputScoreIndex.js" />
  1064. <Content Include="Areas\EducationalAdministration\Views\StuScoreNotPass\Monitor.js" />
  1065. <Content Include="Areas\EducationalAdministration\Views\StuScore\StuScoreQueryIndex.js" />
  1066. <Content Include="Areas\EducationalAdministration\Views\StuScore\InputScoreIndexOfElectiveInTeacher.js" />
  1067. <Content Include="Areas\EducationalAdministration\Views\StuScore\InputScoreIndexOfElective.js" />
  1068. <Content Include="Areas\EducationalAdministration\Views\StuScore\InputScoreIndexInTeacher.js" />
  1069. <Content Include="Areas\EducationalAdministration\Views\StuScore\GraduateScoreQueryAllIndex.js" />
  1070. <Content Include="Areas\EducationalAdministration\Views\StuScore\ScoreQueryAllIndexTeacher.js" />
  1071. <Content Include="Areas\EducationalAdministration\Views\StuScore\ScoreQueryAllIndex.js" />
  1072. <Content Include="Areas\EducationalAdministration\Views\StuSubsideManage\CheckForm.js" />
  1073. <Content Include="Areas\EducationalAdministration\Views\StuSubsideManage\CheckIndex.js" />
  1074. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveDocument\FormView.js" />
  1075. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveDocument\Form.cshtml" />
  1076. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveDocument\Form.js" />
  1077. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveDocument\Index.cshtml" />
  1078. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveDocument\Index.js" />
  1079. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveDocument\IssueForm.js" />
  1080. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveDocument\PrintView.js" />
  1081. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveDocument\ReadList.js" />
  1082. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveFile\FormParty.js" />
  1083. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveFile\FormReadDocument.js" />
  1084. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveFile\FormDocument.js" />
  1085. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveFile\Form.js" />
  1086. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveFile\IndexGWJS.js" />
  1087. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveFile\IndexParty.js" />
  1088. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveFile\IndexDocument.js" />
  1089. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveFile\Index.js" />
  1090. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveFile\SpecifyReceiverForm.js" />
  1091. <Content Include="Areas\EducationalAdministration\Views\Sys_SendFile\FormParty.js" />
  1092. <Content Include="Areas\EducationalAdministration\Views\Sys_SendFile\FormDocumentView.js" />
  1093. <Content Include="Areas\EducationalAdministration\Views\Sys_SendFile\FormDocument.js" />
  1094. <Content Include="Areas\EducationalAdministration\Views\Sys_SendFile\FormPartyView.js" />
  1095. <Content Include="Areas\EducationalAdministration\Views\Sys_SendFile\IndexParty.js" />
  1096. <Content Include="Areas\EducationalAdministration\Views\Sys_SendFile\IndexDocument.js" />
  1097. <Content Include="Areas\EducationalAdministration\Views\Sys_SendFile\IssueForm.js" />
  1098. <Content Include="Areas\EducationalAdministration\Views\Sys_SendFile\ReadListParty.js" />
  1099. <Content Include="Areas\EducationalAdministration\Views\Sys_SendFile\ReadListDocument.js" />
  1100. <Content Include="Areas\EducationalAdministration\Views\Thermography\IndexResult.js" />
  1101. <Content Include="Areas\EducationalAdministration\Views\Thermography\StatisticIndex.js" />
  1102. <Content Include="Areas\EducationalAdministration\Views\Thermography\SubmitIndex.js" />
  1103. <Content Include="Areas\EvaluationTeach\Views\Eval_Main\AnswerIndex.js" />
  1104. <Content Include="Areas\EvaluationTeach\Views\Eval_Main\TeacherIndex2.js" />
  1105. <Content Include="Areas\EvaluationTeach\Views\Eval_Main\TeacherIndex.js" />
  1106. <Content Include="Areas\EvaluationTeach\Views\Eval_Main\Form.js" />
  1107. <Content Include="Areas\EvaluationTeach\Views\Eval_Main\Index.js" />
  1108. <Content Include="Areas\EvaluationTeach\Views\Eval_Main\Paper.js" />
  1109. <Content Include="Areas\EvaluationTeach\Views\Eval_Main\PaperAdminView.js" />
  1110. <Content Include="Areas\EvaluationTeach\Views\Eval_Main\PaperView.js" />
  1111. <Content Include="Areas\EvaluationTeach\Views\Eval_Main\StudentIndex.js" />
  1112. <Content Include="Areas\EvaluationTeach\Views\Eval_QuestionItems\Form.js" />
  1113. <Content Include="Areas\EvaluationTeach\Views\Eval_QuestionItems\Index.js" />
  1114. <Content Include="Areas\EvaluationTeach\Views\Eval_Question\Form.js" />
  1115. <Content Include="Areas\EvaluationTeach\Views\Eval_Question\Index.js" />
  1116. <Content Include="Areas\Ask\Views\Ask_Main\PaperAdminView.js" />
  1117. <Content Include="Areas\Ask\Views\Ask_Main\PaperView.js" />
  1118. <Content Include="Areas\Ask\Views\Ask_Main\Paper.js" />
  1119. <Content Include="Areas\Ask\Views\Ask_Main\AnswerQuery.js" />
  1120. <Content Include="Areas\Ask\Views\Ask_Main\AnswerIndex.js" />
  1121. <Content Include="Areas\Ask\Views\Ask_Main\StudentIndex.js" />
  1122. <Content Include="Areas\EducationalAdministration\Views\ArrangeExamTerm\ExamIndexOfStudent.js" />
  1123. <Content Include="Areas\EducationalAdministration\Views\ArrangeExamTerm\ExamIndexOfTeacher.js" />
  1124. <Content Include="Areas\EducationalAdministration\Views\ArrangeExamTerm\ExamIndex.js" />
  1125. <Content Include="Areas\EducationalAdministration\Views\BookBorrow\Form.js" />
  1126. <Content Include="Areas\EducationalAdministration\Views\BookBorrow\Index.js" />
  1127. <Content Include="Areas\EducationalAdministration\Views\BookCard\Form.js" />
  1128. <Content Include="Areas\EducationalAdministration\Views\BookCard\Index.js" />
  1129. <Content Include="Areas\EducationalAdministration\Views\BookClass\Form.js" />
  1130. <Content Include="Areas\EducationalAdministration\Views\BookClass\Index.js" />
  1131. <Content Include="Areas\EducationalAdministration\Views\BookInfo\Form.js" />
  1132. <Content Include="Areas\EducationalAdministration\Views\BookInfo\Index.js" />
  1133. <Content Include="Areas\EducationalAdministration\Views\BookLocation\Form.js" />
  1134. <Content Include="Areas\EducationalAdministration\Views\BookLocation\Index.js" />
  1135. <Content Include="Areas\EducationalAdministration\Views\BookLose\Form.js" />
  1136. <Content Include="Areas\EducationalAdministration\Views\BookLose\Index.js" />
  1137. <Content Include="Areas\EducationalAdministration\Views\CdMajor\IndexOfElective.js" />
  1138. <Content Include="Areas\EducationalAdministration\Views\EmpInfo\FormView.js" />
  1139. <Content Include="Areas\EducationalAdministration\Views\JournalSend\FormView.js" />
  1140. <Content Include="Areas\EducationalAdministration\Views\LanMail\Index.js" />
  1141. <Content Include="Areas\EducationalAdministration\Views\OpenLessonPlanOfElective\ModifyForm.js" />
  1142. <Content Include="Areas\EducationalAdministration\Views\OpenLessonPlanOfElective\MergeIndex.js" />
  1143. <Content Include="Areas\EducationalAdministration\Views\OpenLessonPlanOfElective\StudentIndex.js" />
  1144. <Content Include="Areas\EducationalAdministration\Views\OpenLessonPlan\FormOfClass.js" />
  1145. <Content Include="Areas\EducationalAdministration\Views\OpenLessonPlan\Form.js" />
  1146. <Content Include="Areas\EducationalAdministration\Views\OpenLessonPlan\Index.js" />
  1147. <Content Include="Areas\EducationalAdministration\Views\Statistics\TeacherWorkload.js" />
  1148. <Content Include="Areas\EducationalAdministration\Views\StuAttendanceLeave\CheckForm.js" />
  1149. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\EnrollTypeForm.js" />
  1150. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\FormView.js" />
  1151. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\PayAfter.js" />
  1152. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\StudentStatus.js" />
  1153. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\NewAllocationBed.js" />
  1154. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\NewAllocationDormitory.js" />
  1155. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\AllocationDormitory.js" />
  1156. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\AllocationClass.js" />
  1157. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\CheckIn.js" />
  1158. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\MilitaryUrl.js" />
  1159. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\SubsidizeUrl.js" />
  1160. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\CheckInUrl.js" />
  1161. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\GetCloth.js" />
  1162. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\GetClothSize.js" />
  1163. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\GetArticles.js" />
  1164. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\IsPay.js" />
  1165. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\IsPhoto.js" />
  1166. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\LodopFuncs.js" />
  1167. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\Military.js" />
  1168. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\IsHelp.js" />
  1169. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\Report.js" />
  1170. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasic\FormView.js" />
  1171. <Content Include="Areas\EducationalAdministration\Views\StuInfoFreshOnlineService\AnswerForm.js" />
  1172. <Content Include="Areas\EducationalAdministration\Views\StuInfoFreshOnlineService\AnswerFormView.js" />
  1173. <Content Include="Areas\EducationalAdministration\Views\StuInfoFreshOnlineService\AnswerIndex.js" />
  1174. <Content Include="Areas\EducationalAdministration\Views\StuInfoFreshOnlineService\Form.js" />
  1175. <Content Include="Areas\EducationalAdministration\Views\StuInfoFreshOnlineService\FormView.js" />
  1176. <Content Include="Areas\EducationalAdministration\Views\StuInfoFreshOnlineService\Index.js" />
  1177. <Content Include="Areas\EducationalAdministration\Views\StuInfoFreshOnlineService\IndexList.js" />
  1178. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\AllocationBed.js" />
  1179. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\AllocationClass.js" />
  1180. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\AllocationDormitory.js" />
  1181. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\CollectFileIndex.js" />
  1182. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\ExportBedForm.js" />
  1183. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\ImportBedForm.js" />
  1184. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\FormOfStudent.js" />
  1185. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\Form.js" />
  1186. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\FormView.js" />
  1187. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\GetKeyIndex.js" />
  1188. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\StatisticsArea.js" />
  1189. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\StatisticIndex.js" />
  1190. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\Index.js" />
  1191. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\IndexOfStudent.js" />
  1192. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\PayFeeForm.js" />
  1193. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\PayFeeIndex.js" />
  1194. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\RegisterIndex.js" />
  1195. <Content Include="Areas\EducationalAdministration\Views\StuScore\ClassIndex.js" />
  1196. <Content Include="Areas\EducationalAdministration\Views\StuScore\InputScoreIndex.js" />
  1197. <Content Include="Areas\EducationalAdministration\Views\StuScore\ScoreInputCancelForm.js" />
  1198. <Content Include="Areas\EducationalAdministration\Views\StuScore\Monitor.js" />
  1199. <Content Include="Areas\EducationalAdministration\Views\StuScore\AllScoreQueryIndex.js" />
  1200. <Content Include="Areas\EducationalAdministration\Views\StuScore\ScoreInputCancelIndex.js" />
  1201. <Content Include="Areas\EducationalAdministration\Views\StuScore\ScoreQueryIndex.js" />
  1202. <Content Include="Areas\EducationalAdministration\Views\StuScore\ScoreStatisticAnalysis.js" />
  1203. <Content Include="Areas\EducationalAdministration\Views\StuSelectLessonListOfElectivePre\AuditForm.js" />
  1204. <Content Include="Areas\EducationalAdministration\Views\StuSelectLessonListOfElectivePre\AuditIndex.js" />
  1205. <Content Include="Areas\EducationalAdministration\Views\StuSelectLessonListOfElectivePre\FinishIndex.js" />
  1206. <Content Include="Areas\EducationalAdministration\Views\StuSelectLessonListOfElectivePre\Index.js" />
  1207. <Content Include="Areas\EducationalAdministration\Views\StuSelectLessonListOfElectivePre\QueryStuSelectResult.js" />
  1208. <Content Include="Areas\EducationalAdministration\Views\StuSelectLessonListOfElective\FinishIndex.js" />
  1209. <Content Include="Areas\EducationalAdministration\Views\StuSelectLessonListOfElective\AuditIndex.js" />
  1210. <Content Include="Areas\EducationalAdministration\Views\StuSelectLessonListOfElective\QueryStuSelectResult.js" />
  1211. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveComplaint\FormView.js" />
  1212. <Content Include="Areas\EducationalAdministration\Views\SYS_ReceiveMessage\FormCh.js" />
  1213. <Content Include="Areas\EducationalAdministration\Views\SYS_ReceiveMessage\FormView.js" />
  1214. <Content Include="Areas\EducationalAdministration\Views\Sys_SendComplaint\ReplyList.js" />
  1215. <Content Include="Areas\EducationalAdministration\Views\Sys_SendComplaint\FormListView.js" />
  1216. <Content Include="Areas\EducationalAdministration\Views\Sys_SendComplaint\FormList.js" />
  1217. <Content Include="Areas\EducationalAdministration\Views\Sys_SendComplaint\FormView.js" />
  1218. <Content Include="Areas\EducationalAdministration\Views\Sys_SendComplaint\IndexList.js" />
  1219. <Content Include="Areas\EducationalAdministration\Views\Sys_SendFile\FormView.js" />
  1220. <Content Include="Areas\EducationalAdministration\Views\Sys_SendFile\Index大同.js" />
  1221. <Content Include="Areas\EducationalAdministration\Views\Sys_SendFile\ReadList.js" />
  1222. <Content Include="Areas\EducationalAdministration\Views\SYS_SendMessage\FormView.js" />
  1223. <Content Include="Areas\EducationalAdministration\Views\TeachAttendance\Form.js" />
  1224. <Content Include="Areas\EducationalAdministration\Views\TeachAttendance\Index.js" />
  1225. <Content Include="Areas\EducationalAdministration\Views\TeachPlan\Form.js" />
  1226. <Content Include="Areas\EducationalAdministration\Views\TeachPlan\Index.js" />
  1227. <Content Include="Areas\EducationalAdministration\Views\TeachSwitch\Form.js" />
  1228. <Content Include="Areas\EducationalAdministration\Views\TeachSwitch\Index.js" />
  1229. <Content Include="Areas\LogisticsManagement\Views\Accommodation\Allocation.js" />
  1230. <Content Include="Areas\LogisticsManagement\Views\Accommodation\DormitoryAdd.js" />
  1231. <Content Include="Areas\LogisticsManagement\Views\ADR_Record\AttendanceReportByWeek.js" />
  1232. <Content Include="Areas\LogisticsManagement\Views\ADR_Record\StatisticDetailIndex.js" />
  1233. <Content Include="Areas\LogisticsManagement\Views\ADR_Record\StatisticIndex.js" />
  1234. <Content Include="Areas\LogisticsManagement\Views\APAppointmentPsychologist\Form.js" />
  1235. <Content Include="Areas\LogisticsManagement\Views\APAppointmentPsychologist\Index.js" />
  1236. <Content Include="Areas\LogisticsManagement\Views\CompanyNews\Form.js" />
  1237. <Content Include="Areas\LogisticsManagement\Views\CompanyNews\Index.js" />
  1238. <Content Include="Areas\LR_AuthorizeModule\Views\Authorize\AppForm.js" />
  1239. <Content Include="Areas\LR_AuthorizeModule\Views\Authorize\Form.css" />
  1240. <Content Include="Areas\LR_AuthorizeModule\Views\Authorize\Form.js" />
  1241. <Content Include="Areas\LR_AuthorizeModule\Views\DataAuthorize\CustomerFormIndex.js" />
  1242. <Content Include="Areas\LR_AuthorizeModule\Views\DataAuthorize\Form.css" />
  1243. <Content Include="Areas\LR_AuthorizeModule\Views\DataAuthorize\QueryForm.js" />
  1244. <Content Include="Areas\LR_AuthorizeModule\Views\FilterIP\Form.js" />
  1245. <Content Include="Areas\LR_AuthorizeModule\Views\FilterIP\Index.js" />
  1246. <Content Include="Areas\LR_AuthorizeModule\Views\FilterTime\Form.css" />
  1247. <Content Include="Areas\LR_AuthorizeModule\Views\FilterTime\Form.js" />
  1248. <Content Include="Areas\LR_AuthorizeModule\Views\UserRelation\LookForm.css" />
  1249. <Content Include="Areas\LR_AuthorizeModule\Views\UserRelation\LookForm.js" />
  1250. <Content Include="Areas\LR_AuthorizeModule\Views\UserRelation\SelectForm.cshtml" />
  1251. <Content Include="Areas\LR_AuthorizeModule\Views\UserRelation\SelectForm.css" />
  1252. <Content Include="Areas\LR_AuthorizeModule\Views\UserRelation\SelectForm.js" />
  1253. <Content Include="Areas\LR_CodeDemo\Views\GantProject\Form.js" />
  1254. <Content Include="Areas\LR_CodeDemo\Views\GantProject\Gant.js" />
  1255. <Content Include="Areas\LR_CodeDemo\Views\GantProject\Index.js" />
  1256. <Content Include="Areas\LR_CodeDemo\Views\GantProject\Project.js" />
  1257. <Content Include="Areas\LR_CodeDemo\Views\GantProject\ProjectDetail.js" />
  1258. <Content Include="Areas\LR_CodeDemo\Views\GanttDemo\Index1.js" />
  1259. <Content Include="Areas\LR_CodeDemo\Views\GanttDemo\Index2.js" />
  1260. <Content Include="Areas\LR_CodeDemo\Views\GanttDemo\Index3.js" />
  1261. <Content Include="Areas\LR_CodeDemo\Views\GanttDemo\Index4.js" />
  1262. <Content Include="Areas\LR_CodeDemo\Views\GridDemo\CommonIndex.js" />
  1263. <Content Include="Areas\LR_CodeDemo\Views\GridDemo\EditIndex.js" />
  1264. <Content Include="Areas\LR_CodeDemo\Views\GridDemo\ReportIndex.js" />
  1265. <Content Include="Areas\LR_CodeDemo\Views\ImgShow\Demo1.js" />
  1266. <Content Include="Areas\LR_CodeDemo\Views\ImgShow\Demo2.js" />
  1267. <Content Include="Areas\LR_CodeDemo\Views\ImgShow\Demo3.js" />
  1268. <Content Include="Areas\LR_CodeDemo\Views\StockDemo\Form.js" />
  1269. <Content Include="Areas\LR_CodeDemo\Views\StockDemo\Index.js" />
  1270. <Content Include="Areas\LR_CodeDemo\Views\StockDemo\Stock.js" />
  1271. <Content Include="Areas\LR_CodeDemo\Views\WorkOrder\Form.js" />
  1272. <Content Include="Areas\LR_CodeDemo\Views\WorkOrder\Index.js" />
  1273. <Content Include="Areas\LR_CodeGeneratorModule\Views\CodeSchema\Form.js" />
  1274. <Content Include="Areas\LR_CodeGeneratorModule\Views\CodeSchema\Index.js" />
  1275. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplateAPP\Index.css" />
  1276. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplateAPP\Index.js" />
  1277. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplatePC\AddBtnForm.js" />
  1278. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplatePC\AppCustmerCodeIndex.css" />
  1279. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplatePC\AppCustmerCodeIndex.js" />
  1280. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplatePC\EntityCodeIndex.css" />
  1281. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplatePC\EntityCodeIndex.js" />
  1282. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplatePC\FastCodeIndex.css" />
  1283. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplatePC\FastCodeIndex.js" />
  1284. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplatePC\GridEditCodeIndex.css" />
  1285. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplatePC\GridEditCodeIndex.js" />
  1286. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplatePC\Index.css" />
  1287. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplatePC\Index.js" />
  1288. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplatePC\CustmerCodeIndex.css" />
  1289. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplatePC\CustmerCodeIndex.js" />
  1290. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplatePC\ReportCodeIndex.css" />
  1291. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplatePC\ReportCodeIndex.js" />
  1292. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplatePC\WorkflowCodeIndex.css" />
  1293. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplatePC\WorkflowCodeIndex.js" />
  1294. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplatePC\WxCustmerCodeIndex.css" />
  1295. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplatePC\WxCustmerCodeIndex.js" />
  1296. <Content Include="Areas\LR_CRMModule\Views\CashBalance\Index.js" />
  1297. <Content Include="Areas\LR_CRMModule\Views\Chance\Detail.js" />
  1298. <Content Include="Areas\LR_CRMModule\Views\Chance\Form.js" />
  1299. <Content Include="Areas\LR_CRMModule\Views\Chance\Index.js" />
  1300. <Content Include="Areas\LR_CRMModule\Views\CrmOrder\Form.css" />
  1301. <Content Include="Areas\LR_CRMModule\Views\CrmOrder\Form.js" />
  1302. <Content Include="Areas\LR_CRMModule\Views\CrmOrder\Index.js" />
  1303. <Content Include="Areas\LR_CRMModule\Views\CustomerContact\ContactForm.js" />
  1304. <Content Include="Areas\LR_CRMModule\Views\CustomerContact\ContactIndex.js" />
  1305. <Content Include="Areas\LR_CRMModule\Views\Customer\Detail.js" />
  1306. <Content Include="Areas\LR_CRMModule\Views\Customer\Form.js" />
  1307. <Content Include="Areas\LR_CRMModule\Views\Customer\Index.js" />
  1308. <Content Include="Areas\LR_CRMModule\Views\Expenses\ExpensesForm.js" />
  1309. <Content Include="Areas\LR_CRMModule\Views\Expenses\Index.js" />
  1310. <Content Include="Areas\LR_CRMModule\Views\Invoice\Form.js" />
  1311. <Content Include="Areas\LR_CRMModule\Views\Invoice\Index.js" />
  1312. <Content Include="Areas\LR_CRMModule\Views\Receivable\Index.js" />
  1313. <Content Include="Areas\LR_CRMModule\Views\Receivable\ReceiptForm.js" />
  1314. <Content Include="Areas\LR_CRMModule\Views\Receivable\ReportIndex.js" />
  1315. <Content Include="Areas\LR_CRMModule\Views\TrailRecord\Index.js" />
  1316. <Content Include="Areas\LR_Desktop\Views\CalculateProject\Form.js" />
  1317. <Content Include="Areas\LR_Desktop\Views\CalculateProject\Index.js" />
  1318. <Content Include="Areas\LR_Desktop\Views\DTSetting\App\AppIndex.css" />
  1319. <Content Include="Areas\LR_Desktop\Views\DTSetting\App\AppIndex.js" />
  1320. <Content Include="Areas\LR_Desktop\Views\DTSetting\PC\PcIndex.css" />
  1321. <Content Include="Areas\LR_Desktop\Views\DTSetting\PC\PcIndex.js" />
  1322. <Content Include="Areas\LR_Desktop\Views\FormulaChild\Form.js" />
  1323. <Content Include="Areas\LR_Desktop\Views\FormulaChild\Index.js" />
  1324. <Content Include="Areas\LR_Desktop\Views\FormulaMain\Form.js" />
  1325. <Content Include="Areas\LR_Desktop\Views\FormulaMain\FormChild.js" />
  1326. <Content Include="Areas\LR_Desktop\Views\FormulaMain\Index.js" />
  1327. <Content Include="Areas\LR_Desktop\Views\MessageRind\Form.js" />
  1328. <Content Include="Areas\LR_Desktop\Views\MessageRind\Index.js" />
  1329. <Content Include="Areas\LR_Desktop\Views\QualityReport\Form.js" />
  1330. <Content Include="Areas\LR_Desktop\Views\QualityReport\FormView.js" />
  1331. <Content Include="Areas\LR_Desktop\Views\QualityReport\Index.js" />
  1332. <Content Include="Areas\LR_Desktop\Views\QualityReport\IndexReport.js" />
  1333. <Content Include="Areas\LR_Desktop\Views\SSO_Drag_CardSortManage\Form.js" />
  1334. <Content Include="Areas\LR_Desktop\Views\SSO_Drag_CardSortManage\Index.js" />
  1335. <Content Include="Areas\LR_Desktop\Views\SSO_Drag_DesktopManage\Form.js" />
  1336. <Content Include="Areas\LR_Desktop\Views\SSO_Drag_DesktopManage\Index.js" />
  1337. <Content Include="Areas\LR_Desktop\Views\WeChatDevelop\Form.js" />
  1338. <Content Include="Areas\LR_Desktop\Views\WeChatDevelop\Index.js" />
  1339. <Content Include="Areas\LR_DisplayBoard\Views\LR_KBConfigInfo\ChartForm.css" />
  1340. <Content Include="Areas\LR_DisplayBoard\Views\LR_KBConfigInfo\ChartForm.js" />
  1341. <Content Include="Areas\LR_DisplayBoard\Views\LR_KBConfigInfo\ColStatisForm.css" />
  1342. <Content Include="Areas\LR_DisplayBoard\Views\LR_KBConfigInfo\ColStatisForm.js" />
  1343. <Content Include="Areas\LR_DisplayBoard\Views\LR_KBConfigInfo\StatisticsForm.js" />
  1344. <Content Include="Areas\LR_DisplayBoard\Views\LR_KBConfigInfo\TableForm.css" />
  1345. <Content Include="Areas\LR_DisplayBoard\Views\LR_KBConfigInfo\TableForm.js" />
  1346. <Content Include="Areas\LR_DisplayBoard\Views\LR_KBFeaManage\Form.js" />
  1347. <Content Include="Areas\LR_DisplayBoard\Views\LR_KBFeaManage\Index.js" />
  1348. <Content Include="Areas\LR_DisplayBoard\Views\LR_KBKanBanInfo\DisplayBoard.css" />
  1349. <Content Include="Areas\LR_DisplayBoard\Views\LR_KBKanBanInfo\DisplayBoard.js" />
  1350. <Content Include="Areas\LR_DisplayBoard\Views\LR_KBKanBanInfo\Form.css" />
  1351. <Content Include="Areas\LR_DisplayBoard\Views\LR_KBKanBanInfo\Form.js" />
  1352. <Content Include="Areas\LR_DisplayBoard\Views\LR_KBKanBanInfo\Index.js" />
  1353. <Content Include="Areas\LR_DisplayBoard\Views\LR_KBKanBanInfo\PreviewForm.css" />
  1354. <Content Include="Areas\LR_DisplayBoard\Views\LR_KBKanBanInfo\PreviewForm.js" />
  1355. <Content Include="Areas\LR_FormModule\Views\FormRelation\ColFieldForm.js" />
  1356. <Content Include="Areas\LR_FormModule\Views\FormRelation\Form.css" />
  1357. <Content Include="Areas\LR_FormModule\Views\FormRelation\Form.js" />
  1358. <Content Include="Areas\LR_FormModule\Views\FormRelation\Index.js" />
  1359. <Content Include="Areas\LR_FormModule\Views\FormRelation\PreviewIndex.js" />
  1360. <Content Include="Areas\LR_FormModule\Views\FormRelation\QueryFieldForm.js" />
  1361. <Content Include="Areas\LR_LGManager\Views\CorporateMaterialApply\FormView.js" />
  1362. <Content Include="Areas\LR_LGManager\Views\CorporateMaterialApply\Form.js" />
  1363. <Content Include="Areas\LR_LGManager\Views\CorporateMaterialApply\Index.js" />
  1364. <Content Include="Areas\LR_LGManager\Views\CorporateMaterialItem\Form.js" />
  1365. <Content Include="Areas\LR_LGManager\Views\CorporateMaterialItem\Index.js" />
  1366. <Content Include="Areas\LR_LGManager\Views\StampApply\FormView.js" />
  1367. <Content Include="Areas\LR_LGManager\Views\StampApply\Form.js" />
  1368. <Content Include="Areas\LR_LGManager\Views\StampApply\Index.js" />
  1369. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\AddTaskForm.js" />
  1370. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\htPrint.css" />
  1371. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\ContractFiling.js" />
  1372. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\LeaderLeaveFiling.js" />
  1373. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\LeaderLeaveFilingMonitor.js" />
  1374. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\LeaveFiling.js" />
  1375. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\LeaveFilingMonitor.js" />
  1376. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\MonitorIndexZiChan.js" />
  1377. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\MonitorIndexGongWen.js" />
  1378. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\MonitorIndexXingZhen.js" />
  1379. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\MonitorIndexRenShi.js" />
  1380. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\PersonalFiling.js" />
  1381. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\SelectUserForm.js" />
  1382. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\SignForm.js" />
  1383. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\StatisticCountIndex.js" />
  1384. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\StatisticTimeForm.js" />
  1385. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\StatisticTimeIndex.js" />
  1386. <Content Include="Areas\LR_NewWorkFlow\Views\StampInfo\EqualForm.js" />
  1387. <Content Include="Areas\LR_NewWorkFlow\Views\StampInfo\Form.css" />
  1388. <Content Include="Areas\LR_NewWorkFlow\Views\StampInfo\Form.js" />
  1389. <Content Include="Areas\LR_NewWorkFlow\Views\StampInfo\Index.js" />
  1390. <Content Include="Areas\LR_NewWorkFlow\Views\StampInfo\StampDetailIndex.js" />
  1391. <Content Include="Areas\LR_OAModule\Views\LostArticleInfo\Form.js" />
  1392. <Content Include="Areas\LR_OAModule\Views\LostArticleInfo\FormClaim.js" />
  1393. <Content Include="Areas\LR_OAModule\Views\LostArticleInfo\FormView.js" />
  1394. <Content Include="Areas\LR_OAModule\Views\LostArticleInfo\Index.js" />
  1395. <Content Include="Areas\LR_OAModule\Views\Notice\FormFlowView.js" />
  1396. <Content Include="Areas\LR_OAModule\Views\Notice\FormFlow.js" />
  1397. <Content Include="Areas\LR_OAModule\Views\Notice\IndexFlow.js" />
  1398. <Content Include="Areas\LR_OAModule\Views\ResourceFile\BcIndex.js" />
  1399. <Content Include="Areas\LR_OAModule\Views\Signet\Index.js" />
  1400. <Content Include="Areas\LR_OrganizationModule\Views\User\FamilyIndex.js" />
  1401. <Content Include="Areas\LR_PortalSite\Views\Article\Form.css" />
  1402. <Content Include="Areas\LR_PortalSite\Views\Article\Form.js" />
  1403. <Content Include="Areas\LR_PortalSite\Views\Article\Index.js" />
  1404. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\AddTabForm.js" />
  1405. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\BottomMenuForm.js" />
  1406. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\BottomMenuIndex.js" />
  1407. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\Index.css" />
  1408. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\Index.js" />
  1409. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\ModuleForm1.css" />
  1410. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\ModuleForm1.js" />
  1411. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\ModuleForm2.css" />
  1412. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\ModuleForm2.js" />
  1413. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\ModuleForm3.css" />
  1414. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\ModuleForm3.js" />
  1415. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\ModuleForm4.css" />
  1416. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\ModuleForm4.js" />
  1417. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\ModuleForm5.js" />
  1418. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\PictureForm.css" />
  1419. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\PictureForm.js" />
  1420. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\SelectModuleForm.css" />
  1421. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\SelectModuleForm.js" />
  1422. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\SetTextForm.js" />
  1423. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\TopMenuForm.js" />
  1424. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\TopMenuIndex.js" />
  1425. <Content Include="Areas\LR_PortalSite\Views\Page\Form.css" />
  1426. <Content Include="Areas\LR_PortalSite\Views\Page\Form.js" />
  1427. <Content Include="Areas\LR_PortalSite\Views\Page\Index.js" />
  1428. <Content Include="Areas\LR_PortalSite\Views\Page\SelectForm.css" />
  1429. <Content Include="Areas\LR_PortalSite\Views\Page\SelectForm.js" />
  1430. <Content Include="Areas\LR_PortalSite\Views\Page\SetCategoryForm.js" />
  1431. <Content Include="Areas\LR_PortalSite\Views\Page\SetContentForm.css" />
  1432. <Content Include="Areas\LR_PortalSite\Views\Page\SetContentForm.js" />
  1433. <Content Include="Areas\LR_PortalSite\Views\Page\SetNameForm.js" />
  1434. <Content Include="Areas\LR_ReportModule\Views\ReportTemplate\NWFSchemeReport.js" />
  1435. <Content Include="Areas\LR_SystemModule\Views\Files\FileAuthAddFrom.js" />
  1436. <Content Include="Areas\LR_SystemModule\Views\Files\FileAuthFrom.js" />
  1437. <Content Include="Areas\LR_SystemModule\Views\Files\FileAuthIndex.js" />
  1438. <Content Include="Areas\LR_SystemModule\Views\Files\FileHistroyIndex.js" />
  1439. <Content Include="Areas\LR_SystemModule\Views\Files\FolderForm.js" />
  1440. <Content Include="Areas\LR_SystemModule\Views\Files\FolderIndex.css" />
  1441. <Content Include="Areas\LR_SystemModule\Views\Files\FolderIndex.js" />
  1442. <Content Include="Areas\LR_SystemModule\Views\Files\Form.js" />
  1443. <Content Include="Areas\LR_SystemModule\Views\Files\Index.css" />
  1444. <Content Include="Areas\LR_SystemModule\Views\Files\Index.js" />
  1445. <Content Include="Areas\LR_SystemModule\Views\Log\ApiIndex.js" />
  1446. <Content Include="Areas\LR_TaskScheduling\Views\TaskDesign\AddDetailedForm.css" />
  1447. <Content Include="Areas\LR_TaskScheduling\Views\TaskDesign\AddDetailedForm.js" />
  1448. <Content Include="Areas\LR_TaskScheduling\Views\TaskDesign\Form.css" />
  1449. <Content Include="Areas\LR_TaskScheduling\Views\TaskDesign\Form.js" />
  1450. <Content Include="Areas\LR_TaskScheduling\Views\TaskDesign\Index.js" />
  1451. <Content Include="Areas\LR_TaskScheduling\Views\TaskDesign\SelectExpressForm.css" />
  1452. <Content Include="Areas\LR_TaskScheduling\Views\TaskDesign\SelectExpressForm.js" />
  1453. <Content Include="Areas\LR_TaskScheduling\Views\TSLog\Form.js" />
  1454. <Content Include="Areas\LR_TaskScheduling\Views\TSLog\Index.js" />
  1455. <Content Include="Areas\LR_TaskScheduling\Views\TSScheme\AddDetailedForm.css" />
  1456. <Content Include="Areas\LR_TaskScheduling\Views\TSScheme\AddDetailedForm.js" />
  1457. <Content Include="Areas\LR_TaskScheduling\Views\TSScheme\Form.css" />
  1458. <Content Include="Areas\LR_TaskScheduling\Views\TSScheme\Form.js" />
  1459. <Content Include="Areas\LR_TaskScheduling\Views\TSScheme\Index.js" />
  1460. <Content Include="Areas\LR_TaskScheduling\Views\TSScheme\SelectExpressForm.css" />
  1461. <Content Include="Areas\LR_TaskScheduling\Views\TSScheme\SelectExpressForm.js" />
  1462. <Content Include="Areas\Permission\Views\Perm_FunctionVisit\IndexForCount.js" />
  1463. <Content Include="Areas\PersonnelManagement\Views\ContractManagement\FormRemove.js" />
  1464. <Content Include="Areas\PersonnelManagement\Views\ContractManagement\FormTerminate.js" />
  1465. <Content Include="Areas\PersonnelManagement\Views\ContractManagement\FormRenew.js" />
  1466. <Content Include="Areas\PersonnelManagement\Views\FD_BudgetFile\Form.js" />
  1467. <Content Include="Areas\PersonnelManagement\Views\FD_BudgetFile\Index.js" />
  1468. <Content Include="Areas\PersonnelManagement\Views\FundExaminer\Form.js" />
  1469. <Content Include="Areas\PersonnelManagement\Views\FundExaminer\Index.js" />
  1470. <Content Include="Areas\PersonnelManagement\Views\LeagueMember\ModifyForm.js" />
  1471. <Content Include="Areas\PersonnelManagement\Views\MeetingManagement\FormView.js" />
  1472. <Content Include="Areas\PersonnelManagement\Views\MeetingManagement\IndexOfMyApply.js" />
  1473. <Content Include="Areas\PersonnelManagement\Views\MeetingManagement\IndexOfMyJoin.js" />
  1474. <Content Include="Areas\PersonnelManagement\Views\MeetingManagement\IndexStatistics.js" />
  1475. <Content Include="Areas\PersonnelManagement\Views\MeetingNotice\Form.js" />
  1476. <Content Include="Areas\PersonnelManagement\Views\MeetingNotice\Index.js" />
  1477. <Content Include="Areas\PersonnelManagement\Views\MeetingSignInRecord\FormViewAttendance.js" />
  1478. <Content Include="Areas\PersonnelManagement\Views\MeetingSignInRecord\IndexAttendance.js" />
  1479. <Content Include="Areas\PersonnelManagement\Views\MP_ManagementPlan\Form.js" />
  1480. <Content Include="Areas\PersonnelManagement\Views\MP_ManagementPlan\Index.js" />
  1481. <Content Include="Areas\PersonnelManagement\Views\MP_ManagementPlan\IndexChildren.js" />
  1482. <Content Include="Areas\PersonnelManagement\Views\MP_ManagementPlan\IndexManagement.js" />
  1483. <Content Include="Areas\PersonnelManagement\Views\MP_ManagementPlan\UploadForm.js" />
  1484. <Content Include="Areas\PersonnelManagement\Views\MP_PerformanceTracking\Form.js" />
  1485. <Content Include="Areas\PersonnelManagement\Views\MP_PerformanceTracking\Index.js" />
  1486. <Content Include="Areas\PersonnelManagement\Views\MP_PerformanceTracking\IndexChildren.js" />
  1487. <Content Include="Areas\PersonnelManagement\Views\MP_PerformanceTracking\IndexManagement.js" />
  1488. <Content Include="Areas\PersonnelManagement\Views\MP_PerformanceTracking\UploadForm.js" />
  1489. <Content Include="Areas\PersonnelManagement\Views\MP_QualityObjectives\Form.js" />
  1490. <Content Include="Areas\PersonnelManagement\Views\MP_QualityObjectives\Index.js" />
  1491. <Content Include="Areas\PersonnelManagement\Views\MP_QualityObjectives\IndexChildren.js" />
  1492. <Content Include="Areas\PersonnelManagement\Views\MP_QualityObjectives\IndexManagement.js" />
  1493. <Content Include="Areas\PersonnelManagement\Views\MP_QualityObjectives\UploadForm.js" />
  1494. <Content Include="Areas\PersonnelManagement\Views\ResearchMent\Form.js" />
  1495. <Content Include="Areas\PersonnelManagement\Views\ResearchMent\Index.js" />
  1496. <Content Include="Areas\PersonnelManagement\Views\Sal_UserSalary\ImportForm.css" />
  1497. <Content Include="Areas\PersonnelManagement\Views\Sal_UserSalary\ImportForm.js" />
  1498. <Content Include="Areas\PersonnelManagement\Views\StuSaverecord\IndexForStudent.js" />
  1499. <Content Include="Areas\PersonnelManagement\Views\StuSaverecord\IndexForTeacher.js" />
  1500. <Content Include="Areas\PersonnelManagement\Views\WorkStudyPositionApply\FormView.js" />
  1501. <Content Include="Areas\PersonnelManagement\Views\WorkStudyPositionApply\CheckIndex.js" />
  1502. <Content Include="Areas\ReceiveSendFeeManagement\Views\FD_BudgetBasics\Form.js" />
  1503. <Content Include="Areas\ReceiveSendFeeManagement\Views\FD_BudgetBasics\Index.js" />
  1504. <Content Include="Areas\ReceiveSendFeeManagement\Views\FD_IncomeManage\Form.js" />
  1505. <Content Include="Areas\ReceiveSendFeeManagement\Views\FD_IncomeManage\Index.js" />
  1506. <Content Include="Areas\ReceiveSendFeeManagement\Views\FD_PayManage\AmountConversion.js" />
  1507. <Content Include="Areas\ReceiveSendFeeManagement\Views\FD_PayManage\Form.js" />
  1508. <Content Include="Areas\ReceiveSendFeeManagement\Views\FD_PayManage\FormPublic.js" />
  1509. <Content Include="Areas\ReceiveSendFeeManagement\Views\FD_PayManage\Index.js" />
  1510. <Content Include="Areas\ReceiveSendFeeManagement\Views\FD_PayManage\PrintPublic.js" />
  1511. <Content Include="Areas\ReceiveSendFeeManagement\Views\FD_PayManage\PrintSpecial.js" />
  1512. <Content Include="Areas\StudentWork\Views\SW_Ask_Main\AnswerIndex.js" />
  1513. <Content Include="Areas\StudentWork\Views\SW_Ask_Main\AnswerQuery.js" />
  1514. <Content Include="Areas\StudentWork\Views\SW_Ask_Main\Form.js" />
  1515. <Content Include="Areas\StudentWork\Views\SW_Ask_Main\ApplyIndex.js" />
  1516. <Content Include="Areas\StudentWork\Views\SW_Ask_Main\Index.js" />
  1517. <Content Include="Areas\StudentWork\Views\SW_Ask_Main\Paper.js" />
  1518. <Content Include="Areas\StudentWork\Views\SW_Ask_Main\PaperAdminView.js" />
  1519. <Content Include="Areas\StudentWork\Views\SW_Ask_Main\PaperView.js" />
  1520. <Content Include="Areas\StudentWork\Views\SW_Ask_Main\StudentIndex.js" />
  1521. <Content Include="Areas\StudentWork\Views\SW_Ask_Main_Question\Form.js" />
  1522. <Content Include="Areas\StudentWork\Views\SW_Ask_Main_Question\Index.js" />
  1523. <Content Include="Areas\StudentWork\Views\SW_Ask_Batch\Form.js" />
  1524. <Content Include="Areas\StudentWork\Views\SW_Ask_Batch\Index.js" />
  1525. <Content Include="Areas\StudentWork\Views\SW_Ask_Batch_Type\AddIndex.js" />
  1526. <Content Include="Areas\StudentWork\Views\SW_Ask_Batch_Type\Form.js" />
  1527. <Content Include="Areas\StudentWork\Views\SW_Ask_Batch_Type\Index.js" />
  1528. <Content Include="Areas\StudentWork\Views\SW_Ask_NotHaveAll_Type\AddIndex.js" />
  1529. <Content Include="Areas\StudentWork\Views\SW_Ask_QuestionItems\Form.js" />
  1530. <Content Include="Areas\StudentWork\Views\SW_Ask_QuestionItems\Index.js" />
  1531. <Content Include="Areas\StudentWork\Views\SW_Ask_Question\Form.js" />
  1532. <Content Include="Areas\StudentWork\Views\SW_Ask_Question\Index.js" />
  1533. <Content Include="Areas\StudentWork\Views\SW_Ask_Question\MainIndex.js" />
  1534. <Content Include="Areas\StudentWork\Views\SW_Ask_Question\SelectIndex.js" />
  1535. <Content Include="Areas\StudentWork\Views\SW_Ask_Type\FormView.js" />
  1536. <Content Include="Areas\StudentWork\Views\SW_HolidayGo\StatisticIndex.js" />
  1537. <Content Include="Content\css\DragSSO\blue.css" />
  1538. <Content Include="Content\css\DragSSO\common.css" />
  1539. <Content Include="Content\css\DragSSO\green.css" />
  1540. <Content Include="Content\css\DragSSO\index.css" />
  1541. <Content Include="Content\css\DragSSO\index2.css" />
  1542. <Content Include="Content\css\DragSSO\index3.css" />
  1543. <Content Include="Content\css\DragSSO\login5.css" />
  1544. <Content Include="Content\css\DragSSO\red.css" />
  1545. <Content Include="Content\css\LoginModel\login8.css" />
  1546. <Content Include="Content\css\LoginModel\login9.css" />
  1547. <Content Include="Content\css\OnlineRegistrate\Footer.html" />
  1548. <Content Include="Content\css\OnlineRegistrate\Header.html" />
  1549. <Content Include="Content\css\OnlineRegistrate\login.css" />
  1550. <Content Include="Content\css\OnlineRegistrate\style.css" />
  1551. <Content Include="Content\echarts\AplicationVisitStatistic.html" />
  1552. <Content Include="Areas\LR_SystemModule\Views\Log\OnlineUserIndex.js" />
  1553. <Content Include="Areas\LR_SystemModule\Views\Log\UseStatistics.js" />
  1554. <Content Include="Areas\LR_FormModule\Views\Custmerform\DataTableForm.js" />
  1555. <Content Include="Areas\LR_FormModule\Views\Custmerform\Form.css" />
  1556. <Content Include="Areas\LR_FormModule\Views\Custmerform\Form.js" />
  1557. <Content Include="Areas\LR_FormModule\Views\Custmerform\HistoryForm.js" />
  1558. <Content Include="Areas\LR_FormModule\Views\Custmerform\Index.js" />
  1559. <Content Include="Areas\LR_FormModule\Views\Custmerform\LayerInstanceForm.css" />
  1560. <Content Include="Areas\LR_FormModule\Views\Custmerform\LayerInstanceForm.js" />
  1561. <Content Include="Areas\LR_FormModule\Views\Custmerform\PreviewForm.css" />
  1562. <Content Include="Areas\LR_FormModule\Views\Custmerform\PreviewForm.js" />
  1563. <Content Include="Areas\LR_FormModule\Views\Custmerform\SetFieldForm.css" />
  1564. <Content Include="Areas\LR_FormModule\Views\Custmerform\SetFieldForm.js" />
  1565. <Content Include="Areas\LR_FormModule\Views\Custmerform\SetFieldIndex.js" />
  1566. <Content Include="Areas\LR_FormModule\Views\Custmerform\SetSelectFieldForm.js" />
  1567. <Content Include="Areas\LR_FormModule\Views\Custmerform\TabInstanceForm.css" />
  1568. <Content Include="Areas\LR_FormModule\Views\Custmerform\TabInstanceForm.js" />
  1569. <Content Include="Areas\LR_FormModule\Views\Custmerform\WorkflowInstanceForm.css" />
  1570. <Content Include="Areas\LR_FormModule\Views\Custmerform\WorkflowInstanceForm.js" />
  1571. <Content Include="Areas\LR_IM\Views\IMMsg\Index.js" />
  1572. <Content Include="Areas\LR_IM\Views\SysUser\Form.js" />
  1573. <Content Include="Areas\LR_IM\Views\SysUser\Index.js" />
  1574. <Content Include="Areas\LR_LGManager\Views\LGMap\AddForm.js" />
  1575. <Content Include="Areas\LR_LGManager\Views\LGMap\DataItemLG.js" />
  1576. <Content Include="Areas\LR_LGManager\Views\LGMap\SystemModuleLG.js" />
  1577. <Content Include="Areas\LR_Message\Views\LR_StrategyInfo\Form.js" />
  1578. <Content Include="Areas\LR_Message\Views\LR_StrategyInfo\Index.js" />
  1579. <Content Include="Areas\LR_NewWorkFlow\Views\NWFDelegate\Form.css" />
  1580. <Content Include="Areas\LR_NewWorkFlow\Views\NWFDelegate\Form.js" />
  1581. <Content Include="Areas\LR_NewWorkFlow\Views\NWFDelegate\Index.js" />
  1582. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\AppointForm.js" />
  1583. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\AuditFlowForm.js" />
  1584. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\BatchAuditIndex.css" />
  1585. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\BatchAuditIndex.js" />
  1586. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\CreateForm.js" />
  1587. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\Index.js" />
  1588. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\LookFlowForm.js" />
  1589. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\LookNodeForm.js" />
  1590. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\MonitorDetailsIndex.js" />
  1591. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\MonitorForm.css" />
  1592. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\MonitorForm.js" />
  1593. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\MonitorIndex.js" />
  1594. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\NWFContainerForm.css" />
  1595. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\NWFContainerForm.js" />
  1596. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\ReleaseForm.css" />
  1597. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\ReleaseForm.js" />
  1598. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\SignFlowForm.js" />
  1599. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\AuditorFieldForm.js" />
  1600. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\AuditorNodeForm.js" />
  1601. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\ButtonForm.js" />
  1602. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\ConditionFieldForm.js" />
  1603. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\Form.css" />
  1604. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\Form.js" />
  1605. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\HistoryForm.js" />
  1606. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\ImportForm.css" />
  1607. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\ImportForm.js" />
  1608. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\Index.js" />
  1609. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\LevelForm.js" />
  1610. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\LineForm.css" />
  1611. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\LineForm.js" />
  1612. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\NodeForm.css" />
  1613. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\NodeForm.js" />
  1614. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\PostForm.js" />
  1615. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\PreviewForm.css" />
  1616. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\PreviewForm.js" />
  1617. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\RoleForm.js" />
  1618. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\UserForm.js" />
  1619. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\WorkformForm.js" />
  1620. <Content Include="Areas\LR_OAModule\Views\Email\ConfigForm.js" />
  1621. <Content Include="Areas\LR_OAModule\Views\Email\DetailForm.js" />
  1622. <Content Include="Areas\LR_OAModule\Views\Email\Form.js" />
  1623. <Content Include="Areas\LR_OAModule\Views\Email\Index.js" />
  1624. <Content Include="Areas\LR_OAModule\Views\ModuleExport\Index.css" />
  1625. <Content Include="Areas\LR_OAModule\Views\ModuleExport\Index.js" />
  1626. <Content Include="Areas\LR_OAModule\Views\News\Form.js" />
  1627. <Content Include="Areas\LR_OAModule\Views\News\Index.js" />
  1628. <Content Include="Areas\LR_OAModule\Views\Notice\ViewIndex.js" />
  1629. <Content Include="Areas\LR_OAModule\Views\Notice\ViewForm.js" />
  1630. <Content Include="Areas\LR_OAModule\Views\Notice\Form.js" />
  1631. <Content Include="Areas\LR_OAModule\Views\Notice\Index.js" />
  1632. <Content Include="Areas\LR_OAModule\Views\ProjectGantt\Form.js" />
  1633. <Content Include="Areas\LR_OAModule\Views\ResourceFile\FileForm.js" />
  1634. <Content Include="Areas\LR_OAModule\Views\ResourceFile\FolderForm.js" />
  1635. <Content Include="Areas\LR_OAModule\Views\ResourceFile\Index.js" />
  1636. <Content Include="Areas\LR_OAModule\Views\ResourceFile\MoveForm.js" />
  1637. <Content Include="Areas\LR_OAModule\Views\ResourceFile\UploadifyForm.css" />
  1638. <Content Include="Areas\LR_OAModule\Views\ResourceFile\UploadifyForm.js" />
  1639. <Content Include="Areas\LR_OAModule\Views\Schedule\Form.js" />
  1640. <Content Include="Areas\LR_OrganizationModule\Views\Company\Form.js" />
  1641. <Content Include="Areas\LR_OrganizationModule\Views\Company\Index.js" />
  1642. <Content Include="Areas\LR_OrganizationModule\Views\Department\Form.js" />
  1643. <Content Include="Areas\LR_OrganizationModule\Views\Department\Index.js" />
  1644. <Content Include="Areas\LR_OrganizationModule\Views\Post\Form.js" />
  1645. <Content Include="Areas\LR_OrganizationModule\Views\Post\Index.js" />
  1646. <Content Include="Areas\LR_OrganizationModule\Views\Post\SelectForm.css" />
  1647. <Content Include="Areas\LR_OrganizationModule\Views\Post\SelectForm.js" />
  1648. <Content Include="Areas\LR_OrganizationModule\Views\Role\Form.js" />
  1649. <Content Include="Areas\LR_OrganizationModule\Views\Role\Index.js" />
  1650. <Content Include="Areas\LR_OrganizationModule\Views\User\Form.js" />
  1651. <Content Include="Areas\LR_OrganizationModule\Views\User\LookForm.css" />
  1652. <Content Include="Areas\LR_OrganizationModule\Views\User\LookForm.js" />
  1653. <Content Include="Areas\LR_OrganizationModule\Views\User\StudentIndex.js" />
  1654. <Content Include="Areas\LR_OrganizationModule\Views\User\Index.js" />
  1655. <Content Include="Areas\LR_OrganizationModule\Views\User\SelectForm.css" />
  1656. <Content Include="Areas\LR_OrganizationModule\Views\User\SelectForm.js" />
  1657. <Content Include="Areas\LR_OrganizationModule\Views\User\SelectOnlyForm.js" />
  1658. <Content Include="Areas\LR_ReportModule\Views\ReportManage\Form.js" />
  1659. <Content Include="Areas\LR_ReportModule\Views\ReportManage\Index.js" />
  1660. <Content Include="Areas\LR_ReportModule\Views\ReportTemplate\WfSchemeReport.js" />
  1661. <Content Include="Areas\LR_ReportModule\Views\ReportTemplate\FinanceReport.js" />
  1662. <Content Include="Areas\LR_ReportModule\Views\ReportTemplate\PurchaseReport.js" />
  1663. <Content Include="Areas\LR_ReportModule\Views\ReportTemplate\SalesReport.js" />
  1664. <Content Include="Areas\LR_ReportModule\Views\ReportTemplate\StockReport.js" />
  1665. <Content Include="Areas\LR_SystemModule\Views\Annexes\DownForm.css" />
  1666. <Content Include="Areas\LR_SystemModule\Views\Annexes\DownForm.js" />
  1667. <Content Include="Areas\LR_SystemModule\Views\Annexes\UploadForm.css" />
  1668. <Content Include="Areas\LR_SystemModule\Views\Annexes\UploadForm.js" />
  1669. <Content Include="Areas\LR_SystemModule\Views\CodeRule\Form.css" />
  1670. <Content Include="Areas\LR_SystemModule\Views\CodeRule\Form.js" />
  1671. <Content Include="Areas\LR_SystemModule\Views\CodeRule\FormatForm.js" />
  1672. <Content Include="Areas\LR_SystemModule\Views\CodeRule\Index.js" />
  1673. <Content Include="Areas\LR_SystemModule\Views\CustmerQuery\Form.css" />
  1674. <Content Include="Areas\LR_SystemModule\Views\CustmerQuery\Form.js" />
  1675. <Content Include="Areas\LR_SystemModule\Views\CustmerQuery\Index.js" />
  1676. <Content Include="Areas\LR_SystemModule\Views\CustmerQuery\QueryForm.js" />
  1677. <Content Include="Areas\LR_SystemModule\Views\DatabaseLink\Form.js" />
  1678. <Content Include="Areas\LR_SystemModule\Views\DatabaseLink\Index.js" />
  1679. <Content Include="Areas\LR_SystemModule\Views\DatabaseTable\CopyTableForm.js" />
  1680. <Content Include="Areas\LR_SystemModule\Views\DatabaseTable\DraftForm.js" />
  1681. <Content Include="Areas\LR_SystemModule\Views\DatabaseTable\EditTableForm.css" />
  1682. <Content Include="Areas\LR_SystemModule\Views\DatabaseTable\EditTableForm.js" />
  1683. <Content Include="Areas\LR_SystemModule\Views\DatabaseTable\Form.js" />
  1684. <Content Include="Areas\LR_SystemModule\Views\DatabaseTable\Index.js" />
  1685. <Content Include="Areas\LR_SystemModule\Views\DatabaseTable\TableIndex.css" />
  1686. <Content Include="Areas\LR_SystemModule\Views\DatabaseTable\TableIndex.js" />
  1687. <Content Include="Areas\LR_SystemModule\Views\DataItem\ClassifyForm.js" />
  1688. <Content Include="Areas\LR_SystemModule\Views\DataItem\ClassifyIndex.css" />
  1689. <Content Include="Areas\LR_SystemModule\Views\DataItem\ClassifyIndex.js" />
  1690. <Content Include="Areas\LR_SystemModule\Views\DataItem\DetailIndex.js" />
  1691. <Content Include="Areas\LR_SystemModule\Views\DataItem\Form.js" />
  1692. <Content Include="Areas\LR_SystemModule\Views\DataItem\Index.js" />
  1693. <Content Include="Areas\LR_CodeGeneratorModule\Views\PluginDemo\index.css" />
  1694. <Content Include="Areas\LR_CodeGeneratorModule\Views\PluginDemo\index.js" />
  1695. <Content Include="Areas\LR_CodeGeneratorModule\Views\PluginDemo\listInfo.js" />
  1696. <Content Include="Areas\LR_SystemModule\Views\Area\Form.js" />
  1697. <Content Include="Areas\LR_SystemModule\Views\Area\Index.js" />
  1698. <Content Include="Areas\LR_SystemModule\Views\DataSource\Form.js" />
  1699. <Content Include="Areas\LR_SystemModule\Views\DataSource\Index.js" />
  1700. <Content Include="Areas\LR_SystemModule\Views\DataSource\SelectForm.css" />
  1701. <Content Include="Areas\LR_SystemModule\Views\DataSource\SelectForm.js" />
  1702. <Content Include="Areas\LR_SystemModule\Views\DataSource\TestForm.css" />
  1703. <Content Include="Areas\LR_SystemModule\Views\DataSource\TestForm.js" />
  1704. <Content Include="Areas\LR_SystemModule\Views\DbField\Form.js" />
  1705. <Content Include="Areas\LR_SystemModule\Views\DbField\Index.js" />
  1706. <Content Include="Areas\LR_SystemModule\Views\DbField\SelectForm.js" />
  1707. <Content Include="Areas\LR_SystemModule\Views\ExcelExport\Form.js" />
  1708. <Content Include="Areas\LR_SystemModule\Views\ExcelExport\Index.js" />
  1709. <Content Include="Areas\LR_SystemModule\Views\ExcelImport\Form.css" />
  1710. <Content Include="Areas\LR_SystemModule\Views\ExcelImport\Form.js" />
  1711. <Content Include="Areas\LR_SystemModule\Views\ExcelImport\ImportForm.css" />
  1712. <Content Include="Areas\LR_SystemModule\Views\ExcelImport\ImportForm.js" />
  1713. <Content Include="Areas\LR_SystemModule\Views\ExcelImport\Index.js" />
  1714. <Content Include="Areas\LR_SystemModule\Views\ExcelImport\SetFieldForm.js" />
  1715. <Content Include="Areas\LR_SystemModule\Views\Interface\FieldForm.js" />
  1716. <Content Include="Areas\LR_SystemModule\Views\Interface\Form.css" />
  1717. <Content Include="Areas\LR_SystemModule\Views\Interface\Form.js" />
  1718. <Content Include="Areas\LR_SystemModule\Views\Interface\Index.css" />
  1719. <Content Include="Areas\LR_SystemModule\Views\Interface\Index.js" />
  1720. <Content Include="Areas\LR_SystemModule\Views\LogoImg\AppIndex.css" />
  1721. <Content Include="Areas\LR_SystemModule\Views\LogoImg\AppIndex.js" />
  1722. <Content Include="Areas\LR_SystemModule\Views\LogoImg\PCIndex.css" />
  1723. <Content Include="Areas\LR_SystemModule\Views\LogoImg\PcIndex.js" />
  1724. <Content Include="Areas\LR_SystemModule\Views\Log\DetailForm.js" />
  1725. <Content Include="Areas\LR_SystemModule\Views\Log\Form.js" />
  1726. <Content Include="Areas\LR_SystemModule\Views\Log\Index.js" />
  1727. <Content Include="Areas\LR_SystemModule\Views\Module\Form.css" />
  1728. <Content Include="Areas\LR_SystemModule\Views\Module\Form.js" />
  1729. <Content Include="Areas\LR_SystemModule\Views\Module\Index.js" />
  1730. <Content Include="Areas\LR_WebChatModule\Views\Organize\Index.js" />
  1731. <Content Include="Areas\LR_WebChatModule\Views\Organize\MemberForm.js" />
  1732. <Content Include="Areas\LR_WebChatModule\Views\Token\Index.css" />
  1733. <Content Include="Areas\LR_WebChatModule\Views\Token\Index.js" />
  1734. <Content Include="Areas\LR_WorkFlowModule\Views\WfDelegateRule\Form.css" />
  1735. <Content Include="Areas\LR_WorkFlowModule\Views\WfDelegateRule\Form.js" />
  1736. <Content Include="Areas\LR_WorkFlowModule\Views\WfDelegateRule\Index.js" />
  1737. <Content Include="Areas\LR_WorkFlowModule\Views\WfMonitor\Index.js" />
  1738. <Content Include="Areas\LR_WorkFlowModule\Views\WfMyTask\AuditFlowForm.js" />
  1739. <Content Include="Areas\LR_WorkFlowModule\Views\WfMyTask\CustmerWorkFlowFormAll.css" />
  1740. <Content Include="Areas\LR_WorkFlowModule\Views\WfMyTask\CustmerWorkFlowFormAll.js" />
  1741. <Content Include="Areas\LR_WorkFlowModule\Views\WfMyTask\CustmerWorkFlowForm.css" />
  1742. <Content Include="Areas\LR_WorkFlowModule\Views\WfMyTask\CustmerWorkFlowForm.js" />
  1743. <Content Include="Areas\LR_WorkFlowModule\Views\WfMyTask\Form.js" />
  1744. <Content Include="Areas\LR_WorkFlowModule\Views\WfMyTask\Index.js" />
  1745. <Content Include="Areas\LR_WorkFlowModule\Views\WfMyTask\Release.css" />
  1746. <Content Include="Areas\LR_WorkFlowModule\Views\WfMyTask\Release.js" />
  1747. <Content Include="Areas\LR_WorkFlowModule\Views\WfMyTask\ReleaseFlowForm.js" />
  1748. <Content Include="Areas\LR_WorkFlowModule\Views\WfMyTask\ReleaseForm.css" />
  1749. <Content Include="Areas\LR_WorkFlowModule\Views\WfMyTask\ReleaseForm.js" />
  1750. <Content Include="Areas\LR_WorkFlowModule\Views\WfMyTask\SignFlowForm.js" />
  1751. <Content Include="Areas\LR_WorkFlowModule\Views\WfMyTask\WfNodeForm.js" />
  1752. <Content Include="Areas\LR_WorkFlowModule\Views\WfScheme\AuthorizeForm.js" />
  1753. <Content Include="Areas\LR_WorkFlowModule\Views\WfScheme\ConditionFieldForm.js" />
  1754. <Content Include="Areas\LR_WorkFlowModule\Views\WfScheme\FieldSelectForm.js" />
  1755. <Content Include="Areas\LR_WorkFlowModule\Views\WfScheme\Form.css" />
  1756. <Content Include="Areas\LR_WorkFlowModule\Views\WfScheme\Form.js" />
  1757. <Content Include="Areas\LR_WorkFlowModule\Views\WfScheme\HistoryForm.js" />
  1758. <Content Include="Areas\LR_WorkFlowModule\Views\WfScheme\Index.js" />
  1759. <Content Include="Areas\LR_WorkFlowModule\Views\WfScheme\LineForm.js" />
  1760. <Content Include="Areas\LR_WorkFlowModule\Views\WfScheme\NodeForm.css" />
  1761. <Content Include="Areas\LR_WorkFlowModule\Views\WfScheme\NodeForm.js" />
  1762. <Content Include="Areas\LR_WorkFlowModule\Views\WfScheme\PostForm.js" />
  1763. <Content Include="Areas\LR_WorkFlowModule\Views\WfScheme\PreviewForm.css" />
  1764. <Content Include="Areas\LR_WorkFlowModule\Views\WfScheme\PreviewForm.js" />
  1765. <Content Include="Areas\LR_WorkFlowModule\Views\WfScheme\RoleForm.js" />
  1766. <Content Include="Areas\LR_WorkFlowModule\Views\WfScheme\UserForm.js" />
  1767. <Content Include="Areas\LR_WorkFlowModule\Views\WfScheme\WorkformForm.js" />
  1768. <Content Include="Areas\LR_WorkFlowModule\Views\WfSystemDemo\DemoLeaveForm.js" />
  1769. <Content Include="Areas\LR_WorkFlowModule\Views\WfSystemDemo\DemoLeaveIndex.js" />
  1770. <Content Include="Areas\Permission\Views\Perm_Function\FormTeacher.js" />
  1771. <Content Include="Areas\Permission\Views\Perm_Function\TeacherIndex.js" />
  1772. <Content Include="Areas\Permission\Views\Perm_UserPermission\GirdSelectIndex.css" />
  1773. <Content Include="Areas\Permission\Views\Perm_UserPermission\GirdSelectIndex.js" />
  1774. <Content Include="Areas\Permission\Views\Perm_UserPermission\SelectForm.css" />
  1775. <Content Include="Areas\Permission\Views\Perm_UserPermission\SelectForm.js" />
  1776. <Content Include="Areas\PersonnelManagement\Views\BC_PopQuiz\Report.js" />
  1777. <Content Include="Areas\PersonnelManagement\Views\CommunityInfo\QrcodeForm.js" />
  1778. <Content Include="Areas\PersonnelManagement\Views\ContractManagement\FormView.js" />
  1779. <Content Include="Areas\PersonnelManagement\Views\EpidemicReport\OutReasonReport.js" />
  1780. <Content Include="Areas\PersonnelManagement\Views\EpidemicReport\ProviceReport.js" />
  1781. <Content Include="Areas\PersonnelManagement\Views\EpidemicReport\VehicleReport.js" />
  1782. <Content Include="Areas\PersonnelManagement\Views\EpidemicReport\PersonnelCategoryReport.js" />
  1783. <Content Include="Areas\PersonnelManagement\Views\EpidemicSituationCopy\Form.js" />
  1784. <Content Include="Areas\PersonnelManagement\Views\EpidemicSituationCopy\IndexReport.js" />
  1785. <Content Include="Areas\PersonnelManagement\Views\EpidemicSituationCopy\Index.js" />
  1786. <Content Include="Areas\PersonnelManagement\Views\Sal_UserSalary\FormView.js" />
  1787. <Content Include="Areas\PersonnelManagement\Views\Sal_UserSalary\IndexOfMy.js" />
  1788. <Content Include="Areas\PersonnelManagement\Views\StuSaverecord\Form.js" />
  1789. <Content Include="Areas\PersonnelManagement\Views\StuSaverecord\Index.js" />
  1790. <Content Include="Areas\PersonnelManagement\Views\TimeTable\AttendanceList.js" />
  1791. <Content Include="Areas\PersonnelManagement\Views\TimeTable\AttendanceStatistic.js" />
  1792. <Content Include="Areas\PersonnelManagement\Views\MP_BrowseRecord\IndexFile.js" />
  1793. <Content Include="Areas\PersonnelManagement\Views\OvertimeApplication\Form.js" />
  1794. <Content Include="Areas\PersonnelManagement\Views\OvertimeApplication\Index.js" />
  1795. <Content Include="Areas\PersonnelManagement\Views\TimeTable\AttendanceDetail.js" />
  1796. <Content Include="Areas\PersonnelManagement\Views\TimeTable\Attendance.js" />
  1797. <Content Include="Areas\PersonnelManagement\Views\TimeTable\IndexInEducationModify.js" />
  1798. <Content Include="Areas\PersonnelManagement\Views\TimeTable\IndexInEducation.js" />
  1799. <Content Include="Areas\PersonnelManagement\Views\TimeTable\Index.js" />
  1800. <Content Include="Areas\PersonnelManagement\Views\TimeTable\IndexInEducationSelect.js" />
  1801. <Content Include="Areas\PersonnelManagement\Views\TimeTable\ModifyLessonForm.js" />
  1802. <Content Include="Areas\PersonnelManagement\Views\TimeTable\Leave.js" />
  1803. <Content Include="Areas\PersonnelManagement\Views\WP_FileList\SecuritySetting.js" />
  1804. <Content Include="Areas\ReceiveSendFeeManagement\Views\FinaChargesStandard\EditForm.js" />
  1805. <Content Include="Areas\EducationalAdministration\Views\EmpInfoEnternal\FormAdd.cshtml" />
  1806. <Content Include="Content\bootstrap\bootstrap-theme.min.css" />
  1807. <Content Include="Content\bootstrap\bootstrap.min - 副本.css" />
  1808. <Content Include="Content\bootstrap\bootstrap.min20200308bak.css" />
  1809. <Content Include="Content\bootstrap\bootstrap.min.css" />
  1810. <Content Include="Content\bootstrap\html5shiv.min.js" />
  1811. <Content Include="Content\camera\cropper.min.css" />
  1812. <Content Include="Content\camera\cropper.min.js" />
  1813. <Content Include="Content\camera\ImgCropping.css" />
  1814. <Content Include="Content\camera\testcarera.html" />
  1815. <Content Include="Content\cardprint\bg.jpg" />
  1816. <Content Include="Content\cardprint\CardPrint.css" />
  1817. <Content Include="Content\cardprint\student.jpg" />
  1818. <Content Include="Content\cardprint\back.jpg" />
  1819. <Content Include="Content\cardprint\cardBg.jpg" />
  1820. <Content Include="Content\css\animate.min.css" />
  1821. <Content Include="Content\css\blue.css" />
  1822. <Content Include="Content\css\bootstrap.css" />
  1823. <Content Include="Content\css\bootstrap.min.css" />
  1824. <Content Include="Content\css\commontwo.css" />
  1825. <Content Include="Content\css\fromAdd.css" />
  1826. <Content Include="Content\css\green.css" />
  1827. <Content Include="Content\css\indextwo.css" />
  1828. <Content Include="Content\css\LoginModel\common.css" />
  1829. <Content Include="Content\css\LoginModel\index.css" />
  1830. <Content Include="Content\css\LoginModel\login2.css" />
  1831. <Content Include="Content\css\LoginModel\login3.css" />
  1832. <Content Include="Content\css\LoginModel\login4.css" />
  1833. <Content Include="Content\css\LoginModel\login5.css" />
  1834. <Content Include="Content\css\LoginModel\loginPublic.css" />
  1835. <Content Include="Content\css\OnlineRegistrate\bootstrap.css" />
  1836. <Content Include="Content\css\OnlineRegistrate\zyxq.css" />
  1837. <Content Include="Content\css\process.css" />
  1838. <Content Include="Content\css\receiveSendFeeManagement\charge.css" />
  1839. <Content Include="Content\css\common.css" />
  1840. <Content Include="Content\css\red.css" />
  1841. <Content Include="Content\css\styletwo.css" />
  1842. <Content Include="Content\css\swiper.min1.css" />
  1843. <Content Include="Content\idcardreader\idcardreaderv1.js" />
  1844. <Content Include="Content\idcardreader\npCertReader.dll" />
  1845. <Content Include="Content\images\calendar.png" />
  1846. <Content Include="Content\images\chick1.png" />
  1847. <Content Include="Content\images\DragSSO\close.png" />
  1848. <Content Include="Content\images\DragSSO\close2.png" />
  1849. <Content Include="Content\images\DragSSO\download.png" />
  1850. <Content Include="Content\images\DragSSO\duigou.png" />
  1851. <Content Include="Content\images\DragSSO\head1.png" />
  1852. <Content Include="Content\images\DragSSO\head2.png" />
  1853. <Content Include="Content\images\DragSSO\head3.png" />
  1854. <Content Include="Content\images\DragSSO\head4-1.png" />
  1855. <Content Include="Content\images\DragSSO\head4-2.png" />
  1856. <Content Include="Content\images\DragSSO\head4-3.png" />
  1857. <Content Include="Content\images\DragSSO\head4.png" />
  1858. <Content Include="Content\images\DragSSO\headBg-green.jpg" />
  1859. <Content Include="Content\images\DragSSO\headBg-red.jpg" />
  1860. <Content Include="Content\images\DragSSO\headBg.jpg" />
  1861. <Content Include="Content\images\DragSSO\headBg2.jpg" />
  1862. <Content Include="Content\images\DragSSO\indexSec2-1.png" />
  1863. <Content Include="Content\images\DragSSO\indexSec2-2.png" />
  1864. <Content Include="Content\images\DragSSO\indexSec3-1.png" />
  1865. <Content Include="Content\images\DragSSO\indexSec3-10.png" />
  1866. <Content Include="Content\images\DragSSO\indexSec3-11.png" />
  1867. <Content Include="Content\images\DragSSO\indexSec3-12.png" />
  1868. <Content Include="Content\images\DragSSO\indexSec3-13.png" />
  1869. <Content Include="Content\images\DragSSO\indexSec3-14.png" />
  1870. <Content Include="Content\images\DragSSO\indexSec3-15.jpg" />
  1871. <Content Include="Content\images\DragSSO\indexSec3-16.jpg" />
  1872. <Content Include="Content\images\DragSSO\indexSec3-17.jpg" />
  1873. <Content Include="Content\images\DragSSO\indexSec3-18.jpg" />
  1874. <Content Include="Content\images\DragSSO\indexSec3-19.jpg" />
  1875. <Content Include="Content\images\DragSSO\indexSec3-2.png" />
  1876. <Content Include="Content\images\DragSSO\indexSec3-20.jpg" />
  1877. <Content Include="Content\images\DragSSO\indexSec3-21.jpg" />
  1878. <Content Include="Content\images\DragSSO\indexSec3-22.jpg" />
  1879. <Content Include="Content\images\DragSSO\indexSec3-23.png" />
  1880. <Content Include="Content\images\DragSSO\indexSec3-24.png" />
  1881. <Content Include="Content\images\DragSSO\indexSec3-25.png" />
  1882. <Content Include="Content\images\DragSSO\indexSec3-26.png" />
  1883. <Content Include="Content\images\DragSSO\indexSec3-27.png" />
  1884. <Content Include="Content\images\DragSSO\indexSec3-28.png" />
  1885. <Content Include="Content\images\DragSSO\indexSec3-3.png" />
  1886. <Content Include="Content\images\DragSSO\indexSec3-4.png" />
  1887. <Content Include="Content\images\DragSSO\indexSec3-5.png" />
  1888. <Content Include="Content\images\DragSSO\indexSec3-6.png" />
  1889. <Content Include="Content\images\DragSSO\indexSec3-7.png" />
  1890. <Content Include="Content\images\DragSSO\indexSec3-8.png" />
  1891. <Content Include="Content\images\DragSSO\indexSec3-9.png" />
  1892. <Content Include="Content\images\DragSSO\indSec1-1.png" />
  1893. <Content Include="Content\images\DragSSO\indSec1-10.png" />
  1894. <Content Include="Content\images\DragSSO\indSec1-11.png" />
  1895. <Content Include="Content\images\DragSSO\indSec1-12.png" />
  1896. <Content Include="Content\images\DragSSO\indSec1-13.png" />
  1897. <Content Include="Content\images\DragSSO\indSec1-14.png" />
  1898. <Content Include="Content\images\DragSSO\indSec1-15.png" />
  1899. <Content Include="Content\images\DragSSO\indSec1-16.png" />
  1900. <Content Include="Content\images\DragSSO\indSec1-17.png" />
  1901. <Content Include="Content\images\DragSSO\indSec1-18.png" />
  1902. <Content Include="Content\images\DragSSO\indSec1-19.png" />
  1903. <Content Include="Content\images\DragSSO\indSec1-2.png" />
  1904. <Content Include="Content\images\DragSSO\indSec1-20.png" />
  1905. <Content Include="Content\images\DragSSO\indSec1-3.png" />
  1906. <Content Include="Content\images\DragSSO\indSec1-4.png" />
  1907. <Content Include="Content\images\DragSSO\indSec1-5.png" />
  1908. <Content Include="Content\images\DragSSO\indSec1-6.png" />
  1909. <Content Include="Content\images\DragSSO\indSec1-7.png" />
  1910. <Content Include="Content\images\DragSSO\indSec1-8.png" />
  1911. <Content Include="Content\images\DragSSO\indSec1-9.png" />
  1912. <Content Include="Content\images\DragSSO\indSec3-1.png" />
  1913. <Content Include="Content\images\DragSSO\indSec3-2.png" />
  1914. <Content Include="Content\images\DragSSO\indSec3-3.png" />
  1915. <Content Include="Content\images\DragSSO\indSec3-4.png" />
  1916. <Content Include="Content\images\DragSSO\indSec3-5.png" />
  1917. <Content Include="Content\images\DragSSO\indSec3-6.png" />
  1918. <Content Include="Content\images\DragSSO\inSec1-10.png" />
  1919. <Content Include="Content\images\DragSSO\inSec1-11.png" />
  1920. <Content Include="Content\images\DragSSO\inSec1-12.png" />
  1921. <Content Include="Content\images\DragSSO\inSec1-13.png" />
  1922. <Content Include="Content\images\DragSSO\inSec1-14.png" />
  1923. <Content Include="Content\images\DragSSO\inSec1-15.png" />
  1924. <Content Include="Content\images\DragSSO\inSec1-16.png" />
  1925. <Content Include="Content\images\DragSSO\inSec1-17.png" />
  1926. <Content Include="Content\images\DragSSO\inSec1-18.png" />
  1927. <Content Include="Content\images\DragSSO\inSec1-19.png" />
  1928. <Content Include="Content\images\DragSSO\inSec1-2.png" />
  1929. <Content Include="Content\images\DragSSO\inSec1-20.png" />
  1930. <Content Include="Content\images\DragSSO\inSec1-21.png" />
  1931. <Content Include="Content\images\DragSSO\inSec1-22.png" />
  1932. <Content Include="Content\images\DragSSO\inSec1-3.png" />
  1933. <Content Include="Content\images\DragSSO\inSec1-4.png" />
  1934. <Content Include="Content\images\DragSSO\inSec1-5.png" />
  1935. <Content Include="Content\images\DragSSO\inSec1-6.png" />
  1936. <Content Include="Content\images\DragSSO\inSec1-7.png" />
  1937. <Content Include="Content\images\DragSSO\inSec1-8.png" />
  1938. <Content Include="Content\images\DragSSO\inSec1-9.png" />
  1939. <Content Include="Content\images\DragSSO\inSec2-1.png" />
  1940. <Content Include="Content\images\DragSSO\inSec2-10.png" />
  1941. <Content Include="Content\images\DragSSO\inSec2-11.png" />
  1942. <Content Include="Content\images\DragSSO\inSec2-12.png" />
  1943. <Content Include="Content\images\DragSSO\inSec2-13.png" />
  1944. <Content Include="Content\images\DragSSO\inSec2-14.png" />
  1945. <Content Include="Content\images\DragSSO\inSec2-15.png" />
  1946. <Content Include="Content\images\DragSSO\inSec2-16.png" />
  1947. <Content Include="Content\images\DragSSO\inSec2-17.png" />
  1948. <Content Include="Content\images\DragSSO\inSec2-18.png" />
  1949. <Content Include="Content\images\DragSSO\inSec2-2.png" />
  1950. <Content Include="Content\images\DragSSO\inSec2-3.png" />
  1951. <Content Include="Content\images\DragSSO\inSec2-4.png" />
  1952. <Content Include="Content\images\DragSSO\inSec2-5.png" />
  1953. <Content Include="Content\images\DragSSO\inSec2-6.png" />
  1954. <Content Include="Content\images\DragSSO\inSec2-7.png" />
  1955. <Content Include="Content\images\DragSSO\inSec2-8.png" />
  1956. <Content Include="Content\images\DragSSO\inSec2-9.png" />
  1957. <Content Include="Content\images\DragSSO\inSec3-10.png" />
  1958. <Content Include="Content\images\DragSSO\inSec3-11.png" />
  1959. <Content Include="Content\images\DragSSO\inSec3-12.png" />
  1960. <Content Include="Content\images\DragSSO\inSec3-13.png" />
  1961. <Content Include="Content\images\DragSSO\inSec3-14.png" />
  1962. <Content Include="Content\images\DragSSO\inSec3-15.png" />
  1963. <Content Include="Content\images\DragSSO\inSec3-2.png" />
  1964. <Content Include="Content\images\DragSSO\inSec3-3.png" />
  1965. <Content Include="Content\images\DragSSO\inSec3-4.png" />
  1966. <Content Include="Content\images\DragSSO\inSec3-5.png" />
  1967. <Content Include="Content\images\DragSSO\inSec3-6.png" />
  1968. <Content Include="Content\images\DragSSO\inSec3-7.png" />
  1969. <Content Include="Content\images\DragSSO\inSec3-8.png" />
  1970. <Content Include="Content\images\DragSSO\inSec3-9.png" />
  1971. <Content Include="Content\images\DragSSO\inSec6-12.png" />
  1972. <Content Include="Content\images\DragSSO\inSec6-13.png" />
  1973. <Content Include="Content\images\DragSSO\inSec6-14.png" />
  1974. <Content Include="Content\images\DragSSO\inSec6-3.png" />
  1975. <Content Include="Content\images\DragSSO\inSec6-4.png" />
  1976. <Content Include="Content\images\DragSSO\inSec6-5.png" />
  1977. <Content Include="Content\images\DragSSO\inSec6-6.png" />
  1978. <Content Include="Content\images\DragSSO\login5-1.png" />
  1979. <Content Include="Content\images\DragSSO\login5-1s.png" />
  1980. <Content Include="Content\images\DragSSO\login5-2.png" />
  1981. <Content Include="Content\images\DragSSO\login5-2s.png" />
  1982. <Content Include="Content\images\DragSSO\login5-3.png" />
  1983. <Content Include="Content\images\DragSSO\login5-3s.png" />
  1984. <Content Include="Content\images\DragSSO\message.png" />
  1985. <Content Include="Content\images\DragSSO\noLogin.png" />
  1986. <Content Include="Content\images\DragSSO\right2.png" />
  1987. <Content Include="Content\images\DragSSO\search.png" />
  1988. <Content Include="Content\images\DragSSO\skin1.jpg" />
  1989. <Content Include="Content\images\DragSSO\skin2.jpg" />
  1990. <Content Include="Content\images\DragSSO\skin3.jpg" />
  1991. <Content Include="Content\images\DragSSO\tips1.png" />
  1992. <Content Include="Content\images\DragSSO\user.jpg" />
  1993. <Content Include="Content\images\DragSSO\verCode.png" />
  1994. <Content Include="Content\images\DragSSO\weixin.png" />
  1995. <Content Include="Content\images\floor\inSec1-10_2.png" />
  1996. <Content Include="Content\css\font-awesome.css" />
  1997. <Content Include="Content\css\index.css" />
  1998. <Content Include="Content\images\from1.png" />
  1999. <Content Include="Content\images\guide\corr1.jpg" />
  2000. <Content Include="Content\images\guide\guideSec1-1.png" />
  2001. <Content Include="Content\images\guide\guideSec1-2.png" />
  2002. <Content Include="Content\images\guide\guideSec1-3.png" />
  2003. <Content Include="Content\images\guide\guideSec1-4.png" />
  2004. <Content Include="Content\images\guide\guideSec1-5.png" />
  2005. <Content Include="Content\images\guide\right.png" />
  2006. <Content Include="Content\images\imgshow\有货架图1.jpg" />
  2007. <Content Include="Content\images\imgshow\有货架图2.jpg" />
  2008. <Content Include="Content\images\imgshow\流程_有车_显示屏.jpg" />
  2009. <Content Include="Content\images\indexHeadBg.png" />
  2010. <Content Include="Content\images\kanban\bg.png" />
  2011. <Content Include="Content\images\kanban\dashboard1.png" />
  2012. <Content Include="Content\images\kanban\dashboard2.jpg" />
  2013. <Content Include="Content\images\kanban\histogram1.png" />
  2014. <Content Include="Content\images\kanban\histogram2.jpg" />
  2015. <Content Include="Content\images\kanban\linechart1.png" />
  2016. <Content Include="Content\images\kanban\linechart2.jpg" />
  2017. <Content Include="Content\images\kanban\piechart1.png" />
  2018. <Content Include="Content\images\kanban\piechart2.jpg" />
  2019. <Content Include="Content\images\kanban\Statistics1.png" />
  2020. <Content Include="Content\images\kanban\Statistics2.jpg" />
  2021. <Content Include="Content\images\kanban\table1.png" />
  2022. <Content Include="Content\images\kanban\table2.jpg" />
  2023. <Content Include="Content\images\kanban\Template1-0.png" />
  2024. <Content Include="Content\images\kanban\Template1-1.png" />
  2025. <Content Include="Content\images\kanban\Template2-0.png" />
  2026. <Content Include="Content\images\kanban\Template2-1.png" />
  2027. <Content Include="Content\images\kanban\Template3-0.png" />
  2028. <Content Include="Content\images\kanban\Template3-1.png" />
  2029. <Content Include="Content\images\kanban\Template4-0.png" />
  2030. <Content Include="Content\images\kanban\Template4-1.png" />
  2031. <Content Include="Content\images\kanban\Template5-0.png" />
  2032. <Content Include="Content\images\kanban\Template5-1.png" />
  2033. <Content Include="Content\images\LoginPage\add2.png" />
  2034. <Content Include="Content\images\LoginPage\bj.jpg" />
  2035. <Content Include="Content\images\LoginPage\bottom.png" />
  2036. <Content Include="Content\images\LoginPage\bottom2.png" />
  2037. <Content Include="Content\images\LoginPage\check2.png" />
  2038. <Content Include="Content\images\LoginPage\checked.png" />
  2039. <Content Include="Content\images\LoginPage\copy2.png" />
  2040. <Content Include="Content\images\LoginPage\del2.png" />
  2041. <Content Include="Content\images\LoginPage\del3.png" />
  2042. <Content Include="Content\images\LoginPage\download.png" />
  2043. <Content Include="Content\images\LoginPage\icon.png" />
  2044. <Content Include="Content\images\LoginPage\iphoneLogin.png" />
  2045. <Content Include="Content\images\LoginPage\iphoneLogin3.png" />
  2046. <Content Include="Content\images\LoginPage\jiao2.png" />
  2047. <Content Include="Content\images\LoginPage\key.png" />
  2048. <Content Include="Content\images\LoginPage\lock.png" />
  2049. <Content Include="Content\images\LoginPage\login2Bg.jpg" />
  2050. <Content Include="Content\images\LoginPage\login4-1.jpg" />
  2051. <Content Include="Content\images\LoginPage\login4-2.png" />
  2052. <Content Include="Content\images\LoginPage\login4-2s.png" />
  2053. <Content Include="Content\images\LoginPage\login4-3.png" />
  2054. <Content Include="Content\images\LoginPage\login4-3s.png" />
  2055. <Content Include="Content\images\LoginPage\login5-1.png" />
  2056. <Content Include="Content\images\LoginPage\login5-2.png" />
  2057. <Content Include="Content\images\LoginPage\login5-2s.png" />
  2058. <Content Include="Content\images\LoginPage\login5-3.png" />
  2059. <Content Include="Content\images\LoginPage\login5-3s.png" />
  2060. <Content Include="Content\images\LoginPage\login5.png" />
  2061. <Content Include="Content\images\LoginPage\loginBg.jpg" />
  2062. <Content Include="Content\images\LoginPage\loginBg2.jpg" />
  2063. <Content Include="Content\images\LoginPage\loginBg3.jpg" />
  2064. <Content Include="Content\images\LoginPage\loginBg4.jpg" />
  2065. <Content Include="Content\images\LoginPage\loginBg5.jpg" />
  2066. <Content Include="Content\images\LoginPage\logo_4_2.png" />
  2067. <Content Include="Content\images\LoginPage\logo_5_2.png" />
  2068. <Content Include="Content\images\LoginPage\logo_6_2.png" />
  2069. <Content Include="Content\images\LoginPage\logo_y.png" />
  2070. <Content Include="Content\images\LoginPage\pcLogin3.png" />
  2071. <Content Include="Content\images\LoginPage\pen.png" />
  2072. <Content Include="Content\images\LoginPage\person.png" />
  2073. <Content Include="Content\images\LoginPage\person2.png" />
  2074. <Content Include="Content\images\LoginPage\profile-cover.jpg" />
  2075. <Content Include="Content\images\LoginPage\right.png" />
  2076. <Content Include="Content\images\LoginPage\right2.png" />
  2077. <Content Include="Content\images\LoginPage\tick2.png" />
  2078. <Content Include="Content\images\LoginPage\tips1.png" />
  2079. <Content Include="Content\images\LoginPage\tips2.png" />
  2080. <Content Include="Content\images\LoginPage\tips3.png" />
  2081. <Content Include="Content\images\LoginPage\tips4.png" />
  2082. <Content Include="Content\images\LoginPage\tips5.png" />
  2083. <Content Include="Content\images\LoginPage\true2.png" />
  2084. <Content Include="Content\images\LoginPage\variCode.png" />
  2085. <Content Include="Content\images\LoginPage\verCode.png" />
  2086. <Content Include="Content\images\LoginPage\wxLogin.png" />
  2087. <Content Include="Content\images\LoginPage\xxlogo.png" />
  2088. <Content Include="Content\images\LoginPage\zuo.png" />
  2089. <Content Include="Content\images\Login\key.png" />
  2090. <Content Include="Content\images\Login\login8-1.png" />
  2091. <Content Include="Content\images\Login\login8-2.png" />
  2092. <Content Include="Content\images\Login\login8-3.png" />
  2093. <Content Include="Content\images\Login\login8-4.png" />
  2094. <Content Include="Content\images\Login\login8-5.png" />
  2095. <Content Include="Content\images\Login\login8-6.png" />
  2096. <Content Include="Content\images\Login\login8-7.png" />
  2097. <Content Include="Content\images\Login\login8-8.png" />
  2098. <Content Include="Content\images\Login\loginBg8.jpg" />
  2099. <Content Include="Content\images\Login\loginBg9.jpg" />
  2100. <Content Include="Content\images\Login\logo8.png" />
  2101. <Content Include="Content\images\Login\logo9.png" />
  2102. <Content Include="Content\images\Login\person.png" />
  2103. <Content Include="Content\images\Login\user1.jpg" />
  2104. <Content Include="Content\images\Login\user2.jpg" />
  2105. <Content Include="Content\images\Login\user3.jpg" />
  2106. <Content Include="Content\images\Login\user4.png" />
  2107. <Content Include="Content\images\Login\user5.png" />
  2108. <Content Include="Content\images\Login\variCode.png" />
  2109. <Content Include="Content\images\Login\verCode.png" />
  2110. <Content Include="Content\images\OnlineRegistrate\bj1.png" />
  2111. <Content Include="Content\images\OnlineRegistrate\error.png" />
  2112. <Content Include="Content\images\OnlineRegistrate\ewm_03.png" />
  2113. <Content Include="Content\images\OnlineRegistrate\gt.png" />
  2114. <Content Include="Content\images\OnlineRegistrate\jf.png" />
  2115. <Content Include="Content\images\OnlineRegistrate\loading.gif" />
  2116. <Content Include="Content\images\OnlineRegistrate\logo.png" />
  2117. <Content Include="Content\images\OnlineRegistrate\mrtx.jpg" />
  2118. <Content Include="Content\images\OnlineRegistrate\sctp.png" />
  2119. <Content Include="Content\images\OnlineRegistrate\shang_14.png" />
  2120. <Content Include="Content\images\OnlineRegistrate\tb.png" />
  2121. <Content Include="Content\images\OnlineRegistrate\tjtp.png" />
  2122. <Content Include="Content\images\OnlineRegistrate\UseGuid\ug01.png" />
  2123. <Content Include="Content\images\OnlineRegistrate\UseGuid\ug02.png" />
  2124. <Content Include="Content\images\OnlineRegistrate\UseGuid\ug03.png" />
  2125. <Content Include="Content\images\OnlineRegistrate\UseGuid\ug04.png" />
  2126. <Content Include="Content\images\OnlineRegistrate\UseGuid\ug05.png" />
  2127. <Content Include="Content\images\OnlineRegistrate\UseGuid\ug06.png" />
  2128. <Content Include="Content\images\OnlineRegistrate\UseGuid\ug07.png" />
  2129. <Content Include="Content\images\OnlineRegistrate\UseGuid\ug08.png" />
  2130. <Content Include="Content\images\OnlineRegistrate\UseGuid\ug09.png" />
  2131. <Content Include="Content\images\OnlineRegistrate\UseGuid\ug10.png" />
  2132. <Content Include="Content\images\OnlineRegistrate\UseGuid\ug11.png" />
  2133. <Content Include="Content\images\OnlineRegistrate\UseGuid\ug12.png" />
  2134. <Content Include="Content\images\OnlineRegistrate\UseGuid\ug13.png" />
  2135. <Content Include="Content\images\OnlineRegistrate\UseGuid\ug14.png" />
  2136. <Content Include="Content\images\OnlineRegistrate\UseGuid\ug15.png" />
  2137. <Content Include="Content\images\OnlineRegistrate\UseGuid\ug16.png" />
  2138. <Content Include="Content\images\OnlineRegistrate\UseGuid\ug17.png" />
  2139. <Content Include="Content\images\OnlineRegistrate\UseGuid\ug18.png" />
  2140. <Content Include="Content\images\OnlineRegistrate\UseGuid\ug19.png" />
  2141. <Content Include="Content\images\OnlineRegistrate\UseGuid\ug20.png" />
  2142. <Content Include="Content\images\OnlineRegistrate\UseGuid\ug21.png" />
  2143. <Content Include="Content\images\OnlineRegistrate\UseGuid\ug22.png" />
  2144. <Content Include="Content\images\OnlineRegistrate\wybm.png" />
  2145. <Content Include="Content\images\OnlineRegistrate\wybm2.png" />
  2146. <Content Include="Content\images\OnlineRegistrate\wybm3.png" />
  2147. <Content Include="Content\images\OnlineRegistrate\yuan.png" />
  2148. <Content Include="Content\images\OnlineRegistrate\zj_bg_11.png" />
  2149. <Content Include="Content\images\OnlineRegistrate\zyjs.png" />
  2150. <Content Include="Content\images\OnlineRegistrate\zyxq1.png" />
  2151. <Content Include="Content\images\phones.png" />
  2152. <Content Include="Content\images\plhome\aboutpage1.png" />
  2153. <Content Include="Content\images\plhome\aboutpage2.png" />
  2154. <Content Include="Content\images\plhome\acoment1.png" />
  2155. <Content Include="Content\images\plhome\acoment2.png" />
  2156. <Content Include="Content\images\plhome\aconment1.png" />
  2157. <Content Include="Content\images\plhome\aconment2.png" />
  2158. <Content Include="Content\images\plhome\addImg.png" />
  2159. <Content Include="Content\images\plhome\banna0.jpg" />
  2160. <Content Include="Content\images\plhome\banner_df.jpg" />
  2161. <Content Include="Content\images\plhome\logo.png" />
  2162. <Content Include="Content\images\plhome\make1.png" />
  2163. <Content Include="Content\images\plhome\make2.png" />
  2164. <Content Include="Content\images\plhome\new1.png" />
  2165. <Content Include="Content\images\plhome\new2.png" />
  2166. <Content Include="Content\images\plhome\newpage1.png" />
  2167. <Content Include="Content\images\plhome\newpage2.png" />
  2168. <Content Include="Content\images\plhome\news1.png" />
  2169. <Content Include="Content\images\plhome\news2.png" />
  2170. <Content Include="Content\images\plhome\product1.png" />
  2171. <Content Include="Content\images\plhome\product2.png" />
  2172. <Content Include="Content\images\plhome\table1.png" />
  2173. <Content Include="Content\images\plhome\table2.png" />
  2174. <Content Include="Content\images\plhome\wechat.png" />
  2175. <Content Include="Content\images\plhome\wor2.png" />
  2176. <Content Include="Content\images\plhome\work1.png" />
  2177. <Content Include="Content\images\plhome\work2.png" />
  2178. <Content Include="Content\images\plhome\添加图片.jpg" />
  2179. <Content Include="Content\images\procedure.jpg" />
  2180. <Content Include="Content\images\qj.jpg" />
  2181. <Content Include="Content\images\qjIcon.png" />
  2182. <Content Include="Content\images\qq.png" />
  2183. <Content Include="Content\images\receiveSendFeeManagement\charge1-1.jpg" />
  2184. <Content Include="Content\images\receiveSendFeeManagement\charge1-1.png" />
  2185. <Content Include="Content\images\receiveSendFeeManagement\charge1-10.jpg" />
  2186. <Content Include="Content\images\receiveSendFeeManagement\charge1-2.jpg" />
  2187. <Content Include="Content\images\receiveSendFeeManagement\charge1-2.png" />
  2188. <Content Include="Content\images\receiveSendFeeManagement\charge1-3.jpg" />
  2189. <Content Include="Content\images\receiveSendFeeManagement\charge1-3.png" />
  2190. <Content Include="Content\images\receiveSendFeeManagement\charge1-4.jpg" />
  2191. <Content Include="Content\images\receiveSendFeeManagement\charge1-4.png" />
  2192. <Content Include="Content\images\receiveSendFeeManagement\charge1-5.jpg" />
  2193. <Content Include="Content\images\receiveSendFeeManagement\charge1-6.jpg" />
  2194. <Content Include="Content\images\receiveSendFeeManagement\charge1-7.jpg" />
  2195. <Content Include="Content\images\receiveSendFeeManagement\charge1-8.jpg" />
  2196. <Content Include="Content\images\receiveSendFeeManagement\charge1-9.jpg" />
  2197. <Content Include="Content\images\receiveSendFeeManagement\close.png" />
  2198. <Content Include="Content\images\receiveSendFeeManagement\inSec1-10.png" />
  2199. <Content Include="Content\images\receiveSendFeeManagement\inSec1-5.png" />
  2200. <Content Include="Content\images\receiveSendFeeManagement\inSec1-6.png" />
  2201. <Content Include="Content\images\receiveSendFeeManagement\inSec1-7.png" />
  2202. <Content Include="Content\images\receiveSendFeeManagement\inSec1-8.png" />
  2203. <Content Include="Content\images\receiveSendFeeManagement\inSec1-9.png" />
  2204. <Content Include="Content\images\service.png" />
  2205. <Content Include="Content\images\SsoSystem\head1.png" />
  2206. <Content Include="Content\images\SsoSystem\head2.png" />
  2207. <Content Include="Content\images\SsoSystem\head3.png" />
  2208. <Content Include="Content\images\SsoSystem\head4-1.png" />
  2209. <Content Include="Content\images\SsoSystem\head4-2.png" />
  2210. <Content Include="Content\images\SsoSystem\head4-3.png" />
  2211. <Content Include="Content\images\SsoSystem\head4.png" />
  2212. <Content Include="Content\images\SsoSystem\headBg-green.jpg" />
  2213. <Content Include="Content\images\SsoSystem\headBg-red.jpg" />
  2214. <Content Include="Content\images\SsoSystem\headBg.jpg" />
  2215. <Content Include="Content\images\SsoSystem\inSec1-1-green.png" />
  2216. <Content Include="Content\images\SsoSystem\inSec1-1-red.png" />
  2217. <Content Include="Content\images\SsoSystem\inSec1-1.png" />
  2218. <Content Include="Content\images\SsoSystem\inSec1-10.png" />
  2219. <Content Include="Content\images\SsoSystem\inSec1-11.png" />
  2220. <Content Include="Content\images\SsoSystem\inSec1-12.png" />
  2221. <Content Include="Content\images\SsoSystem\inSec1-13.png" />
  2222. <Content Include="Content\images\SsoSystem\inSec1-14.png" />
  2223. <Content Include="Content\images\SsoSystem\inSec1-15.png" />
  2224. <Content Include="Content\images\SsoSystem\inSec1-16.png" />
  2225. <Content Include="Content\images\SsoSystem\inSec1-17.png" />
  2226. <Content Include="Content\images\SsoSystem\inSec1-18.png" />
  2227. <Content Include="Content\images\SsoSystem\inSec1-19.png" />
  2228. <Content Include="Content\images\SsoSystem\inSec1-2.png" />
  2229. <Content Include="Content\images\SsoSystem\inSec1-20.png" />
  2230. <Content Include="Content\images\SsoSystem\inSec1-21.png" />
  2231. <Content Include="Content\images\SsoSystem\inSec1-22.png" />
  2232. <Content Include="Content\images\SsoSystem\inSec1-3.png" />
  2233. <Content Include="Content\images\SsoSystem\inSec1-4.png" />
  2234. <Content Include="Content\images\SsoSystem\inSec1-5.png" />
  2235. <Content Include="Content\images\SsoSystem\inSec1-6.png" />
  2236. <Content Include="Content\images\SsoSystem\inSec1-7.png" />
  2237. <Content Include="Content\images\SsoSystem\inSec1-8.png" />
  2238. <Content Include="Content\images\SsoSystem\inSec1-9.png" />
  2239. <Content Include="Content\images\SsoSystem\inSec2-1.png" />
  2240. <Content Include="Content\images\SsoSystem\inSec2-10.png" />
  2241. <Content Include="Content\images\SsoSystem\inSec2-11.png" />
  2242. <Content Include="Content\images\SsoSystem\inSec2-12.png" />
  2243. <Content Include="Content\images\SsoSystem\inSec2-13.png" />
  2244. <Content Include="Content\images\SsoSystem\inSec2-14.png" />
  2245. <Content Include="Content\images\SsoSystem\inSec2-15.png" />
  2246. <Content Include="Content\images\SsoSystem\inSec2-16.png" />
  2247. <Content Include="Content\images\SsoSystem\inSec2-17.png" />
  2248. <Content Include="Content\images\SsoSystem\inSec2-18.png" />
  2249. <Content Include="Content\images\SsoSystem\inSec2-2.png" />
  2250. <Content Include="Content\images\SsoSystem\inSec2-3.png" />
  2251. <Content Include="Content\images\SsoSystem\inSec2-4.png" />
  2252. <Content Include="Content\images\SsoSystem\inSec2-5.png" />
  2253. <Content Include="Content\images\SsoSystem\inSec2-6.png" />
  2254. <Content Include="Content\images\SsoSystem\inSec2-7.png" />
  2255. <Content Include="Content\images\SsoSystem\inSec2-8.png" />
  2256. <Content Include="Content\images\SsoSystem\inSec2-9.png" />
  2257. <Content Include="Content\images\SsoSystem\inSec3-1-green.png" />
  2258. <Content Include="Content\images\SsoSystem\inSec3-1-red.png" />
  2259. <Content Include="Content\images\SsoSystem\inSec3-1.png" />
  2260. <Content Include="Content\images\SsoSystem\inSec3-10.png" />
  2261. <Content Include="Content\images\SsoSystem\inSec3-11.png" />
  2262. <Content Include="Content\images\SsoSystem\inSec3-12.png" />
  2263. <Content Include="Content\images\SsoSystem\inSec3-13.png" />
  2264. <Content Include="Content\images\SsoSystem\inSec3-14.png" />
  2265. <Content Include="Content\images\SsoSystem\inSec3-15.png" />
  2266. <Content Include="Content\images\SsoSystem\inSec3-2.png" />
  2267. <Content Include="Content\images\SsoSystem\inSec3-3.png" />
  2268. <Content Include="Content\images\SsoSystem\inSec3-4.png" />
  2269. <Content Include="Content\images\SsoSystem\inSec3-5.png" />
  2270. <Content Include="Content\images\SsoSystem\inSec3-6.png" />
  2271. <Content Include="Content\images\SsoSystem\inSec3-7.png" />
  2272. <Content Include="Content\images\SsoSystem\inSec3-8.png" />
  2273. <Content Include="Content\images\SsoSystem\inSec3-9.png" />
  2274. <Content Include="Content\images\SsoSystem\inSec5-1.png" />
  2275. <Content Include="Content\images\SsoSystem\inSec5-2.png" />
  2276. <Content Include="Content\images\SsoSystem\inSec5-3.png" />
  2277. <Content Include="Content\images\SsoSystem\inSec5-4.png" />
  2278. <Content Include="Content\images\SsoSystem\inSec5-5.png" />
  2279. <Content Include="Content\images\SsoSystem\news1-1-green.png" />
  2280. <Content Include="Content\images\SsoSystem\news1-1-red.png" />
  2281. <Content Include="Content\images\SsoSystem\news1-1.png" />
  2282. <Content Include="Content\images\SsoSystem\news1-2.png" />
  2283. <Content Include="Content\images\SsoSystem\news1-3.png" />
  2284. <Content Include="Content\images\SsoSystem\news1-4.png" />
  2285. <Content Include="Content\images\SsoSystem\news1-5.png" />
  2286. <Content Include="Content\images\SsoSystem\news1-6.png" />
  2287. <Content Include="Content\images\SsoSystem\news2-1.png" />
  2288. <Content Include="Content\images\SsoSystem\noLogin.png" />
  2289. <Content Include="Content\images\SsoSystem\search.png" />
  2290. <Content Include="Content\images\SsoSystem\user.jpg" />
  2291. <Content Include="Content\jquery\plugin\jqprint\jqprint.css" />
  2292. <Content Include="Content\jquery\plugin\jqprint\jQuery.print.js" />
  2293. <Content Include="Content\jquery\plugin\jSignature.min.js" />
  2294. <Content Include="Content\jquery\plugin\swiper\swiper-4.3.3.min.css" />
  2295. <Content Include="Content\jquery\plugin\swiper\swiper-4.3.3.min.js" />
  2296. <Content Include="Content\js\bootstrap.js" />
  2297. <Content Include="Content\js\dormitory\main.js" />
  2298. <Content Include="Content\css\style.css" />
  2299. <Content Include="Content\css\swiper.min.css" />
  2300. <Content Include="Content\datepicker\calendar.js" />
  2301. <Content Include="Content\datepicker\lang\en.js" />
  2302. <Content Include="Content\datepicker\lang\zh-cn.js" />
  2303. <Content Include="Content\datepicker\lang\zh-tw.js" />
  2304. <Content Include="Content\datepicker\skin\datePicker.gif" />
  2305. <Content Include="Content\datepicker\skin\datePicker.png" />
  2306. <Content Include="Content\datepicker\skin\default\datepicker-dev.css" />
  2307. <Content Include="Content\datepicker\skin\default\datepicker.css" />
  2308. <Content Include="Content\datepicker\skin\default\img.gif" />
  2309. <Content Include="Content\datepicker\skin\default\img.png" />
  2310. <Content Include="Content\datepicker\skin\WdatePicker.css" />
  2311. <Content Include="Content\datepicker\skin\whyGreen\bg.jpg" />
  2312. <Content Include="Content\datepicker\skin\whyGreen\datepicker.css" />
  2313. <Content Include="Content\datepicker\skin\whyGreen\img.gif" />
  2314. <Content Include="Content\datepicker\WdatePicker.js" />
  2315. <Content Include="Content\datepicker\开发包\lang\en.js" />
  2316. <Content Include="Content\datepicker\开发包\lang\zh-cn.js" />
  2317. <Content Include="Content\datepicker\开发包\lang\zh-tw.js" />
  2318. <Content Include="Content\datepicker\开发包\readme.txt" />
  2319. <Content Include="Content\datepicker\开发包\skin\datePicker.gif" />
  2320. <Content Include="Content\datepicker\开发包\skin\default\datepicker.css" />
  2321. <Content Include="Content\datepicker\开发包\skin\default\img.gif" />
  2322. <Content Include="Content\datepicker\开发包\skin\WdatePicker.css" />
  2323. <Content Include="Content\datepicker\开发包\skin\whyGreen\bg.jpg" />
  2324. <Content Include="Content\datepicker\开发包\skin\whyGreen\datepicker.css" />
  2325. <Content Include="Content\datepicker\开发包\skin\whyGreen\img.gif" />
  2326. <Content Include="Content\echarts\charts_comm.js" />
  2327. <Content Include="Content\echarts\china.js" />
  2328. <Content Include="Content\echarts\echarts.js" />
  2329. <Content Include="Content\echarts\echarts.min.js" />
  2330. <Content Include="Content\echarts\extension\bmap.min.js" />
  2331. <Content Include="Content\echarts\extension\china.js" />
  2332. <Content Include="Content\echarts\extension\dataTool.min.js" />
  2333. <Content Include="Content\echarts\extension\echarts-gl.min.js" />
  2334. <Content Include="Content\echarts\extension\echarts.min.js" />
  2335. <Content Include="Content\echarts\extension\ecStat.min.js" />
  2336. <Content Include="Content\echarts\extension\simplex.js" />
  2337. <Content Include="Content\echarts\extension\world.js" />
  2338. <Content Include="Content\echarts\gl.js" />
  2339. <Content Include="Content\echarts\map\china.js" />
  2340. <Content Include="Content\echarts\map\china\anhui.js" />
  2341. <Content Include="Content\echarts\map\china\aomen.js" />
  2342. <Content Include="Content\echarts\map\china\beijing.js" />
  2343. <Content Include="Content\echarts\map\china\chongqing.js" />
  2344. <Content Include="Content\echarts\map\china\fujian.js" />
  2345. <Content Include="Content\echarts\map\china\gansu.js" />
  2346. <Content Include="Content\echarts\map\china\guangdong.js" />
  2347. <Content Include="Content\echarts\map\china\guangxi.js" />
  2348. <Content Include="Content\echarts\map\china\guizhou.js" />
  2349. <Content Include="Content\echarts\map\china\hainan.js" />
  2350. <Content Include="Content\echarts\map\china\hebei.js" />
  2351. <Content Include="Content\echarts\map\china\heilongjiang.js" />
  2352. <Content Include="Content\echarts\map\china\henan.js" />
  2353. <Content Include="Content\echarts\map\china\hubei.js" />
  2354. <Content Include="Content\echarts\map\china\hunan.js" />
  2355. <Content Include="Content\echarts\map\china\jiangsu.js" />
  2356. <Content Include="Content\echarts\map\china\jiangxi.js" />
  2357. <Content Include="Content\echarts\map\china\jilin.js" />
  2358. <Content Include="Content\echarts\map\china\liaoning.js" />
  2359. <Content Include="Content\echarts\map\china\neimenggu.js" />
  2360. <Content Include="Content\echarts\map\china\ningxia.js" />
  2361. <Content Include="Content\echarts\map\china\qinghai.js" />
  2362. <Content Include="Content\echarts\map\china\shandong.js" />
  2363. <Content Include="Content\echarts\map\china\shanghai.js" />
  2364. <Content Include="Content\echarts\map\china\shanxi.js" />
  2365. <Content Include="Content\echarts\map\china\shanxi1.js" />
  2366. <Content Include="Content\echarts\map\china\sichuan.js" />
  2367. <Content Include="Content\echarts\map\china\taiwan.js" />
  2368. <Content Include="Content\echarts\map\china\tianjin.js" />
  2369. <Content Include="Content\echarts\map\china\xianggang.js" />
  2370. <Content Include="Content\echarts\map\china\xinjiang.js" />
  2371. <Content Include="Content\echarts\map\china\xizang.js" />
  2372. <Content Include="Content\echarts\map\china\yunnan.js" />
  2373. <Content Include="Content\echarts\map\china\zhejiang.js" />
  2374. <Content Include="Content\echarts\map\world.js" />
  2375. <Content Include="Content\flow-ui\flow.css" />
  2376. <Content Include="Content\flow-ui\flow.js" />
  2377. <Content Include="Content\flow-ui\img\1.png" />
  2378. <Content Include="Content\flow-ui\img\10.png" />
  2379. <Content Include="Content\flow-ui\img\11.png" />
  2380. <Content Include="Content\flow-ui\img\2.png" />
  2381. <Content Include="Content\flow-ui\img\3.png" />
  2382. <Content Include="Content\flow-ui\img\4.png" />
  2383. <Content Include="Content\flow-ui\img\5.png" />
  2384. <Content Include="Content\flow-ui\img\6.png" />
  2385. <Content Include="Content\flow-ui\img\7.png" />
  2386. <Content Include="Content\flow-ui\img\9.png" />
  2387. <Content Include="Content\flow-ui\img\gooflow_blank.gif" />
  2388. <Content Include="Content\flow-ui\img\gooflow_blank2.gif" />
  2389. <Content Include="Content\flow-ui\img\gooflow_blank3.gif" />
  2390. <Content Include="Content\flow-ui\img\gooflow_bullet.png" />
  2391. <Content Include="Content\flow-ui\img\GooFlow_line_oper.png" />
  2392. <Content Include="Content\flow-ui\img\ui_close.png" />
  2393. <Content Include="Content\flow-ui\img\wallbg.png" />
  2394. <Content Include="Content\fontApp\iconfont.css" />
  2395. <Content Include="Content\fontApp\iconfont.js" />
  2396. <Content Include="Content\fontApp\iconfont.svg" />
  2397. <Content Include="Content\font\css\font-awesome.css" />
  2398. <Content Include="Content\font\css\font-awesome.min.css" />
  2399. <Content Include="Content\font\fonts\fontawesome-webfont.svg" />
  2400. <Content Include="Content\font\learunfont\iconfont.css" />
  2401. <Content Include="Content\font\learunfont\iconfont.svg" />
  2402. <Content Include="Content\images\beijing.png" />
  2403. <Content Include="Content\images\floor\bg.jpg" />
  2404. <Content Include="Content\images\floor\bg2.jpg" />
  2405. <Content Include="Content\images\floor\bg3.jpg" />
  2406. <Content Include="Content\images\floor\corr1-1.png" />
  2407. <Content Include="Content\images\floor\corr1-2.png" />
  2408. <Content Include="Content\images\floor\corr1.jpg" />
  2409. <Content Include="Content\images\floor\dorm1-1.png" />
  2410. <Content Include="Content\images\floor\dorm1-2.png" />
  2411. <Content Include="Content\images\floor\dorm1-3.png" />
  2412. <Content Include="Content\images\floor\dorm1.jpg" />
  2413. <Content Include="Content\images\floor\inSec1-1.png" />
  2414. <Content Include="Content\images\floor\inSec1-10.png" />
  2415. <Content Include="Content\images\floor\inSec1-11.png" />
  2416. <Content Include="Content\images\floor\inSec1-12.png" />
  2417. <Content Include="Content\images\floor\inSec1-2.png" />
  2418. <Content Include="Content\images\floor\inSec1-3.png" />
  2419. <Content Include="Content\images\floor\inSec1-4.png" />
  2420. <Content Include="Content\images\floor\inSec1-5.png" />
  2421. <Content Include="Content\images\floor\inSec1-6.png" />
  2422. <Content Include="Content\images\floor\inSec1-7.png" />
  2423. <Content Include="Content\images\floor\inSec1-8.png" />
  2424. <Content Include="Content\images\floor\inSec1-9.png" />
  2425. <Content Include="Content\images\floor\room1-1.png" />
  2426. <Content Include="Content\images\floor\room1-2.png" />
  2427. <Content Include="Content\images\floor\room1.jpg" />
  2428. <Content Include="Content\images\floor\unit1-1.png" />
  2429. <Content Include="Content\images\floor\unit1-2.png" />
  2430. <Content Include="Content\images\logins\login1.png" />
  2431. <Content Include="Content\images\logins\login2.png" />
  2432. <Content Include="Content\images\logins\login3.png" />
  2433. <Content Include="Content\images\logins\login4 - 副本.png" />
  2434. <Content Include="Content\images\logins\login4.png" />
  2435. <Content Include="Content\images\logins\login5.png" />
  2436. <Content Include="Content\images\logins\loginBg.jpg" />
  2437. <Content Include="Content\images\logins\loginCode.jpg" />
  2438. <Content Include="Content\images\Login\logow.png" />
  2439. <Content Include="Content\images\logo.jpg" />
  2440. <Content Include="Content\images\logo\accordion.png" />
  2441. <Content Include="Content\images\logo\applogo.png" />
  2442. <Content Include="Content\images\logo\default.png" />
  2443. <Content Include="Content\images\logo\top.png" />
  2444. <Content Include="Content\images\logo\windows.png" />
  2445. <Content Include="Content\images\phone.png" />
  2446. <Content Include="Content\images\404.png" />
  2447. <Content Include="Content\images\add.jpg" />
  2448. <Content Include="Content\images\adminDefault.png" />
  2449. <Content Include="Content\images\arrow1.png" />
  2450. <Content Include="Content\images\codeGenerator\multitable0.png" />
  2451. <Content Include="Content\images\codeGenerator\multitable1.png" />
  2452. <Content Include="Content\images\codeGenerator\serviceCode0.png" />
  2453. <Content Include="Content\images\codeGenerator\serviceCode1.png" />
  2454. <Content Include="Content\images\codeGenerator\singletable0.png" />
  2455. <Content Include="Content\images\codeGenerator\singletable1.png" />
  2456. <Content Include="Content\images\codeGenerator\report1.png" />
  2457. <Content Include="Content\images\codeGenerator\report0.png" />
  2458. <Content Include="Content\images\codeGenerator\edit1.png" />
  2459. <Content Include="Content\images\codeGenerator\edit0.png" />
  2460. <Content Include="Content\images\codeGenerator\workflow0.png" />
  2461. <Content Include="Content\images\codeGenerator\workflow1.png" />
  2462. <Content Include="Content\images\dev.icon.png" />
  2463. <Content Include="Content\images\filetype\apk.png" />
  2464. <Content Include="Content\images\filetype\avi.png" />
  2465. <Content Include="Content\images\filetype\bmp.png" />
  2466. <Content Include="Content\images\filetype\cab.png" />
  2467. <Content Include="Content\images\filetype\cs.png" />
  2468. <Content Include="Content\images\filetype\doc.png" />
  2469. <Content Include="Content\images\filetype\docx.png" />
  2470. <Content Include="Content\images\filetype\file.png" />
  2471. <Content Include="Content\images\filetype\folder.png" />
  2472. <Content Include="Content\images\filetype\gif.png" />
  2473. <Content Include="Content\images\filetype\htm.png" />
  2474. <Content Include="Content\images\filetype\html.png" />
  2475. <Content Include="Content\images\filetype\ico.png" />
  2476. <Content Include="Content\images\filetype\java.png" />
  2477. <Content Include="Content\images\filetype\jpeg.png" />
  2478. <Content Include="Content\images\filetype\jpg.png" />
  2479. <Content Include="Content\images\filetype\log.png" />
  2480. <Content Include="Content\images\filetype\mp3.png" />
  2481. <Content Include="Content\images\filetype\mp4.png" />
  2482. <Content Include="Content\images\filetype\pdf.png" />
  2483. <Content Include="Content\images\filetype\png - 副本.png" />
  2484. <Content Include="Content\images\filetype\png.png" />
  2485. <Content Include="Content\images\filetype\ppt.png" />
  2486. <Content Include="Content\images\filetype\pptx.png" />
  2487. <Content Include="Content\images\filetype\psd.png" />
  2488. <Content Include="Content\images\filetype\rar.png" />
  2489. <Content Include="Content\images\filetype\Scheme.png" />
  2490. <Content Include="Content\images\filetype\swf.png" />
  2491. <Content Include="Content\images\filetype\txt.png" />
  2492. <Content Include="Content\images\filetype\xls.png" />
  2493. <Content Include="Content\images\filetype\xlsx.png" />
  2494. <Content Include="Content\images\filetype\xml.png" />
  2495. <Content Include="Content\images\filetype\zip.png" />
  2496. <Content Include="Content\images\guide\arrow.png" />
  2497. <Content Include="Content\images\guide\arrow1.png" />
  2498. <Content Include="Content\images\guide\arrow2.png" />
  2499. <Content Include="Content\images\head\off-boy.jpg" />
  2500. <Content Include="Content\images\head\off-girl.jpg" />
  2501. <Content Include="Content\images\head\on-boy.jpg" />
  2502. <Content Include="Content\images\head\on-girl.jpg" />
  2503. <Content Include="Content\images\ie-loader.gif" />
  2504. <Content Include="Content\images\arrow.png" />
  2505. <Content Include="Content\images\datepicker_icon.png" />
  2506. <Content Include="Content\images\iframebg.png" />
  2507. <Content Include="Content\images\jfgrid\nodata.jpg" />
  2508. <Content Include="Content\images\learunim\emotion\emotion.css" />
  2509. <Content Include="Content\images\learunim\emotion\emotion.html" />
  2510. <Content Include="Content\images\learunim\emotion\emotion.js" />
  2511. <Content Include="Content\images\learunim\emotion\images\0.gif" />
  2512. <Content Include="Content\images\learunim\emotion\images\babycat\C_0001.gif" />
  2513. <Content Include="Content\images\learunim\emotion\images\babycat\C_0002.gif" />
  2514. <Content Include="Content\images\learunim\emotion\images\babycat\C_0003.gif" />
  2515. <Content Include="Content\images\learunim\emotion\images\babycat\C_0004.gif" />
  2516. <Content Include="Content\images\learunim\emotion\images\babycat\C_0005.gif" />
  2517. <Content Include="Content\images\learunim\emotion\images\babycat\C_0006.gif" />
  2518. <Content Include="Content\images\learunim\emotion\images\babycat\C_0007.gif" />
  2519. <Content Include="Content\images\learunim\emotion\images\babycat\C_0008.gif" />
  2520. <Content Include="Content\images\learunim\emotion\images\babycat\C_0009.gif" />
  2521. <Content Include="Content\images\learunim\emotion\images\babycat\C_0010.gif" />
  2522. <Content Include="Content\images\learunim\emotion\images\babycat\C_0011.gif" />
  2523. <Content Include="Content\images\learunim\emotion\images\babycat\C_0012.gif" />
  2524. <Content Include="Content\images\learunim\emotion\images\babycat\C_0013.gif" />
  2525. <Content Include="Content\images\learunim\emotion\images\babycat\C_0014.gif" />
  2526. <Content Include="Content\images\learunim\emotion\images\babycat\C_0015.gif" />
  2527. <Content Include="Content\images\learunim\emotion\images\babycat\C_0016.gif" />
  2528. <Content Include="Content\images\learunim\emotion\images\babycat\C_0017.gif" />
  2529. <Content Include="Content\images\learunim\emotion\images\babycat\C_0018.gif" />
  2530. <Content Include="Content\images\learunim\emotion\images\babycat\C_0019.gif" />
  2531. <Content Include="Content\images\learunim\emotion\images\babycat\C_0020.gif" />
  2532. <Content Include="Content\images\learunim\emotion\images\bface.gif" />
  2533. <Content Include="Content\images\learunim\emotion\images\bobo\b_0001.gif" />
  2534. <Content Include="Content\images\learunim\emotion\images\bobo\b_0002.gif" />
  2535. <Content Include="Content\images\learunim\emotion\images\bobo\b_0003.gif" />
  2536. <Content Include="Content\images\learunim\emotion\images\bobo\b_0004.gif" />
  2537. <Content Include="Content\images\learunim\emotion\images\bobo\b_0005.gif" />
  2538. <Content Include="Content\images\learunim\emotion\images\bobo\b_0006.gif" />
  2539. <Content Include="Content\images\learunim\emotion\images\bobo\b_0007.gif" />
  2540. <Content Include="Content\images\learunim\emotion\images\bobo\b_0008.gif" />
  2541. <Content Include="Content\images\learunim\emotion\images\bobo\b_0009.gif" />
  2542. <Content Include="Content\images\learunim\emotion\images\bobo\b_0010.gif" />
  2543. <Content Include="Content\images\learunim\emotion\images\bobo\b_0011.gif" />
  2544. <Content Include="Content\images\learunim\emotion\images\bobo\b_0012.gif" />
  2545. <Content Include="Content\images\learunim\emotion\images\bobo\b_0013.gif" />
  2546. <Content Include="Content\images\learunim\emotion\images\bobo\b_0014.gif" />
  2547. <Content Include="Content\images\learunim\emotion\images\bobo\b_0015.gif" />
  2548. <Content Include="Content\images\learunim\emotion\images\bobo\b_0016.gif" />
  2549. <Content Include="Content\images\learunim\emotion\images\bobo\b_0017.gif" />
  2550. <Content Include="Content\images\learunim\emotion\images\bobo\b_0018.gif" />
  2551. <Content Include="Content\images\learunim\emotion\images\bobo\b_0019.gif" />
  2552. <Content Include="Content\images\learunim\emotion\images\bobo\b_0020.gif" />
  2553. <Content Include="Content\images\learunim\emotion\images\bobo\b_0021.gif" />
  2554. <Content Include="Content\images\learunim\emotion\images\bobo\b_0022.gif" />
  2555. <Content Include="Content\images\learunim\emotion\images\bobo\b_0023.gif" />
  2556. <Content Include="Content\images\learunim\emotion\images\bobo\b_0024.gif" />
  2557. <Content Include="Content\images\learunim\emotion\images\bobo\b_0025.gif" />
  2558. <Content Include="Content\images\learunim\emotion\images\bobo\b_0026.gif" />
  2559. <Content Include="Content\images\learunim\emotion\images\bobo\b_0027.gif" />
  2560. <Content Include="Content\images\learunim\emotion\images\bobo\b_0028.gif" />
  2561. <Content Include="Content\images\learunim\emotion\images\bobo\b_0029.gif" />
  2562. <Content Include="Content\images\learunim\emotion\images\bobo\b_0030.gif" />
  2563. <Content Include="Content\images\learunim\emotion\images\bobo\b_0031.gif" />
  2564. <Content Include="Content\images\learunim\emotion\images\bobo\b_0032.gif" />
  2565. <Content Include="Content\images\learunim\emotion\images\bobo\b_0033.gif" />
  2566. <Content Include="Content\images\learunim\emotion\images\bobo\b_0034.gif" />
  2567. <Content Include="Content\images\learunim\emotion\images\bobo\b_0035.gif" />
  2568. <Content Include="Content\images\learunim\emotion\images\bobo\b_0036.gif" />
  2569. <Content Include="Content\images\learunim\emotion\images\bobo\b_0037.gif" />
  2570. <Content Include="Content\images\learunim\emotion\images\bobo\b_0038.gif" />
  2571. <Content Include="Content\images\learunim\emotion\images\bobo\b_0039.gif" />
  2572. <Content Include="Content\images\learunim\emotion\images\bobo\b_0040.gif" />
  2573. <Content Include="Content\images\learunim\emotion\images\bobo\b_0041.gif" />
  2574. <Content Include="Content\images\learunim\emotion\images\bobo\b_0042.gif" />
  2575. <Content Include="Content\images\learunim\emotion\images\bobo\b_0043.gif" />
  2576. <Content Include="Content\images\learunim\emotion\images\bobo\b_0044.gif" />
  2577. <Content Include="Content\images\learunim\emotion\images\bobo\b_0045.gif" />
  2578. <Content Include="Content\images\learunim\emotion\images\bobo\b_0046.gif" />
  2579. <Content Include="Content\images\learunim\emotion\images\bobo\b_0047.gif" />
  2580. <Content Include="Content\images\learunim\emotion\images\bobo\b_0048.gif" />
  2581. <Content Include="Content\images\learunim\emotion\images\bobo\b_0049.gif" />
  2582. <Content Include="Content\images\learunim\emotion\images\bobo\b_0050.gif" />
  2583. <Content Include="Content\images\learunim\emotion\images\bobo\b_0051.gif" />
  2584. <Content Include="Content\images\learunim\emotion\images\bobo\b_0052.gif" />
  2585. <Content Include="Content\images\learunim\emotion\images\bobo\b_0053.gif" />
  2586. <Content Include="Content\images\learunim\emotion\images\bobo\b_0054.gif" />
  2587. <Content Include="Content\images\learunim\emotion\images\bobo\b_0055.gif" />
  2588. <Content Include="Content\images\learunim\emotion\images\bobo\b_0056.gif" />
  2589. <Content Include="Content\images\learunim\emotion\images\bobo\b_0057.gif" />
  2590. <Content Include="Content\images\learunim\emotion\images\bobo\b_0058.gif" />
  2591. <Content Include="Content\images\learunim\emotion\images\bobo\b_0059.gif" />
  2592. <Content Include="Content\images\learunim\emotion\images\bobo\b_0060.gif" />
  2593. <Content Include="Content\images\learunim\emotion\images\bobo\b_0061.gif" />
  2594. <Content Include="Content\images\learunim\emotion\images\bobo\b_0062.gif" />
  2595. <Content Include="Content\images\learunim\emotion\images\bobo\b_0063.gif" />
  2596. <Content Include="Content\images\learunim\emotion\images\cface.gif" />
  2597. <Content Include="Content\images\learunim\emotion\images\face\i_f01.gif" />
  2598. <Content Include="Content\images\learunim\emotion\images\face\i_f02.gif" />
  2599. <Content Include="Content\images\learunim\emotion\images\face\i_f03.gif" />
  2600. <Content Include="Content\images\learunim\emotion\images\face\i_f04.gif" />
  2601. <Content Include="Content\images\learunim\emotion\images\face\i_f05.gif" />
  2602. <Content Include="Content\images\learunim\emotion\images\face\i_f06.gif" />
  2603. <Content Include="Content\images\learunim\emotion\images\face\i_f07.gif" />
  2604. <Content Include="Content\images\learunim\emotion\images\face\i_f08.gif" />
  2605. <Content Include="Content\images\learunim\emotion\images\face\i_f09.gif" />
  2606. <Content Include="Content\images\learunim\emotion\images\face\i_f10.gif" />
  2607. <Content Include="Content\images\learunim\emotion\images\face\i_f11.gif" />
  2608. <Content Include="Content\images\learunim\emotion\images\face\i_f12.gif" />
  2609. <Content Include="Content\images\learunim\emotion\images\face\i_f13.gif" />
  2610. <Content Include="Content\images\learunim\emotion\images\face\i_f14.gif" />
  2611. <Content Include="Content\images\learunim\emotion\images\face\i_f15.gif" />
  2612. <Content Include="Content\images\learunim\emotion\images\face\i_f16.gif" />
  2613. <Content Include="Content\images\learunim\emotion\images\face\i_f17.gif" />
  2614. <Content Include="Content\images\learunim\emotion\images\face\i_f18.gif" />
  2615. <Content Include="Content\images\learunim\emotion\images\face\i_f19.gif" />
  2616. <Content Include="Content\images\learunim\emotion\images\face\i_f20.gif" />
  2617. <Content Include="Content\images\learunim\emotion\images\face\i_f21.gif" />
  2618. <Content Include="Content\images\learunim\emotion\images\face\i_f22.gif" />
  2619. <Content Include="Content\images\learunim\emotion\images\face\i_f23.gif" />
  2620. <Content Include="Content\images\learunim\emotion\images\face\i_f24.gif" />
  2621. <Content Include="Content\images\learunim\emotion\images\face\i_f25.gif" />
  2622. <Content Include="Content\images\learunim\emotion\images\face\i_f26.gif" />
  2623. <Content Include="Content\images\learunim\emotion\images\face\i_f27.gif" />
  2624. <Content Include="Content\images\learunim\emotion\images\face\i_f28.gif" />
  2625. <Content Include="Content\images\learunim\emotion\images\face\i_f29.gif" />
  2626. <Content Include="Content\images\learunim\emotion\images\face\i_f30.gif" />
  2627. <Content Include="Content\images\learunim\emotion\images\face\i_f31.gif" />
  2628. <Content Include="Content\images\learunim\emotion\images\face\i_f32.gif" />
  2629. <Content Include="Content\images\learunim\emotion\images\face\i_f33.gif" />
  2630. <Content Include="Content\images\learunim\emotion\images\face\i_f34.gif" />
  2631. <Content Include="Content\images\learunim\emotion\images\face\i_f35.gif" />
  2632. <Content Include="Content\images\learunim\emotion\images\face\i_f36.gif" />
  2633. <Content Include="Content\images\learunim\emotion\images\face\i_f37.gif" />
  2634. <Content Include="Content\images\learunim\emotion\images\face\i_f38.gif" />
  2635. <Content Include="Content\images\learunim\emotion\images\face\i_f39.gif" />
  2636. <Content Include="Content\images\learunim\emotion\images\face\i_f40.gif" />
  2637. <Content Include="Content\images\learunim\emotion\images\face\i_f41.gif" />
  2638. <Content Include="Content\images\learunim\emotion\images\face\i_f42.gif" />
  2639. <Content Include="Content\images\learunim\emotion\images\face\i_f43.gif" />
  2640. <Content Include="Content\images\learunim\emotion\images\face\i_f44.gif" />
  2641. <Content Include="Content\images\learunim\emotion\images\face\i_f45.gif" />
  2642. <Content Include="Content\images\learunim\emotion\images\face\i_f46.gif" />
  2643. <Content Include="Content\images\learunim\emotion\images\face\i_f47.gif" />
  2644. <Content Include="Content\images\learunim\emotion\images\face\i_f48.gif" />
  2645. <Content Include="Content\images\learunim\emotion\images\face\i_f49.gif" />
  2646. <Content Include="Content\images\learunim\emotion\images\face\i_f50.gif" />
  2647. <Content Include="Content\images\learunim\emotion\images\fface.gif" />
  2648. <Content Include="Content\images\learunim\emotion\images\jx2\j_0001.gif" />
  2649. <Content Include="Content\images\learunim\emotion\images\jx2\j_0002.gif" />
  2650. <Content Include="Content\images\learunim\emotion\images\jx2\j_0003.gif" />
  2651. <Content Include="Content\images\learunim\emotion\images\jx2\j_0004.gif" />
  2652. <Content Include="Content\images\learunim\emotion\images\jx2\j_0005.gif" />
  2653. <Content Include="Content\images\learunim\emotion\images\jx2\j_0006.gif" />
  2654. <Content Include="Content\images\learunim\emotion\images\jx2\j_0007.gif" />
  2655. <Content Include="Content\images\learunim\emotion\images\jx2\j_0008.gif" />
  2656. <Content Include="Content\images\learunim\emotion\images\jx2\j_0009.gif" />
  2657. <Content Include="Content\images\learunim\emotion\images\jx2\j_0010.gif" />
  2658. <Content Include="Content\images\learunim\emotion\images\jx2\j_0011.gif" />
  2659. <Content Include="Content\images\learunim\emotion\images\jx2\j_0012.gif" />
  2660. <Content Include="Content\images\learunim\emotion\images\jx2\j_0013.gif" />
  2661. <Content Include="Content\images\learunim\emotion\images\jx2\j_0014.gif" />
  2662. <Content Include="Content\images\learunim\emotion\images\jx2\j_0015.gif" />
  2663. <Content Include="Content\images\learunim\emotion\images\jx2\j_0016.gif" />
  2664. <Content Include="Content\images\learunim\emotion\images\jx2\j_0017.gif" />
  2665. <Content Include="Content\images\learunim\emotion\images\jx2\j_0018.gif" />
  2666. <Content Include="Content\images\learunim\emotion\images\jx2\j_0019.gif" />
  2667. <Content Include="Content\images\learunim\emotion\images\jx2\j_0020.gif" />
  2668. <Content Include="Content\images\learunim\emotion\images\jx2\j_0021.gif" />
  2669. <Content Include="Content\images\learunim\emotion\images\jx2\j_0022.gif" />
  2670. <Content Include="Content\images\learunim\emotion\images\jx2\j_0023.gif" />
  2671. <Content Include="Content\images\learunim\emotion\images\jx2\j_0024.gif" />
  2672. <Content Include="Content\images\learunim\emotion\images\jx2\j_0025.gif" />
  2673. <Content Include="Content\images\learunim\emotion\images\jx2\j_0026.gif" />
  2674. <Content Include="Content\images\learunim\emotion\images\jx2\j_0027.gif" />
  2675. <Content Include="Content\images\learunim\emotion\images\jx2\j_0028.gif" />
  2676. <Content Include="Content\images\learunim\emotion\images\jx2\j_0029.gif" />
  2677. <Content Include="Content\images\learunim\emotion\images\jx2\j_0030.gif" />
  2678. <Content Include="Content\images\learunim\emotion\images\jx2\j_0031.gif" />
  2679. <Content Include="Content\images\learunim\emotion\images\jx2\j_0032.gif" />
  2680. <Content Include="Content\images\learunim\emotion\images\jx2\j_0033.gif" />
  2681. <Content Include="Content\images\learunim\emotion\images\jx2\j_0034.gif" />
  2682. <Content Include="Content\images\learunim\emotion\images\jx2\j_0035.gif" />
  2683. <Content Include="Content\images\learunim\emotion\images\jx2\j_0036.gif" />
  2684. <Content Include="Content\images\learunim\emotion\images\jx2\j_0037.gif" />
  2685. <Content Include="Content\images\learunim\emotion\images\jx2\j_0038.gif" />
  2686. <Content Include="Content\images\learunim\emotion\images\jx2\j_0039.gif" />
  2687. <Content Include="Content\images\learunim\emotion\images\jx2\j_0040.gif" />
  2688. <Content Include="Content\images\learunim\emotion\images\jx2\j_0041.gif" />
  2689. <Content Include="Content\images\learunim\emotion\images\jx2\j_0042.gif" />
  2690. <Content Include="Content\images\learunim\emotion\images\jx2\j_0043.gif" />
  2691. <Content Include="Content\images\learunim\emotion\images\jx2\j_0044.gif" />
  2692. <Content Include="Content\images\learunim\emotion\images\jx2\j_0045.gif" />
  2693. <Content Include="Content\images\learunim\emotion\images\jx2\j_0046.gif" />
  2694. <Content Include="Content\images\learunim\emotion\images\jx2\j_0047.gif" />
  2695. <Content Include="Content\images\learunim\emotion\images\jx2\j_0048.gif" />
  2696. <Content Include="Content\images\learunim\emotion\images\jx2\j_0049.gif" />
  2697. <Content Include="Content\images\learunim\emotion\images\jx2\j_0050.gif" />
  2698. <Content Include="Content\images\learunim\emotion\images\jx2\j_0051.gif" />
  2699. <Content Include="Content\images\learunim\emotion\images\jx2\j_0052.gif" />
  2700. <Content Include="Content\images\learunim\emotion\images\jx2\j_0053.gif" />
  2701. <Content Include="Content\images\learunim\emotion\images\jx2\j_0054.gif" />
  2702. <Content Include="Content\images\learunim\emotion\images\jx2\j_0055.gif" />
  2703. <Content Include="Content\images\learunim\emotion\images\jx2\j_0056.gif" />
  2704. <Content Include="Content\images\learunim\emotion\images\jx2\j_0057.gif" />
  2705. <Content Include="Content\images\learunim\emotion\images\jx2\j_0058.gif" />
  2706. <Content Include="Content\images\learunim\emotion\images\jx2\j_0059.gif" />
  2707. <Content Include="Content\images\learunim\emotion\images\jx2\j_0060.gif" />
  2708. <Content Include="Content\images\learunim\emotion\images\jx2\j_0061.gif" />
  2709. <Content Include="Content\images\learunim\emotion\images\jx2\j_0062.gif" />
  2710. <Content Include="Content\images\learunim\emotion\images\jx2\j_0063.gif" />
  2711. <Content Include="Content\images\learunim\emotion\images\jx2\j_0064.gif" />
  2712. <Content Include="Content\images\learunim\emotion\images\jx2\j_0065.gif" />
  2713. <Content Include="Content\images\learunim\emotion\images\jx2\j_0066.gif" />
  2714. <Content Include="Content\images\learunim\emotion\images\jx2\j_0067.gif" />
  2715. <Content Include="Content\images\learunim\emotion\images\jx2\j_0068.gif" />
  2716. <Content Include="Content\images\learunim\emotion\images\jx2\j_0069.gif" />
  2717. <Content Include="Content\images\learunim\emotion\images\jx2\j_0070.gif" />
  2718. <Content Include="Content\images\learunim\emotion\images\jx2\j_0071.gif" />
  2719. <Content Include="Content\images\learunim\emotion\images\jx2\j_0072.gif" />
  2720. <Content Include="Content\images\learunim\emotion\images\jx2\j_0073.gif" />
  2721. <Content Include="Content\images\learunim\emotion\images\jx2\j_0074.gif" />
  2722. <Content Include="Content\images\learunim\emotion\images\jx2\j_0075.gif" />
  2723. <Content Include="Content\images\learunim\emotion\images\jx2\j_0076.gif" />
  2724. <Content Include="Content\images\learunim\emotion\images\jx2\j_0077.gif" />
  2725. <Content Include="Content\images\learunim\emotion\images\jx2\j_0078.gif" />
  2726. <Content Include="Content\images\learunim\emotion\images\jx2\j_0079.gif" />
  2727. <Content Include="Content\images\learunim\emotion\images\jx2\j_0080.gif" />
  2728. <Content Include="Content\images\learunim\emotion\images\jx2\j_0081.gif" />
  2729. <Content Include="Content\images\learunim\emotion\images\jx2\j_0082.gif" />
  2730. <Content Include="Content\images\learunim\emotion\images\jx2\j_0083.gif" />
  2731. <Content Include="Content\images\learunim\emotion\images\jx2\j_0084.gif" />
  2732. <Content Include="Content\images\learunim\emotion\images\jxface2.gif" />
  2733. <Content Include="Content\images\learunim\emotion\images\ldw\w_0001.gif" />
  2734. <Content Include="Content\images\learunim\emotion\images\ldw\w_0002.gif" />
  2735. <Content Include="Content\images\learunim\emotion\images\ldw\w_0003.gif" />
  2736. <Content Include="Content\images\learunim\emotion\images\ldw\w_0004.gif" />
  2737. <Content Include="Content\images\learunim\emotion\images\ldw\w_0005.gif" />
  2738. <Content Include="Content\images\learunim\emotion\images\ldw\w_0006.gif" />
  2739. <Content Include="Content\images\learunim\emotion\images\ldw\w_0007.gif" />
  2740. <Content Include="Content\images\learunim\emotion\images\ldw\w_0008.gif" />
  2741. <Content Include="Content\images\learunim\emotion\images\ldw\w_0009.gif" />
  2742. <Content Include="Content\images\learunim\emotion\images\ldw\w_0010.gif" />
  2743. <Content Include="Content\images\learunim\emotion\images\ldw\w_0011.gif" />
  2744. <Content Include="Content\images\learunim\emotion\images\ldw\w_0012.gif" />
  2745. <Content Include="Content\images\learunim\emotion\images\ldw\w_0013.gif" />
  2746. <Content Include="Content\images\learunim\emotion\images\ldw\w_0014.gif" />
  2747. <Content Include="Content\images\learunim\emotion\images\ldw\w_0015.gif" />
  2748. <Content Include="Content\images\learunim\emotion\images\ldw\w_0016.gif" />
  2749. <Content Include="Content\images\learunim\emotion\images\ldw\w_0017.gif" />
  2750. <Content Include="Content\images\learunim\emotion\images\ldw\w_0018.gif" />
  2751. <Content Include="Content\images\learunim\emotion\images\ldw\w_0019.gif" />
  2752. <Content Include="Content\images\learunim\emotion\images\ldw\w_0020.gif" />
  2753. <Content Include="Content\images\learunim\emotion\images\ldw\w_0021.gif" />
  2754. <Content Include="Content\images\learunim\emotion\images\ldw\w_0022.gif" />
  2755. <Content Include="Content\images\learunim\emotion\images\ldw\w_0023.gif" />
  2756. <Content Include="Content\images\learunim\emotion\images\ldw\w_0024.gif" />
  2757. <Content Include="Content\images\learunim\emotion\images\ldw\w_0025.gif" />
  2758. <Content Include="Content\images\learunim\emotion\images\ldw\w_0026.gif" />
  2759. <Content Include="Content\images\learunim\emotion\images\ldw\w_0027.gif" />
  2760. <Content Include="Content\images\learunim\emotion\images\ldw\w_0028.gif" />
  2761. <Content Include="Content\images\learunim\emotion\images\ldw\w_0029.gif" />
  2762. <Content Include="Content\images\learunim\emotion\images\ldw\w_0030.gif" />
  2763. <Content Include="Content\images\learunim\emotion\images\ldw\w_0031.gif" />
  2764. <Content Include="Content\images\learunim\emotion\images\ldw\w_0032.gif" />
  2765. <Content Include="Content\images\learunim\emotion\images\ldw\w_0033.gif" />
  2766. <Content Include="Content\images\learunim\emotion\images\ldw\w_0034.gif" />
  2767. <Content Include="Content\images\learunim\emotion\images\ldw\w_0035.gif" />
  2768. <Content Include="Content\images\learunim\emotion\images\ldw\w_0036.gif" />
  2769. <Content Include="Content\images\learunim\emotion\images\ldw\w_0037.gif" />
  2770. <Content Include="Content\images\learunim\emotion\images\ldw\w_0038.gif" />
  2771. <Content Include="Content\images\learunim\emotion\images\ldw\w_0039.gif" />
  2772. <Content Include="Content\images\learunim\emotion\images\ldw\w_0040.gif" />
  2773. <Content Include="Content\images\learunim\emotion\images\ldw\w_0041.gif" />
  2774. <Content Include="Content\images\learunim\emotion\images\ldw\w_0042.gif" />
  2775. <Content Include="Content\images\learunim\emotion\images\ldw\w_0043.gif" />
  2776. <Content Include="Content\images\learunim\emotion\images\ldw\w_0044.gif" />
  2777. <Content Include="Content\images\learunim\emotion\images\ldw\w_0045.gif" />
  2778. <Content Include="Content\images\learunim\emotion\images\ldw\w_0046.gif" />
  2779. <Content Include="Content\images\learunim\emotion\images\ldw\w_0047.gif" />
  2780. <Content Include="Content\images\learunim\emotion\images\ldw\w_0048.gif" />
  2781. <Content Include="Content\images\learunim\emotion\images\ldw\w_0049.gif" />
  2782. <Content Include="Content\images\learunim\emotion\images\ldw\w_0050.gif" />
  2783. <Content Include="Content\images\learunim\emotion\images\ldw\w_0051.gif" />
  2784. <Content Include="Content\images\learunim\emotion\images\ldw\w_0052.gif" />
  2785. <Content Include="Content\images\learunim\emotion\images\neweditor-tab-bg.png" />
  2786. <Content Include="Content\images\learunim\emotion\images\tface.gif" />
  2787. <Content Include="Content\images\learunim\emotion\images\tsj\t_0001.gif" />
  2788. <Content Include="Content\images\learunim\emotion\images\tsj\t_0002.gif" />
  2789. <Content Include="Content\images\learunim\emotion\images\tsj\t_0003.gif" />
  2790. <Content Include="Content\images\learunim\emotion\images\tsj\t_0004.gif" />
  2791. <Content Include="Content\images\learunim\emotion\images\tsj\t_0005.gif" />
  2792. <Content Include="Content\images\learunim\emotion\images\tsj\t_0006.gif" />
  2793. <Content Include="Content\images\learunim\emotion\images\tsj\t_0007.gif" />
  2794. <Content Include="Content\images\learunim\emotion\images\tsj\t_0008.gif" />
  2795. <Content Include="Content\images\learunim\emotion\images\tsj\t_0009.gif" />
  2796. <Content Include="Content\images\learunim\emotion\images\tsj\t_0010.gif" />
  2797. <Content Include="Content\images\learunim\emotion\images\tsj\t_0011.gif" />
  2798. <Content Include="Content\images\learunim\emotion\images\tsj\t_0012.gif" />
  2799. <Content Include="Content\images\learunim\emotion\images\tsj\t_0013.gif" />
  2800. <Content Include="Content\images\learunim\emotion\images\tsj\t_0014.gif" />
  2801. <Content Include="Content\images\learunim\emotion\images\tsj\t_0015.gif" />
  2802. <Content Include="Content\images\learunim\emotion\images\tsj\t_0016.gif" />
  2803. <Content Include="Content\images\learunim\emotion\images\tsj\t_0017.gif" />
  2804. <Content Include="Content\images\learunim\emotion\images\tsj\t_0018.gif" />
  2805. <Content Include="Content\images\learunim\emotion\images\tsj\t_0019.gif" />
  2806. <Content Include="Content\images\learunim\emotion\images\tsj\t_0020.gif" />
  2807. <Content Include="Content\images\learunim\emotion\images\tsj\t_0021.gif" />
  2808. <Content Include="Content\images\learunim\emotion\images\tsj\t_0022.gif" />
  2809. <Content Include="Content\images\learunim\emotion\images\tsj\t_0023.gif" />
  2810. <Content Include="Content\images\learunim\emotion\images\tsj\t_0024.gif" />
  2811. <Content Include="Content\images\learunim\emotion\images\tsj\t_0025.gif" />
  2812. <Content Include="Content\images\learunim\emotion\images\tsj\t_0026.gif" />
  2813. <Content Include="Content\images\learunim\emotion\images\tsj\t_0027.gif" />
  2814. <Content Include="Content\images\learunim\emotion\images\tsj\t_0028.gif" />
  2815. <Content Include="Content\images\learunim\emotion\images\tsj\t_0029.gif" />
  2816. <Content Include="Content\images\learunim\emotion\images\tsj\t_0030.gif" />
  2817. <Content Include="Content\images\learunim\emotion\images\tsj\t_0031.gif" />
  2818. <Content Include="Content\images\learunim\emotion\images\tsj\t_0032.gif" />
  2819. <Content Include="Content\images\learunim\emotion\images\tsj\t_0033.gif" />
  2820. <Content Include="Content\images\learunim\emotion\images\tsj\t_0034.gif" />
  2821. <Content Include="Content\images\learunim\emotion\images\tsj\t_0035.gif" />
  2822. <Content Include="Content\images\learunim\emotion\images\tsj\t_0036.gif" />
  2823. <Content Include="Content\images\learunim\emotion\images\tsj\t_0037.gif" />
  2824. <Content Include="Content\images\learunim\emotion\images\tsj\t_0038.gif" />
  2825. <Content Include="Content\images\learunim\emotion\images\tsj\t_0039.gif" />
  2826. <Content Include="Content\images\learunim\emotion\images\tsj\t_0040.gif" />
  2827. <Content Include="Content\images\learunim\emotion\images\wface.gif" />
  2828. <Content Include="Content\images\learunim\emotion\images\yface.gif" />
  2829. <Content Include="Content\images\learunim\emotion\images\youa\y_0001.gif" />
  2830. <Content Include="Content\images\learunim\emotion\images\youa\y_0002.gif" />
  2831. <Content Include="Content\images\learunim\emotion\images\youa\y_0003.gif" />
  2832. <Content Include="Content\images\learunim\emotion\images\youa\y_0004.gif" />
  2833. <Content Include="Content\images\learunim\emotion\images\youa\y_0005.gif" />
  2834. <Content Include="Content\images\learunim\emotion\images\youa\y_0006.gif" />
  2835. <Content Include="Content\images\learunim\emotion\images\youa\y_0007.gif" />
  2836. <Content Include="Content\images\learunim\emotion\images\youa\y_0008.gif" />
  2837. <Content Include="Content\images\learunim\emotion\images\youa\y_0009.gif" />
  2838. <Content Include="Content\images\learunim\emotion\images\youa\y_0010.gif" />
  2839. <Content Include="Content\images\learunim\emotion\images\youa\y_0011.gif" />
  2840. <Content Include="Content\images\learunim\emotion\images\youa\y_0012.gif" />
  2841. <Content Include="Content\images\learunim\emotion\images\youa\y_0013.gif" />
  2842. <Content Include="Content\images\learunim\emotion\images\youa\y_0014.gif" />
  2843. <Content Include="Content\images\learunim\emotion\images\youa\y_0015.gif" />
  2844. <Content Include="Content\images\learunim\emotion\images\youa\y_0016.gif" />
  2845. <Content Include="Content\images\learunim\emotion\images\youa\y_0017.gif" />
  2846. <Content Include="Content\images\learunim\emotion\images\youa\y_0018.gif" />
  2847. <Content Include="Content\images\learunim\emotion\images\youa\y_0019.gif" />
  2848. <Content Include="Content\images\learunim\emotion\images\youa\y_0020.gif" />
  2849. <Content Include="Content\images\learunim\emotion\images\youa\y_0021.gif" />
  2850. <Content Include="Content\images\learunim\emotion\images\youa\y_0022.gif" />
  2851. <Content Include="Content\images\learunim\emotion\images\youa\y_0023.gif" />
  2852. <Content Include="Content\images\learunim\emotion\images\youa\y_0024.gif" />
  2853. <Content Include="Content\images\learunim\emotion\images\youa\y_0025.gif" />
  2854. <Content Include="Content\images\learunim\emotion\images\youa\y_0026.gif" />
  2855. <Content Include="Content\images\learunim\emotion\images\youa\y_0027.gif" />
  2856. <Content Include="Content\images\learunim\emotion\images\youa\y_0028.gif" />
  2857. <Content Include="Content\images\learunim\emotion\images\youa\y_0029.gif" />
  2858. <Content Include="Content\images\learunim\emotion\images\youa\y_0030.gif" />
  2859. <Content Include="Content\images\learunim\emotion\images\youa\y_0031.gif" />
  2860. <Content Include="Content\images\learunim\emotion\images\youa\y_0032.gif" />
  2861. <Content Include="Content\images\learunim\emotion\images\youa\y_0033.gif" />
  2862. <Content Include="Content\images\learunim\emotion\images\youa\y_0034.gif" />
  2863. <Content Include="Content\images\learunim\emotion\images\youa\y_0035.gif" />
  2864. <Content Include="Content\images\learunim\emotion\images\youa\y_0036.gif" />
  2865. <Content Include="Content\images\learunim\emotion\images\youa\y_0037.gif" />
  2866. <Content Include="Content\images\learunim\emotion\images\youa\y_0038.gif" />
  2867. <Content Include="Content\images\learunim\emotion\images\youa\y_0039.gif" />
  2868. <Content Include="Content\images\learunim\emotion\images\youa\y_0040.gif" />
  2869. <Content Include="Content\images\learunim\off-line.png" />
  2870. <Content Include="Content\images\learunim\on-line.png" />
  2871. <Content Include="Content\images\learuntree\checkbox_0.png" />
  2872. <Content Include="Content\images\learuntree\checkbox_1.png" />
  2873. <Content Include="Content\images\learuntree\checkbox_2.png" />
  2874. <Content Include="Content\images\learunworkflow\conditionnodediv.png" />
  2875. <Content Include="Content\images\learunworkflow\conditionnode.png" />
  2876. <Content Include="Content\images\learunworkflow\conditionnodediv1.png" />
  2877. <Content Include="Content\images\learunworkflow\cursor.png" />
  2878. <Content Include="Content\images\learunworkflow\startround.png" />
  2879. <Content Include="Content\images\learunworkflow\confluencenode.png" />
  2880. <Content Include="Content\images\learunworkflow\stepnode.png" />
  2881. <Content Include="Content\images\learunworkflow\childwfnode.png" />
  2882. <Content Include="Content\images\learunworkflow\endround.png" />
  2883. <Content Include="Content\images\learunworkflow\direct.png" />
  2884. <Content Include="Content\images\learunworkflow\GooFlow_line_oper.png" />
  2885. <Content Include="Content\images\learunworkflow\close.png" />
  2886. <Content Include="Content\images\learunworkflow\wallbg.png" />
  2887. <Content Include="Content\images\learunworkflow\auditornode.png" />
  2888. <Content Include="Content\images\Login\bgmask1.png" />
  2889. <Content Include="Content\images\Login\bgmask2.png" />
  2890. <Content Include="Content\images\Login\bgmask3.png" />
  2891. <Content Include="Content\images\Login\blue_code.png" />
  2892. <Content Include="Content\images\Login\blue_logo.png" />
  2893. <Content Include="Content\images\Login\blue_pc.png" />
  2894. <Content Include="Content\images\Login\defaultbg.png" />
  2895. <Content Include="Content\images\Login\default_account0.png" />
  2896. <Content Include="Content\images\Login\default_account1.png" />
  2897. <Content Include="Content\images\Login\default_code.png" />
  2898. <Content Include="Content\images\Login\default_left.png" />
  2899. <Content Include="Content\images\Login\default_psw0.png" />
  2900. <Content Include="Content\images\Login\default_psw1.png" />
  2901. <Content Include="Content\images\Login\default_reg0.png" />
  2902. <Content Include="Content\images\Login\default_reg1.png" />
  2903. <Content Include="Content\images\Login\error.png" />
  2904. <Content Include="Content\images\Login\psw0.png" />
  2905. <Content Include="Content\images\Login\psw1.png" />
  2906. <Content Include="Content\images\Login\qrcode.png" />
  2907. <Content Include="Content\images\Login\short_logo.png" />
  2908. <Content Include="Content\images\Login\topbg2.png" />
  2909. <Content Include="Content\images\Login\windos_arrow.png" />
  2910. <Content Include="Content\images\Login\windos_left.png" />
  2911. <Content Include="Content\images\Login\windos_pc.png" />
  2912. <Content Include="Content\images\Login\windowbg.png" />
  2913. <Content Include="Content\images\Login\topbg.png" />
  2914. <Content Include="Content\images\logo-head.png" />
  2915. <Content Include="Content\images\logo_long.png" />
  2916. <Content Include="Content\images\logo_long_blue.png" />
  2917. <Content Include="Content\images\selected_red.png" />
  2918. <Content Include="Content\images\learuntree\loading.gif" />
  2919. <Content Include="Content\images\tableform.png" />
  2920. <Content Include="Content\images\UserCard01.png" />
  2921. <Content Include="Content\images\UserCard02.png" />
  2922. <Content Include="Content\images\UserCard03.png" />
  2923. <Content Include="Content\jquery-ui-1.12.1.custom\AUTHORS.txt" />
  2924. <Content Include="Content\jquery-ui-1.12.1.custom\external\jquery\jquery.js" />
  2925. <Content Include="Content\jquery-ui-1.12.1.custom\images\ui-icons_444444_256x240.png" />
  2926. <Content Include="Content\jquery-ui-1.12.1.custom\images\ui-icons_555555_256x240.png" />
  2927. <Content Include="Content\jquery-ui-1.12.1.custom\images\ui-icons_777620_256x240.png" />
  2928. <Content Include="Content\jquery-ui-1.12.1.custom\images\ui-icons_777777_256x240.png" />
  2929. <Content Include="Content\jquery-ui-1.12.1.custom\images\ui-icons_cc0000_256x240.png" />
  2930. <Content Include="Content\jquery-ui-1.12.1.custom\images\ui-icons_ffffff_256x240.png" />
  2931. <Content Include="Content\jquery-ui-1.12.1.custom\index.html" />
  2932. <Content Include="Content\jquery-ui-1.12.1.custom\jquery-ui.css" />
  2933. <Content Include="Content\jquery-ui-1.12.1.custom\jquery-ui.js" />
  2934. <Content Include="Content\jquery-ui-1.12.1.custom\jquery-ui.min.css" />
  2935. <Content Include="Content\jquery-ui-1.12.1.custom\jquery-ui.min.js" />
  2936. <Content Include="Content\jquery-ui-1.12.1.custom\jquery-ui.structure.css" />
  2937. <Content Include="Content\jquery-ui-1.12.1.custom\jquery-ui.structure.min.css" />
  2938. <Content Include="Content\jquery-ui-1.12.1.custom\jquery-ui.theme.css" />
  2939. <Content Include="Content\jquery-ui-1.12.1.custom\jquery-ui.theme.min.css" />
  2940. <Content Include="Content\jquery-ui-1.12.1.custom\LICENSE.txt" />
  2941. <Content Include="Content\jquerygantt\bootstrap.min.js" />
  2942. <Content Include="Content\jquerygantt\css\bootstrap.min.css" />
  2943. <Content Include="Content\jquerygantt\css\gantt.css" />
  2944. <Content Include="Content\jquerygantt\css\ganttPrint.css" />
  2945. <Content Include="Content\jquerygantt\css\platform.css" />
  2946. <Content Include="Content\jquerygantt\ganttDrawerSVG.js" />
  2947. <Content Include="Content\jquerygantt\ganttGridEditor.js" />
  2948. <Content Include="Content\jquerygantt\ganttMaster.js" />
  2949. <Content Include="Content\jquerygantt\ganttTask.js" />
  2950. <Content Include="Content\jquerygantt\ganttTestSuite.js" />
  2951. <Content Include="Content\jquerygantt\ganttUtilities.js" />
  2952. <Content Include="Content\jquerygantt\jquery-ui.js" />
  2953. <Content Include="Content\jquerygantt\jquery-ui.min.js" />
  2954. <Content Include="Content\jquerygantt\jquery.form.js" />
  2955. <Content Include="Content\jquerygantt\jquery.min.js" />
  2956. <Content Include="Content\jquerygantt\libs\date.js" />
  2957. <Content Include="Content\jquerygantt\libs\dialogs.js" />
  2958. <Content Include="Content\jquerygantt\libs\forms.js" />
  2959. <Content Include="Content\jquerygantt\libs\i18nJs.js" />
  2960. <Content Include="Content\jquerygantt\libs\jquery\dateField\img\next.png" />
  2961. <Content Include="Content\jquerygantt\libs\jquery\dateField\img\prev.png" />
  2962. <Content Include="Content\jquerygantt\libs\jquery\dateField\img\today.png" />
  2963. <Content Include="Content\jquerygantt\libs\jquery\dateField\jquery.dateField.css" />
  2964. <Content Include="Content\jquerygantt\libs\jquery\dateField\jquery.dateField.js" />
  2965. <Content Include="Content\jquerygantt\libs\jquery\jquery.livequery.1.1.1.min.js" />
  2966. <Content Include="Content\jquerygantt\libs\jquery\jquery.timers.js" />
  2967. <Content Include="Content\jquerygantt\libs\jquery\JST\jquery.JST.js" />
  2968. <Content Include="Content\jquerygantt\libs\jquery\svg\jquery.svg.min.js" />
  2969. <Content Include="Content\jquerygantt\libs\jquery\svg\jquery.svgdom.1.8.js" />
  2970. <Content Include="Content\jquerygantt\libs\jquery\svg\jquery.svgdom.pack.js" />
  2971. <Content Include="Content\jquerygantt\libs\layout.js" />
  2972. <Content Include="Content\jquerygantt\libs\utilities.js" />
  2973. <Content Include="Content\jquerygantt\res\alert.gif" />
  2974. <Content Include="Content\jquerygantt\res\black_70.png" />
  2975. <Content Include="Content\jquerygantt\res\closeBig.png" />
  2976. <Content Include="Content\jquerygantt\res\ganttSplitterGrip.png" />
  2977. <Content Include="Content\jquerygantt\res\hasExternalDeps.png" />
  2978. <Content Include="Content\jquerygantt\res\icons.svg" />
  2979. <Content Include="Content\jquerygantt\res\indentIcon.png" />
  2980. <Content Include="Content\jquerygantt\res\linkArrow.png" />
  2981. <Content Include="Content\jquerygantt\res\milestone.png" />
  2982. <Content Include="Content\jquerygantt\res\toggle-expand.png" />
  2983. <Content Include="Content\jquerygantt\res\toggle_collapse.png" />
  2984. <Content Include="Content\jquerygantt\res\twBanner.jpg" />
  2985. <Content Include="Content\jquerygantt\res\twGanttLogo.png" />
  2986. <Content Include="Content\jquerygantt\res\twproject-badge.png" />
  2987. <Content Include="Content\jquery\plugin\fullcalendar\css\fullcalendar.css" />
  2988. <Content Include="Content\jquery\plugin\fullcalendar\css\fullcalendar.print.css" />
  2989. <Content Include="Content\jquery\plugin\fullcalendar\css\style.css" />
  2990. <Content Include="Content\jquery\plugin\fullcalendar\img\arrow-left.png" />
  2991. <Content Include="Content\jquery\plugin\fullcalendar\img\arrow-right.png" />
  2992. <Content Include="Content\jquery\plugin\fullcalendar\img\bg2.png" />
  2993. <Content Include="Content\jquery\plugin\fullcalendar\img\buttons-disabled.png" />
  2994. <Content Include="Content\jquery\plugin\fullcalendar\img\buttons.gif" />
  2995. <Content Include="Content\jquery\plugin\fullcalendar\img\buttons.png" />
  2996. <Content Include="Content\jquery\plugin\fullcalendar\img\chosen-sprite.png" />
  2997. <Content Include="Content\jquery\plugin\fullcalendar\img\dribble.png" />
  2998. <Content Include="Content\jquery\plugin\fullcalendar\img\facebook.png" />
  2999. <Content Include="Content\jquery\plugin\fullcalendar\img\forrst.png" />
  3000. <Content Include="Content\jquery\plugin\fullcalendar\img\glyphicons-halflings-white.png" />
  3001. <Content Include="Content\jquery\plugin\fullcalendar\img\glyphicons-halflings.png" />
  3002. <Content Include="Content\jquery\plugin\fullcalendar\img\light.jpg" />
  3003. <Content Include="Content\jquery\plugin\fullcalendar\img\magnifier_grey.png" />
  3004. <Content Include="Content\jquery\plugin\fullcalendar\img\natural_paper.png" />
  3005. <Content Include="Content\jquery\plugin\fullcalendar\img\preload.gif" />
  3006. <Content Include="Content\jquery\plugin\fullcalendar\img\slider.png" />
  3007. <Content Include="Content\jquery\plugin\fullcalendar\img\slider_hover.png" />
  3008. <Content Include="Content\jquery\plugin\fullcalendar\img\sort_asc.png" />
  3009. <Content Include="Content\jquery\plugin\fullcalendar\img\sort_asc_disabled.png" />
  3010. <Content Include="Content\jquery\plugin\fullcalendar\img\sort_both.png" />
  3011. <Content Include="Content\jquery\plugin\fullcalendar\img\sort_desc.png" />
  3012. <Content Include="Content\jquery\plugin\fullcalendar\img\sort_desc_disabled.png" />
  3013. <Content Include="Content\jquery\plugin\fullcalendar\img\spinner_arrows.gif" />
  3014. <Content Include="Content\jquery\plugin\fullcalendar\img\toggle-subnav-down.png" />
  3015. <Content Include="Content\jquery\plugin\fullcalendar\img\toggle-subnav-up-white.png" />
  3016. <Content Include="Content\jquery\plugin\fullcalendar\img\toolbar.gif" />
  3017. <Content Include="Content\jquery\plugin\fullcalendar\img\transp50.png" />
  3018. <Content Include="Content\jquery\plugin\fullcalendar\img\twitter.png" />
  3019. <Content Include="Content\jquery\plugin\fullcalendar\js\fullcalendar.min.js" />
  3020. <Content Include="Content\jquery\plugin\fullcalendar\js\jquery-1.7.2.min.js" />
  3021. <Content Include="Content\jquery\plugin\jfGrid\img\loading.gif" />
  3022. <Content Include="Content\jquery\plugin\jfGrid\img\nodata.jpg" />
  3023. <Content Include="Content\images\learunselect\icon.png" />
  3024. <Content Include="Content\images\Login\loading.gif" />
  3025. <Content Include="Content\images\loading.gif" />
  3026. <Content Include="Content\images\Login\pwd-icons-new.png" />
  3027. <Content Include="Content\images\logo.png" />
  3028. <Content Include="Content\images\select.png" />
  3029. <Content Include="Content\images\Login\bg_01.png" />
  3030. <Content Include="Content\images\Login\bg_02.jpg" />
  3031. <Content Include="Content\images\Login\bg_03.png" />
  3032. <Content Include="Content\images\tab_close.png" />
  3033. <Content Include="Content\images\learuntree\arrows.gif" />
  3034. <Content Include="Content\images\jfgrid\checkbox_0.png" />
  3035. <Content Include="Content\images\jfgrid\checkbox_1.png" />
  3036. <Content Include="Content\images\jfgrid\checkbox_2.png" />
  3037. <Content Include="Content\images\learuntree\s.gif" />
  3038. <Content Include="Content\jquery\jquery.md5.min.js" />
  3039. <Content Include="Content\jquery\plugin\jfGrid\img\close.png" />
  3040. <Content Include="Content\jquery\plugin\jfGrid\jfgrid.js" />
  3041. <Content Include="Content\jquery\plugin\jfGrid\jfgrid.min.js" />
  3042. <Content Include="Content\jquery\plugin\jqprint\jquery.jqprint-0.3.js" />
  3043. <Content Include="Content\jquery\plugin\jquery-ui\images\calendar.gif" />
  3044. <Content Include="Content\jquery\plugin\jquery-ui\images\ui-bg_flat_0_aaaaaa_40x100.png" />
  3045. <Content Include="Content\jquery\plugin\jquery-ui\images\ui-bg_flat_75_ffffff_40x100.png" />
  3046. <Content Include="Content\jquery\plugin\jquery-ui\images\ui-bg_glass_55_fbf9ee_1x400.png" />
  3047. <Content Include="Content\jquery\plugin\jquery-ui\images\ui-bg_glass_65_ffffff_1x400.png" />
  3048. <Content Include="Content\jquery\plugin\jquery-ui\images\ui-bg_glass_75_dadada_1x400.png" />
  3049. <Content Include="Content\jquery\plugin\jquery-ui\images\ui-bg_glass_75_e6e6e6_1x400.png" />
  3050. <Content Include="Content\jquery\plugin\jquery-ui\images\ui-bg_glass_95_fef1ec_1x400.png" />
  3051. <Content Include="Content\jquery\plugin\jquery-ui\images\ui-bg_highlight-soft_75_cccccc_1x100.png" />
  3052. <Content Include="Content\jquery\plugin\jquery-ui\images\ui-icons_222222_256x240.png" />
  3053. <Content Include="Content\jquery\plugin\jquery-ui\images\ui-icons_2e83ff_256x240.png" />
  3054. <Content Include="Content\jquery\plugin\jquery-ui\images\ui-icons_454545_256x240.png" />
  3055. <Content Include="Content\jquery\plugin\jquery-ui\images\ui-icons_888888_256x240.png" />
  3056. <Content Include="Content\jquery\plugin\jquery-ui\images\ui-icons_cd0a0a_256x240.png" />
  3057. <Content Include="Content\jquery\plugin\jquery-ui\jquery-ui-1.11.4.js" />
  3058. <Content Include="Content\jquery\plugin\jquery-ui\jquery-ui.min.css" />
  3059. <Content Include="Content\jquery\plugin\jquery-ui\jquery-ui.min.js" />
  3060. <Content Include="Content\jquery\plugin\jquery.cookie.min.js" />
  3061. <Content Include="Content\jquery\plugin\jquery.cookie.js" />
  3062. <Content Include="Content\jquery\plugin\layer\layer.js" />
  3063. <Content Include="Content\jquery\plugin\layer\skin\default\icon-ext.png" />
  3064. <Content Include="Content\jquery\plugin\layer\skin\default\icon.png" />
  3065. <Content Include="Content\jquery\plugin\layer\skin\default\layer.css" />
  3066. <Content Include="Content\jquery\plugin\layer\skin\default\loading-0.gif" />
  3067. <Content Include="Content\jquery\plugin\layer\skin\default\loading-1.gif" />
  3068. <Content Include="Content\jquery\plugin\layer\skin\default\loading-2.gif" />
  3069. <Content Include="Content\jquery\plugin\scrollbar\jquery.mCustomScrollbar.concat.min.js" />
  3070. <Content Include="Content\jquery\plugin\scrollbar\jquery.mCustomScrollbar.css" />
  3071. <Content Include="Content\jquery\plugin\scrollbar\jquery.mCustomScrollbar.js" />
  3072. <Content Include="Content\jquery\plugin\scrollbar\jquery.mCustomScrollbar.min.css" />
  3073. <Content Include="Content\jquery\plugin\scrollbar\mCSB_buttons.png" />
  3074. <Content Include="Content\jquery\plugin\syntaxhighlighter\Scripts\shAutoloader.js" />
  3075. <Content Include="Content\jquery\plugin\syntaxhighlighter\Scripts\shBrushAppleScript.js" />
  3076. <Content Include="Content\jquery\plugin\syntaxhighlighter\Scripts\shBrushAS3.js" />
  3077. <Content Include="Content\jquery\plugin\syntaxhighlighter\Scripts\shBrushBash.js" />
  3078. <Content Include="Content\jquery\plugin\syntaxhighlighter\Scripts\shBrushColdFusion.js" />
  3079. <Content Include="Content\jquery\plugin\syntaxhighlighter\Scripts\shBrushCpp.js" />
  3080. <Content Include="Content\jquery\plugin\syntaxhighlighter\Scripts\shBrushCSharp.js" />
  3081. <Content Include="Content\jquery\plugin\syntaxhighlighter\Scripts\shBrushCss.js" />
  3082. <Content Include="Content\jquery\plugin\syntaxhighlighter\Scripts\shBrushDelphi.js" />
  3083. <Content Include="Content\jquery\plugin\syntaxhighlighter\Scripts\shBrushDiff.js" />
  3084. <Content Include="Content\jquery\plugin\syntaxhighlighter\Scripts\shBrushErlang.js" />
  3085. <Content Include="Content\jquery\plugin\syntaxhighlighter\Scripts\shBrushGroovy.js" />
  3086. <Content Include="Content\jquery\plugin\syntaxhighlighter\Scripts\shBrushJava.js" />
  3087. <Content Include="Content\jquery\plugin\syntaxhighlighter\Scripts\shBrushJavaFX.js" />
  3088. <Content Include="Content\jquery\plugin\syntaxhighlighter\Scripts\shBrushJScript.js" />
  3089. <Content Include="Content\jquery\plugin\syntaxhighlighter\Scripts\shBrushPerl.js" />
  3090. <Content Include="Content\jquery\plugin\syntaxhighlighter\Scripts\shBrushPhp.js" />
  3091. <Content Include="Content\jquery\plugin\syntaxhighlighter\Scripts\shBrushPlain.js" />
  3092. <Content Include="Content\jquery\plugin\syntaxhighlighter\Scripts\shBrushPowerShell.js" />
  3093. <Content Include="Content\jquery\plugin\syntaxhighlighter\Scripts\shBrushPython.js" />
  3094. <Content Include="Content\jquery\plugin\syntaxhighlighter\Scripts\shBrushRuby.js" />
  3095. <Content Include="Content\jquery\plugin\syntaxhighlighter\Scripts\shBrushSass.js" />
  3096. <Content Include="Content\jquery\plugin\syntaxhighlighter\Scripts\shBrushScala.js" />
  3097. <Content Include="Content\jquery\plugin\syntaxhighlighter\Scripts\shBrushSql.js" />
  3098. <Content Include="Content\jquery\plugin\syntaxhighlighter\Scripts\shBrushVb.js" />
  3099. <Content Include="Content\jquery\plugin\syntaxhighlighter\Scripts\shBrushXml.js" />
  3100. <Content Include="Content\jquery\plugin\syntaxhighlighter\Scripts\shCore.js" />
  3101. <Content Include="Content\jquery\plugin\syntaxhighlighter\Scripts\shLegacy.js" />
  3102. <Content Include="Content\jquery\plugin\syntaxhighlighter\src\shAutoloader.js" />
  3103. <Content Include="Content\jquery\plugin\syntaxhighlighter\src\shCore.js" />
  3104. <Content Include="Content\jquery\plugin\syntaxhighlighter\src\shLegacy.js" />
  3105. <Content Include="Content\jquery\plugin\syntaxhighlighter\styles\shCore.css" />
  3106. <Content Include="Content\jquery\plugin\syntaxhighlighter\styles\shCoreDefault.css" />
  3107. <Content Include="Content\jquery\plugin\syntaxhighlighter\styles\shCoreDjango.css" />
  3108. <Content Include="Content\jquery\plugin\syntaxhighlighter\styles\shCoreEclipse.css" />
  3109. <Content Include="Content\jquery\plugin\syntaxhighlighter\styles\shCoreEmacs.css" />
  3110. <Content Include="Content\jquery\plugin\syntaxhighlighter\styles\shCoreFadeToGrey.css" />
  3111. <Content Include="Content\jquery\plugin\syntaxhighlighter\styles\shCoreMDUltra.css" />
  3112. <Content Include="Content\jquery\plugin\syntaxhighlighter\styles\shCoreMidnight.css" />
  3113. <Content Include="Content\jquery\plugin\syntaxhighlighter\styles\shCoreRDark.css" />
  3114. <Content Include="Content\jquery\plugin\syntaxhighlighter\styles\shThemeDefault.css" />
  3115. <Content Include="Content\jquery\plugin\syntaxhighlighter\styles\shThemeDjango.css" />
  3116. <Content Include="Content\jquery\plugin\syntaxhighlighter\styles\shThemeEclipse.css" />
  3117. <Content Include="Content\jquery\plugin\syntaxhighlighter\styles\shThemeEmacs.css" />
  3118. <Content Include="Content\jquery\plugin\syntaxhighlighter\styles\shThemeFadeToGrey.css" />
  3119. <Content Include="Content\jquery\plugin\syntaxhighlighter\styles\shThemeMDUltra.css" />
  3120. <Content Include="Content\jquery\plugin\syntaxhighlighter\styles\shThemeMidnight.css" />
  3121. <Content Include="Content\jquery\plugin\syntaxhighlighter\styles\shThemeRDark.css" />
  3122. <Content Include="Content\jquery\plugin\toastr\toastr.css" />
  3123. <Content Include="Content\jquery\qrcode.min.js" />
  3124. <Content Include="Content\js\bootstrap.min.js" />
  3125. <Content Include="Content\js\china.js" />
  3126. <Content Include="Content\js\DragSSO\aLeft.js" />
  3127. <Content Include="Content\js\DragSSO\index.js" />
  3128. <Content Include="Content\js\DragSSO\index2.js" />
  3129. <Content Include="Content\js\DragSSO\index3.js" />
  3130. <Content Include="Content\js\DragSSO\indexData.js" />
  3131. <Content Include="Content\js\DragSSO\inSecHead.js" />
  3132. <Content Include="Content\js\DragSSO\main.js" />
  3133. <Content Include="Content\js\DragSSO\sortable.js" />
  3134. <Content Include="Content\js\easing.js" />
  3135. <Content Include="Content\js\echarts.js" />
  3136. <Content Include="Content\js\echarts.min.js" />
  3137. <Content Include="Content\js\gl.js" />
  3138. <Content Include="Content\js\index.js" />
  3139. <Content Include="Content\js\indexTwo.js" />
  3140. <Content Include="Content\js\jquery-ui.min.js" />
  3141. <Content Include="Content\js\jquery.js" />
  3142. <Content Include="Content\js\jquery.min.js" />
  3143. <Content Include="Content\js\mainTwo.js" />
  3144. <Content Include="Content\js\map.js" />
  3145. <Content Include="Content\js\mapJs\anhui.js" />
  3146. <Content Include="Content\js\mapJs\aomen.js" />
  3147. <Content Include="Content\js\mapJs\beijing.js" />
  3148. <Content Include="Content\js\mapJs\chongqing.js" />
  3149. <Content Include="Content\js\mapJs\fujian.js" />
  3150. <Content Include="Content\js\mapJs\gansu.js" />
  3151. <Content Include="Content\js\mapJs\guangdong.js" />
  3152. <Content Include="Content\js\mapJs\guangxi.js" />
  3153. <Content Include="Content\js\mapJs\guizhou.js" />
  3154. <Content Include="Content\js\mapJs\hainan.js" />
  3155. <Content Include="Content\js\mapJs\hebei.js" />
  3156. <Content Include="Content\js\mapJs\heilongjiang.js" />
  3157. <Content Include="Content\js\mapJs\henan.js" />
  3158. <Content Include="Content\js\mapJs\hubei.js" />
  3159. <Content Include="Content\js\mapJs\hunan.js" />
  3160. <Content Include="Content\js\mapJs\jiangsu.js" />
  3161. <Content Include="Content\js\mapJs\jiangxi.js" />
  3162. <Content Include="Content\js\mapJs\jilin.js" />
  3163. <Content Include="Content\js\mapJs\liaoning.js" />
  3164. <Content Include="Content\js\mapJs\neimenggu.js" />
  3165. <Content Include="Content\js\mapJs\ningxia.js" />
  3166. <Content Include="Content\js\mapJs\qinghai.js" />
  3167. <Content Include="Content\js\mapJs\shandong.js" />
  3168. <Content Include="Content\js\mapJs\shanghai.js" />
  3169. <Content Include="Content\js\mapJs\shanxi.js" />
  3170. <Content Include="Content\js\mapJs\shanxi1.js" />
  3171. <Content Include="Content\js\mapJs\sichuan.js" />
  3172. <Content Include="Content\js\mapJs\taiwan.js" />
  3173. <Content Include="Content\js\mapJs\tianjin.js" />
  3174. <Content Include="Content\js\mapJs\xianggang.js" />
  3175. <Content Include="Content\js\mapJs\xinjiang.js" />
  3176. <Content Include="Content\js\mapJs\xizang.js" />
  3177. <Content Include="Content\js\mapJs\yunnan.js" />
  3178. <Content Include="Content\js\mapJs\zhejiang.js" />
  3179. <Content Include="Content\js\OnlineRegistrate\bootstrapValidator.js" />
  3180. <Content Include="Content\js\OnlineRegistrate\scripts.js" />
  3181. <Content Include="Content\js\OnlineRegistrate\tooltips.js" />
  3182. <Content Include="Content\js\popper.js" />
  3183. <Content Include="Content\js\qrcode.min.js" />
  3184. <Content Include="Content\js\swiper.min.js" />
  3185. <Content Include="Content\js\swiper.min1.js" />
  3186. <Content Include="Content\js\xinjiang.js" />
  3187. <Content Include="Content\kanbanjs\tamplate.js" />
  3188. <Content Include="Content\laydate\laydate.js" />
  3189. <Content Include="Content\laydate\src\laydate.js" />
  3190. <Content Include="Content\laydate\src\theme\default\font\iconfont.svg" />
  3191. <Content Include="Content\laydate\src\theme\default\laydate.css" />
  3192. <Content Include="Content\laydate\theme\default\font\iconfont.svg" />
  3193. <Content Include="Content\laydate\theme\default\laydate.css" />
  3194. <Content Include="Content\laypage\laypage.js" />
  3195. <Content Include="Content\laypage\laypage.min.js" />
  3196. <Content Include="Content\laypage\skin\laypage.css" />
  3197. <Content Include="Content\laypage\skin\laypage.min.css" />
  3198. <Content Include="Content\layui\css\layui.css" />
  3199. <Content Include="Content\layui\css\layui.mobile.css" />
  3200. <Content Include="Content\layui\css\modules\code.css" />
  3201. <Content Include="Content\layui\css\modules\laydate\default\laydate.css" />
  3202. <Content Include="Content\layui\css\modules\layer\default\icon-ext.png" />
  3203. <Content Include="Content\layui\css\modules\layer\default\icon.png" />
  3204. <Content Include="Content\layui\css\modules\layer\default\layer.css" />
  3205. <Content Include="Content\layui\css\modules\layer\default\loading-0.gif" />
  3206. <Content Include="Content\layui\css\modules\layer\default\loading-1.gif" />
  3207. <Content Include="Content\layui\css\modules\layer\default\loading-2.gif" />
  3208. <Content Include="Content\layui\font\iconfont.svg" />
  3209. <Content Include="Content\layui\images\face\0.gif" />
  3210. <Content Include="Content\layui\images\face\1.gif" />
  3211. <Content Include="Content\layui\images\face\10.gif" />
  3212. <Content Include="Content\layui\images\face\11.gif" />
  3213. <Content Include="Content\layui\images\face\12.gif" />
  3214. <Content Include="Content\layui\images\face\13.gif" />
  3215. <Content Include="Content\layui\images\face\14.gif" />
  3216. <Content Include="Content\layui\images\face\15.gif" />
  3217. <Content Include="Content\layui\images\face\16.gif" />
  3218. <Content Include="Content\layui\images\face\17.gif" />
  3219. <Content Include="Content\layui\images\face\18.gif" />
  3220. <Content Include="Content\layui\images\face\19.gif" />
  3221. <Content Include="Content\layui\images\face\2.gif" />
  3222. <Content Include="Content\layui\images\face\20.gif" />
  3223. <Content Include="Content\layui\images\face\21.gif" />
  3224. <Content Include="Content\layui\images\face\22.gif" />
  3225. <Content Include="Content\layui\images\face\23.gif" />
  3226. <Content Include="Content\layui\images\face\24.gif" />
  3227. <Content Include="Content\layui\images\face\25.gif" />
  3228. <Content Include="Content\layui\images\face\26.gif" />
  3229. <Content Include="Content\layui\images\face\27.gif" />
  3230. <Content Include="Content\layui\images\face\28.gif" />
  3231. <Content Include="Content\layui\images\face\29.gif" />
  3232. <Content Include="Content\layui\images\face\3.gif" />
  3233. <Content Include="Content\layui\images\face\30.gif" />
  3234. <Content Include="Content\layui\images\face\31.gif" />
  3235. <Content Include="Content\layui\images\face\32.gif" />
  3236. <Content Include="Content\layui\images\face\33.gif" />
  3237. <Content Include="Content\layui\images\face\34.gif" />
  3238. <Content Include="Content\layui\images\face\35.gif" />
  3239. <Content Include="Content\layui\images\face\36.gif" />
  3240. <Content Include="Content\layui\images\face\37.gif" />
  3241. <Content Include="Content\layui\images\face\38.gif" />
  3242. <Content Include="Content\layui\images\face\39.gif" />
  3243. <Content Include="Content\layui\images\face\4.gif" />
  3244. <Content Include="Content\layui\images\face\40.gif" />
  3245. <Content Include="Content\layui\images\face\41.gif" />
  3246. <Content Include="Content\layui\images\face\42.gif" />
  3247. <Content Include="Content\layui\images\face\43.gif" />
  3248. <Content Include="Content\layui\images\face\44.gif" />
  3249. <Content Include="Content\layui\images\face\45.gif" />
  3250. <Content Include="Content\layui\images\face\46.gif" />
  3251. <Content Include="Content\layui\images\face\47.gif" />
  3252. <Content Include="Content\layui\images\face\48.gif" />
  3253. <Content Include="Content\layui\images\face\49.gif" />
  3254. <Content Include="Content\layui\images\face\5.gif" />
  3255. <Content Include="Content\layui\images\face\50.gif" />
  3256. <Content Include="Content\layui\images\face\51.gif" />
  3257. <Content Include="Content\layui\images\face\52.gif" />
  3258. <Content Include="Content\layui\images\face\53.gif" />
  3259. <Content Include="Content\layui\images\face\54.gif" />
  3260. <Content Include="Content\layui\images\face\55.gif" />
  3261. <Content Include="Content\layui\images\face\56.gif" />
  3262. <Content Include="Content\layui\images\face\57.gif" />
  3263. <Content Include="Content\layui\images\face\58.gif" />
  3264. <Content Include="Content\layui\images\face\59.gif" />
  3265. <Content Include="Content\layui\images\face\6.gif" />
  3266. <Content Include="Content\layui\images\face\60.gif" />
  3267. <Content Include="Content\layui\images\face\61.gif" />
  3268. <Content Include="Content\layui\images\face\62.gif" />
  3269. <Content Include="Content\layui\images\face\63.gif" />
  3270. <Content Include="Content\layui\images\face\64.gif" />
  3271. <Content Include="Content\layui\images\face\65.gif" />
  3272. <Content Include="Content\layui\images\face\66.gif" />
  3273. <Content Include="Content\layui\images\face\67.gif" />
  3274. <Content Include="Content\layui\images\face\68.gif" />
  3275. <Content Include="Content\layui\images\face\69.gif" />
  3276. <Content Include="Content\layui\images\face\7.gif" />
  3277. <Content Include="Content\layui\images\face\70.gif" />
  3278. <Content Include="Content\layui\images\face\71.gif" />
  3279. <Content Include="Content\layui\images\face\8.gif" />
  3280. <Content Include="Content\layui\images\face\9.gif" />
  3281. <Content Include="Content\layui\layui.all.js" />
  3282. <Content Include="Content\layui\layui.js" />
  3283. <Content Include="Content\layui\lay\modules\carousel.js" />
  3284. <Content Include="Content\layui\lay\modules\code.js" />
  3285. <Content Include="Content\layui\lay\modules\element.js" />
  3286. <Content Include="Content\layui\lay\modules\flow.js" />
  3287. <Content Include="Content\layui\lay\modules\form.js" />
  3288. <Content Include="Content\layui\lay\modules\jquery.js" />
  3289. <Content Include="Content\layui\lay\modules\laydate.js" />
  3290. <Content Include="Content\layui\lay\modules\layedit.js" />
  3291. <Content Include="Content\layui\lay\modules\layer.js" />
  3292. <Content Include="Content\layui\lay\modules\laypage.js" />
  3293. <Content Include="Content\layui\lay\modules\laytpl.js" />
  3294. <Content Include="Content\layui\lay\modules\mobile.js" />
  3295. <Content Include="Content\layui\lay\modules\table.js" />
  3296. <Content Include="Content\layui\lay\modules\tree.js" />
  3297. <Content Include="Content\layui\lay\modules\upload.js" />
  3298. <Content Include="Content\layui\lay\modules\util.js" />
  3299. <Content Include="Content\Lodop\LodopFuncs.js" />
  3300. <Content Include="Content\news\css\common.css" />
  3301. <Content Include="Content\news\css\style.css" />
  3302. <Content Include="Content\news\js\easing.js" />
  3303. <Content Include="Content\news\js\main.js" />
  3304. <Content Include="Content\css\OnlineRegistrate\default.css" />
  3305. <Content Include="Content\css\OnlineRegistrate\hddb.css" />
  3306. <Content Include="Content\css\OnlineRegistrate\style1.css" />
  3307. <Content Include="Content\css\OnlineRegistrate\zyjs.css" />
  3308. <Content Include="Content\pace\pace.js" />
  3309. <Content Include="Content\pace\pace.min.js" />
  3310. <Content Include="Content\pace\pace-theme-loading-bar.css" />
  3311. <Content Include="Content\pace\pace-theme-minimal.css" />
  3312. <Content Include="Content\jquery\plugin\jfGrid\jfgrid.css" />
  3313. <Content Include="Content\paper\css\animate.min.css" />
  3314. <Content Include="Content\paper\css\bootstrap.min.css" />
  3315. <Content Include="Content\paper\css\common.css" />
  3316. <Content Include="Content\paper\css\font-awesome.css" />
  3317. <Content Include="Content\paper\css\index.css" />
  3318. <Content Include="Content\paper\css\style.css" />
  3319. <Content Include="Content\paper\dist\demo.css" />
  3320. <Content Include="Content\paper\dist\images\loading.gif" />
  3321. <Content Include="Content\paper\dist\images\validator_default.png" />
  3322. <Content Include="Content\paper\dist\images\validator_simple.png" />
  3323. <Content Include="Content\paper\dist\jquery.validator.css" />
  3324. <Content Include="Content\paper\dist\jquery.validator.js" />
  3325. <Content Include="Content\paper\dist\jquery.validator.min.js" />
  3326. <Content Include="Content\paper\dist\local\en.js" />
  3327. <Content Include="Content\paper\dist\local\ja.js" />
  3328. <Content Include="Content\paper\dist\local\zh-CN.js" />
  3329. <Content Include="Content\paper\dist\local\zh-TW.js" />
  3330. <Content Include="Content\paper\easing.js" />
  3331. <Content Include="Content\paper\images\duigou.png" />
  3332. <Content Include="Content\qingju\128.png" />
  3333. <Content Include="Content\signalr\jquery.signalR-2.2.2.js" />
  3334. <Content Include="Content\signalr\jquery.signalR-2.2.2.min.js" />
  3335. <Content Include="Content\signet\jquery.zsign.css" />
  3336. <Content Include="Content\signet\jquery.zsign.js" />
  3337. <Content Include="Content\signet\signet.gif" />
  3338. <Content Include="Content\sso\css\bootstrap.css" />
  3339. <Content Include="Content\sso\css\common.css" />
  3340. <Content Include="Content\sso\css\index.css" />
  3341. <Content Include="Content\sso\css\layui.css" />
  3342. <Content Include="Content\sso\css\style.css" />
  3343. <Content Include="Content\sso\fx.png" />
  3344. <Content Include="Content\sso\images\ban1.jpg" />
  3345. <Content Include="Content\sso\images\ban2.jpg" />
  3346. <Content Include="Content\sso\images\ban3.jpg" />
  3347. <Content Include="Content\sso\images\ban4.jpg" />
  3348. <Content Include="Content\sso\images\gatSec1-1.jpg" />
  3349. <Content Include="Content\sso\images\gatSec1-1.png" />
  3350. <Content Include="Content\sso\images\gatSec1-10.png" />
  3351. <Content Include="Content\sso\images\gatSec1-11.png" />
  3352. <Content Include="Content\sso\images\gatSec1-12.png" />
  3353. <Content Include="Content\sso\images\gatSec1-2.png" />
  3354. <Content Include="Content\sso\images\gatSec1-3.png" />
  3355. <Content Include="Content\sso\images\gatSec1-4.png" />
  3356. <Content Include="Content\sso\images\gatSec1-5.png" />
  3357. <Content Include="Content\sso\images\gatSec1-6.png" />
  3358. <Content Include="Content\sso\images\gatSec1-7.png" />
  3359. <Content Include="Content\sso\images\gatSec1-8.png" />
  3360. <Content Include="Content\sso\images\gatSec1-9.png" />
  3361. <Content Include="Content\sso\images\gatSec2-1.png" />
  3362. <Content Include="Content\sso\images\gatSec2-2.png" />
  3363. <Content Include="Content\sso\images\gatSec2-3.png" />
  3364. <Content Include="Content\sso\images\gatSec3-1.png" />
  3365. <Content Include="Content\sso\images\gatSec3-10.png" />
  3366. <Content Include="Content\sso\images\gatSec3-11.png" />
  3367. <Content Include="Content\sso\images\gatSec3-12.png" />
  3368. <Content Include="Content\sso\images\gatSec3-13.png" />
  3369. <Content Include="Content\sso\images\gatSec3-14.png" />
  3370. <Content Include="Content\sso\images\gatSec3-2.png" />
  3371. <Content Include="Content\sso\images\gatSec3-3.png" />
  3372. <Content Include="Content\sso\images\gatSec3-4.png" />
  3373. <Content Include="Content\sso\images\gatSec3-5.png" />
  3374. <Content Include="Content\sso\images\gatSec3-6.png" />
  3375. <Content Include="Content\sso\images\gatSec3-7.png" />
  3376. <Content Include="Content\sso\images\gatSec3-8.png" />
  3377. <Content Include="Content\sso\images\gatSec3-9.png" />
  3378. <Content Include="Content\sso\images\head1.png" />
  3379. <Content Include="Content\sso\images\inSec1-1.png" />
  3380. <Content Include="Content\sso\images\inSec1-2.png" />
  3381. <Content Include="Content\sso\images\inSec1-3.png" />
  3382. <Content Include="Content\sso\images\inSec1-4.png" />
  3383. <Content Include="Content\sso\images\inSec1-5.png" />
  3384. <Content Include="Content\sso\images\inSec1-6.png" />
  3385. <Content Include="Content\sso\images\inSec1-7.png" />
  3386. <Content Include="Content\sso\images\inSec1-8.png" />
  3387. <Content Include="Content\sso\images\inSec1-9.png" />
  3388. <Content Include="Content\sso\images\inSec4-1.jpg" />
  3389. <Content Include="Content\sso\images\inSec4-1.png" />
  3390. <Content Include="Content\sso\images\listDot1.jpg" />
  3391. <Content Include="Content\sso\images\logo.png" />
  3392. <Content Include="Content\sso\images\saiXuan.png" />
  3393. <Content Include="Content\sso\jqbase64\jquery.base64.js" />
  3394. <Content Include="Content\static\css\main.css" />
  3395. <Content Include="Content\static\css\TimeTable.css" />
  3396. <Content Include="Content\static\img\map.gif" />
  3397. <Content Include="Content\static\js\app.js" />
  3398. <Content Include="Content\static\js\citymap.js" />
  3399. <Content Include="Content\static\js\echarts.min.js" />
  3400. <Content Include="Content\static\js\jquery.min.js" />
  3401. <Content Include="Content\static\js\LodopFuncs.js" />
  3402. <Content Include="Content\static\map\city\china-main-city-map.js" />
  3403. <Content Include="Content\ueditor\dialogs\anchor\anchor.html" />
  3404. <Content Include="Content\ueditor\dialogs\attachment\attachment.css" />
  3405. <Content Include="Content\ueditor\dialogs\attachment\attachment.html" />
  3406. <Content Include="Content\ueditor\dialogs\attachment\attachment.js" />
  3407. <Content Include="Content\ueditor\dialogs\attachment\fileTypeImages\icon_chm.gif" />
  3408. <Content Include="Content\ueditor\dialogs\attachment\fileTypeImages\icon_default.png" />
  3409. <Content Include="Content\ueditor\dialogs\attachment\fileTypeImages\icon_doc.gif" />
  3410. <Content Include="Content\ueditor\dialogs\attachment\fileTypeImages\icon_exe.gif" />
  3411. <Content Include="Content\ueditor\dialogs\attachment\fileTypeImages\icon_jpg.gif" />
  3412. <Content Include="Content\ueditor\dialogs\attachment\fileTypeImages\icon_mp3.gif" />
  3413. <Content Include="Content\ueditor\dialogs\attachment\fileTypeImages\icon_mv.gif" />
  3414. <Content Include="Content\ueditor\dialogs\attachment\fileTypeImages\icon_pdf.gif" />
  3415. <Content Include="Content\ueditor\dialogs\attachment\fileTypeImages\icon_ppt.gif" />
  3416. <Content Include="Content\ueditor\dialogs\attachment\fileTypeImages\icon_psd.gif" />
  3417. <Content Include="Content\ueditor\dialogs\attachment\fileTypeImages\icon_rar.gif" />
  3418. <Content Include="Content\ueditor\dialogs\attachment\fileTypeImages\icon_txt.gif" />
  3419. <Content Include="Content\ueditor\dialogs\attachment\fileTypeImages\icon_xls.gif" />
  3420. <Content Include="Content\ueditor\dialogs\attachment\images\alignicon.gif" />
  3421. <Content Include="Content\ueditor\dialogs\attachment\images\alignicon.png" />
  3422. <Content Include="Content\ueditor\dialogs\attachment\images\bg.png" />
  3423. <Content Include="Content\ueditor\dialogs\attachment\images\file-icons.gif" />
  3424. <Content Include="Content\ueditor\dialogs\attachment\images\file-icons.png" />
  3425. <Content Include="Content\ueditor\dialogs\attachment\images\icons.gif" />
  3426. <Content Include="Content\ueditor\dialogs\attachment\images\icons.png" />
  3427. <Content Include="Content\ueditor\dialogs\attachment\images\image.png" />
  3428. <Content Include="Content\ueditor\dialogs\attachment\images\progress.png" />
  3429. <Content Include="Content\ueditor\dialogs\attachment\images\success.gif" />
  3430. <Content Include="Content\ueditor\dialogs\attachment\images\success.png" />
  3431. <Content Include="Content\ueditor\dialogs\background\background.css" />
  3432. <Content Include="Content\ueditor\dialogs\background\background.html" />
  3433. <Content Include="Content\ueditor\dialogs\background\background.js" />
  3434. <Content Include="Content\ueditor\dialogs\background\images\bg.png" />
  3435. <Content Include="Content\ueditor\dialogs\background\images\success.png" />
  3436. <Content Include="Content\ueditor\dialogs\charts\chart.config.js" />
  3437. <Content Include="Content\ueditor\dialogs\charts\charts.css" />
  3438. <Content Include="Content\ueditor\dialogs\charts\charts.html" />
  3439. <Content Include="Content\ueditor\dialogs\charts\charts.js" />
  3440. <Content Include="Content\ueditor\dialogs\charts\images\charts0.png" />
  3441. <Content Include="Content\ueditor\dialogs\charts\images\charts1.png" />
  3442. <Content Include="Content\ueditor\dialogs\charts\images\charts2.png" />
  3443. <Content Include="Content\ueditor\dialogs\charts\images\charts3.png" />
  3444. <Content Include="Content\ueditor\dialogs\charts\images\charts4.png" />
  3445. <Content Include="Content\ueditor\dialogs\charts\images\charts5.png" />
  3446. <Content Include="Content\ueditor\dialogs\emotion\emotion.css" />
  3447. <Content Include="Content\ueditor\dialogs\emotion\emotion.html" />
  3448. <Content Include="Content\ueditor\dialogs\emotion\emotion.js" />
  3449. <Content Include="Content\ueditor\dialogs\emotion\images\0.gif" />
  3450. <Content Include="Content\ueditor\dialogs\emotion\images\bface.gif" />
  3451. <Content Include="Content\ueditor\dialogs\emotion\images\cface.gif" />
  3452. <Content Include="Content\ueditor\dialogs\emotion\images\fface.gif" />
  3453. <Content Include="Content\ueditor\dialogs\emotion\images\jxface2.gif" />
  3454. <Content Include="Content\ueditor\dialogs\emotion\images\neweditor-tab-bg.png" />
  3455. <Content Include="Content\ueditor\dialogs\emotion\images\tface.gif" />
  3456. <Content Include="Content\ueditor\dialogs\emotion\images\wface.gif" />
  3457. <Content Include="Content\ueditor\dialogs\emotion\images\yface.gif" />
  3458. <Content Include="Content\ueditor\dialogs\gmap\gmap.html" />
  3459. <Content Include="Content\ueditor\dialogs\help\help.css" />
  3460. <Content Include="Content\ueditor\dialogs\help\help.html" />
  3461. <Content Include="Content\ueditor\dialogs\image\image.css" />
  3462. <Content Include="Content\ueditor\dialogs\image\image.html" />
  3463. <Content Include="Content\ueditor\dialogs\image\image.js" />
  3464. <Content Include="Content\ueditor\dialogs\image\images\alignicon.jpg" />
  3465. <Content Include="Content\ueditor\dialogs\image\images\bg.png" />
  3466. <Content Include="Content\ueditor\dialogs\image\images\icons.gif" />
  3467. <Content Include="Content\ueditor\dialogs\image\images\icons.png" />
  3468. <Content Include="Content\ueditor\dialogs\image\images\image.png" />
  3469. <Content Include="Content\ueditor\dialogs\image\images\progress.png" />
  3470. <Content Include="Content\ueditor\dialogs\image\images\success.gif" />
  3471. <Content Include="Content\ueditor\dialogs\image\images\success.png" />
  3472. <Content Include="Content\ueditor\dialogs\insertframe\insertframe.html" />
  3473. <Content Include="Content\ueditor\dialogs\internal.js" />
  3474. <Content Include="Content\ueditor\dialogs\link\link.html" />
  3475. <Content Include="Content\ueditor\dialogs\map\map.html" />
  3476. <Content Include="Content\ueditor\dialogs\map\show.html" />
  3477. <Content Include="Content\ueditor\dialogs\music\music.css" />
  3478. <Content Include="Content\ueditor\dialogs\music\music.html" />
  3479. <Content Include="Content\ueditor\dialogs\music\music.js" />
  3480. <Content Include="Content\ueditor\dialogs\preview\preview.html" />
  3481. <Content Include="Content\ueditor\dialogs\scrawl\images\addimg.png" />
  3482. <Content Include="Content\ueditor\dialogs\scrawl\images\brush.png" />
  3483. <Content Include="Content\ueditor\dialogs\scrawl\images\delimg.png" />
  3484. <Content Include="Content\ueditor\dialogs\scrawl\images\delimgH.png" />
  3485. <Content Include="Content\ueditor\dialogs\scrawl\images\empty.png" />
  3486. <Content Include="Content\ueditor\dialogs\scrawl\images\emptyH.png" />
  3487. <Content Include="Content\ueditor\dialogs\scrawl\images\eraser.png" />
  3488. <Content Include="Content\ueditor\dialogs\scrawl\images\redo.png" />
  3489. <Content Include="Content\ueditor\dialogs\scrawl\images\redoH.png" />
  3490. <Content Include="Content\ueditor\dialogs\scrawl\images\scale.png" />
  3491. <Content Include="Content\ueditor\dialogs\scrawl\images\scaleH.png" />
  3492. <Content Include="Content\ueditor\dialogs\scrawl\images\size.png" />
  3493. <Content Include="Content\ueditor\dialogs\scrawl\images\undo.png" />
  3494. <Content Include="Content\ueditor\dialogs\scrawl\images\undoH.png" />
  3495. <Content Include="Content\ueditor\dialogs\scrawl\scrawl.css" />
  3496. <Content Include="Content\ueditor\dialogs\scrawl\scrawl.html" />
  3497. <Content Include="Content\ueditor\dialogs\scrawl\scrawl.js" />
  3498. <Content Include="Content\ueditor\dialogs\searchreplace\searchreplace.html" />
  3499. <Content Include="Content\ueditor\dialogs\searchreplace\searchreplace.js" />
  3500. <Content Include="Content\ueditor\dialogs\snapscreen\snapscreen.html" />
  3501. <Content Include="Content\ueditor\dialogs\spechars\spechars.html" />
  3502. <Content Include="Content\ueditor\dialogs\spechars\spechars.js" />
  3503. <Content Include="Content\ueditor\dialogs\table\dragicon.png" />
  3504. <Content Include="Content\ueditor\dialogs\table\edittable.css" />
  3505. <Content Include="Content\ueditor\dialogs\table\edittable.html" />
  3506. <Content Include="Content\ueditor\dialogs\table\edittable.js" />
  3507. <Content Include="Content\ueditor\dialogs\table\edittd.html" />
  3508. <Content Include="Content\ueditor\dialogs\table\edittip.html" />
  3509. <Content Include="Content\ueditor\dialogs\template\config.js" />
  3510. <Content Include="Content\ueditor\dialogs\template\images\bg.gif" />
  3511. <Content Include="Content\ueditor\dialogs\template\images\pre0.png" />
  3512. <Content Include="Content\ueditor\dialogs\template\images\pre1.png" />
  3513. <Content Include="Content\ueditor\dialogs\template\images\pre2.png" />
  3514. <Content Include="Content\ueditor\dialogs\template\images\pre3.png" />
  3515. <Content Include="Content\ueditor\dialogs\template\images\pre4.png" />
  3516. <Content Include="Content\ueditor\dialogs\template\template.css" />
  3517. <Content Include="Content\ueditor\dialogs\template\template.html" />
  3518. <Content Include="Content\ueditor\dialogs\template\template.js" />
  3519. <Content Include="Content\ueditor\dialogs\video\images\bg.png" />
  3520. <Content Include="Content\ueditor\dialogs\video\images\center_focus.jpg" />
  3521. <Content Include="Content\ueditor\dialogs\video\images\file-icons.gif" />
  3522. <Content Include="Content\ueditor\dialogs\video\images\file-icons.png" />
  3523. <Content Include="Content\ueditor\dialogs\video\images\icons.gif" />
  3524. <Content Include="Content\ueditor\dialogs\video\images\icons.png" />
  3525. <Content Include="Content\ueditor\dialogs\video\images\image.png" />
  3526. <Content Include="Content\ueditor\dialogs\video\images\left_focus.jpg" />
  3527. <Content Include="Content\ueditor\dialogs\video\images\none_focus.jpg" />
  3528. <Content Include="Content\ueditor\dialogs\video\images\progress.png" />
  3529. <Content Include="Content\ueditor\dialogs\video\images\right_focus.jpg" />
  3530. <Content Include="Content\ueditor\dialogs\video\images\success.gif" />
  3531. <Content Include="Content\ueditor\dialogs\video\images\success.png" />
  3532. <Content Include="Content\ueditor\dialogs\video\video.css" />
  3533. <Content Include="Content\ueditor\dialogs\video\video.html" />
  3534. <Content Include="Content\ueditor\dialogs\video\video.js" />
  3535. <Content Include="Content\ueditor\dialogs\webapp\webapp.html" />
  3536. <Content Include="Content\ueditor\dialogs\wordimage\fClipboard_ueditor.swf" />
  3537. <Content Include="Content\ueditor\dialogs\wordimage\imageUploader.swf" />
  3538. <Content Include="Content\ueditor\dialogs\wordimage\tangram.js" />
  3539. <Content Include="Content\ueditor\dialogs\wordimage\wordimage.html" />
  3540. <Content Include="Content\ueditor\dialogs\wordimage\wordimage.js" />
  3541. <Content Include="Content\ueditor\dialogs\emotion\images\babycat\C_0001.gif" />
  3542. <Content Include="Content\ueditor\dialogs\emotion\images\babycat\C_0002.gif" />
  3543. <Content Include="Content\ueditor\dialogs\emotion\images\babycat\C_0003.gif" />
  3544. <Content Include="Content\ueditor\dialogs\emotion\images\babycat\C_0004.gif" />
  3545. <Content Include="Content\ueditor\dialogs\emotion\images\babycat\C_0005.gif" />
  3546. <Content Include="Content\ueditor\dialogs\emotion\images\babycat\C_0006.gif" />
  3547. <Content Include="Content\ueditor\dialogs\emotion\images\babycat\C_0007.gif" />
  3548. <Content Include="Content\ueditor\dialogs\emotion\images\babycat\C_0008.gif" />
  3549. <Content Include="Content\ueditor\dialogs\emotion\images\babycat\C_0009.gif" />
  3550. <Content Include="Content\ueditor\dialogs\emotion\images\babycat\C_0010.gif" />
  3551. <Content Include="Content\ueditor\dialogs\emotion\images\babycat\C_0011.gif" />
  3552. <Content Include="Content\ueditor\dialogs\emotion\images\babycat\C_0012.gif" />
  3553. <Content Include="Content\ueditor\dialogs\emotion\images\babycat\C_0013.gif" />
  3554. <Content Include="Content\ueditor\dialogs\emotion\images\babycat\C_0014.gif" />
  3555. <Content Include="Content\ueditor\dialogs\emotion\images\babycat\C_0015.gif" />
  3556. <Content Include="Content\ueditor\dialogs\emotion\images\babycat\C_0016.gif" />
  3557. <Content Include="Content\ueditor\dialogs\emotion\images\babycat\C_0017.gif" />
  3558. <Content Include="Content\ueditor\dialogs\emotion\images\babycat\C_0018.gif" />
  3559. <Content Include="Content\ueditor\dialogs\emotion\images\babycat\C_0019.gif" />
  3560. <Content Include="Content\ueditor\dialogs\emotion\images\babycat\C_0020.gif" />
  3561. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0001.gif" />
  3562. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0002.gif" />
  3563. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0003.gif" />
  3564. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0004.gif" />
  3565. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0005.gif" />
  3566. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0006.gif" />
  3567. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0007.gif" />
  3568. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0008.gif" />
  3569. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0009.gif" />
  3570. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0010.gif" />
  3571. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0011.gif" />
  3572. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0012.gif" />
  3573. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0013.gif" />
  3574. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0014.gif" />
  3575. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0015.gif" />
  3576. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0016.gif" />
  3577. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0017.gif" />
  3578. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0018.gif" />
  3579. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0019.gif" />
  3580. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0020.gif" />
  3581. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0021.gif" />
  3582. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0022.gif" />
  3583. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0023.gif" />
  3584. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0024.gif" />
  3585. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0025.gif" />
  3586. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0026.gif" />
  3587. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0027.gif" />
  3588. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0028.gif" />
  3589. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0029.gif" />
  3590. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0030.gif" />
  3591. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0031.gif" />
  3592. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0032.gif" />
  3593. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0033.gif" />
  3594. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0034.gif" />
  3595. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0035.gif" />
  3596. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0036.gif" />
  3597. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0037.gif" />
  3598. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0038.gif" />
  3599. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0039.gif" />
  3600. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0040.gif" />
  3601. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0041.gif" />
  3602. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0042.gif" />
  3603. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0043.gif" />
  3604. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0044.gif" />
  3605. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0045.gif" />
  3606. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0046.gif" />
  3607. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0047.gif" />
  3608. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0048.gif" />
  3609. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0049.gif" />
  3610. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0050.gif" />
  3611. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0051.gif" />
  3612. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0052.gif" />
  3613. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0053.gif" />
  3614. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0054.gif" />
  3615. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0055.gif" />
  3616. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0056.gif" />
  3617. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0057.gif" />
  3618. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0058.gif" />
  3619. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0059.gif" />
  3620. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0060.gif" />
  3621. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0061.gif" />
  3622. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0062.gif" />
  3623. <Content Include="Content\ueditor\dialogs\emotion\images\bobo\b_0063.gif" />
  3624. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f01.gif" />
  3625. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f02.gif" />
  3626. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f03.gif" />
  3627. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f04.gif" />
  3628. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f05.gif" />
  3629. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f06.gif" />
  3630. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f07.gif" />
  3631. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f08.gif" />
  3632. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f09.gif" />
  3633. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f10.gif" />
  3634. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f11.gif" />
  3635. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f12.gif" />
  3636. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f13.gif" />
  3637. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f14.gif" />
  3638. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f15.gif" />
  3639. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f16.gif" />
  3640. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f17.gif" />
  3641. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f18.gif" />
  3642. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f19.gif" />
  3643. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f20.gif" />
  3644. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f21.gif" />
  3645. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f22.gif" />
  3646. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f23.gif" />
  3647. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f24.gif" />
  3648. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f25.gif" />
  3649. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f26.gif" />
  3650. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f27.gif" />
  3651. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f28.gif" />
  3652. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f29.gif" />
  3653. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f30.gif" />
  3654. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f31.gif" />
  3655. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f32.gif" />
  3656. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f33.gif" />
  3657. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f34.gif" />
  3658. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f35.gif" />
  3659. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f36.gif" />
  3660. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f37.gif" />
  3661. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f38.gif" />
  3662. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f39.gif" />
  3663. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f40.gif" />
  3664. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f41.gif" />
  3665. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f42.gif" />
  3666. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f43.gif" />
  3667. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f44.gif" />
  3668. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f45.gif" />
  3669. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f46.gif" />
  3670. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f47.gif" />
  3671. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f48.gif" />
  3672. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f49.gif" />
  3673. <Content Include="Content\ueditor\dialogs\emotion\images\face\i_f50.gif" />
  3674. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0001.gif" />
  3675. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0002.gif" />
  3676. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0003.gif" />
  3677. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0004.gif" />
  3678. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0005.gif" />
  3679. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0006.gif" />
  3680. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0007.gif" />
  3681. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0008.gif" />
  3682. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0009.gif" />
  3683. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0010.gif" />
  3684. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0011.gif" />
  3685. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0012.gif" />
  3686. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0013.gif" />
  3687. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0014.gif" />
  3688. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0015.gif" />
  3689. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0016.gif" />
  3690. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0017.gif" />
  3691. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0018.gif" />
  3692. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0019.gif" />
  3693. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0020.gif" />
  3694. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0021.gif" />
  3695. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0022.gif" />
  3696. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0023.gif" />
  3697. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0024.gif" />
  3698. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0025.gif" />
  3699. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0026.gif" />
  3700. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0027.gif" />
  3701. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0028.gif" />
  3702. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0029.gif" />
  3703. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0030.gif" />
  3704. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0031.gif" />
  3705. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0032.gif" />
  3706. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0033.gif" />
  3707. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0034.gif" />
  3708. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0035.gif" />
  3709. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0036.gif" />
  3710. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0037.gif" />
  3711. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0038.gif" />
  3712. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0039.gif" />
  3713. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0040.gif" />
  3714. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0041.gif" />
  3715. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0042.gif" />
  3716. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0043.gif" />
  3717. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0044.gif" />
  3718. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0045.gif" />
  3719. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0046.gif" />
  3720. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0047.gif" />
  3721. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0048.gif" />
  3722. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0049.gif" />
  3723. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0050.gif" />
  3724. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0051.gif" />
  3725. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0052.gif" />
  3726. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0053.gif" />
  3727. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0054.gif" />
  3728. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0055.gif" />
  3729. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0056.gif" />
  3730. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0057.gif" />
  3731. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0058.gif" />
  3732. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0059.gif" />
  3733. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0060.gif" />
  3734. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0061.gif" />
  3735. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0062.gif" />
  3736. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0063.gif" />
  3737. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0064.gif" />
  3738. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0065.gif" />
  3739. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0066.gif" />
  3740. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0067.gif" />
  3741. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0068.gif" />
  3742. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0069.gif" />
  3743. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0070.gif" />
  3744. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0071.gif" />
  3745. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0072.gif" />
  3746. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0073.gif" />
  3747. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0074.gif" />
  3748. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0075.gif" />
  3749. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0076.gif" />
  3750. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0077.gif" />
  3751. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0078.gif" />
  3752. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0079.gif" />
  3753. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0080.gif" />
  3754. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0081.gif" />
  3755. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0082.gif" />
  3756. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0083.gif" />
  3757. <Content Include="Content\ueditor\dialogs\emotion\images\jx2\j_0084.gif" />
  3758. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0001.gif" />
  3759. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0002.gif" />
  3760. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0003.gif" />
  3761. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0004.gif" />
  3762. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0005.gif" />
  3763. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0006.gif" />
  3764. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0007.gif" />
  3765. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0008.gif" />
  3766. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0009.gif" />
  3767. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0010.gif" />
  3768. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0011.gif" />
  3769. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0012.gif" />
  3770. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0013.gif" />
  3771. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0014.gif" />
  3772. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0015.gif" />
  3773. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0016.gif" />
  3774. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0017.gif" />
  3775. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0018.gif" />
  3776. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0019.gif" />
  3777. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0020.gif" />
  3778. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0021.gif" />
  3779. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0022.gif" />
  3780. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0023.gif" />
  3781. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0024.gif" />
  3782. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0025.gif" />
  3783. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0026.gif" />
  3784. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0027.gif" />
  3785. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0028.gif" />
  3786. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0029.gif" />
  3787. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0030.gif" />
  3788. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0031.gif" />
  3789. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0032.gif" />
  3790. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0033.gif" />
  3791. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0034.gif" />
  3792. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0035.gif" />
  3793. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0036.gif" />
  3794. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0037.gif" />
  3795. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0038.gif" />
  3796. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0039.gif" />
  3797. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0040.gif" />
  3798. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0041.gif" />
  3799. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0042.gif" />
  3800. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0043.gif" />
  3801. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0044.gif" />
  3802. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0045.gif" />
  3803. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0046.gif" />
  3804. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0047.gif" />
  3805. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0048.gif" />
  3806. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0049.gif" />
  3807. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0050.gif" />
  3808. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0051.gif" />
  3809. <Content Include="Content\ueditor\dialogs\emotion\images\ldw\w_0052.gif" />
  3810. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0001.gif" />
  3811. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0002.gif" />
  3812. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0003.gif" />
  3813. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0004.gif" />
  3814. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0005.gif" />
  3815. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0006.gif" />
  3816. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0007.gif" />
  3817. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0008.gif" />
  3818. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0009.gif" />
  3819. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0010.gif" />
  3820. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0011.gif" />
  3821. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0012.gif" />
  3822. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0013.gif" />
  3823. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0014.gif" />
  3824. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0015.gif" />
  3825. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0016.gif" />
  3826. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0017.gif" />
  3827. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0018.gif" />
  3828. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0019.gif" />
  3829. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0020.gif" />
  3830. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0021.gif" />
  3831. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0022.gif" />
  3832. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0023.gif" />
  3833. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0024.gif" />
  3834. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0025.gif" />
  3835. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0026.gif" />
  3836. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0027.gif" />
  3837. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0028.gif" />
  3838. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0029.gif" />
  3839. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0030.gif" />
  3840. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0031.gif" />
  3841. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0032.gif" />
  3842. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0033.gif" />
  3843. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0034.gif" />
  3844. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0035.gif" />
  3845. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0036.gif" />
  3846. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0037.gif" />
  3847. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0038.gif" />
  3848. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0039.gif" />
  3849. <Content Include="Content\ueditor\dialogs\emotion\images\tsj\t_0040.gif" />
  3850. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0001.gif" />
  3851. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0002.gif" />
  3852. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0003.gif" />
  3853. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0004.gif" />
  3854. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0005.gif" />
  3855. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0006.gif" />
  3856. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0007.gif" />
  3857. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0008.gif" />
  3858. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0009.gif" />
  3859. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0010.gif" />
  3860. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0011.gif" />
  3861. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0012.gif" />
  3862. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0013.gif" />
  3863. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0014.gif" />
  3864. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0015.gif" />
  3865. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0016.gif" />
  3866. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0017.gif" />
  3867. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0018.gif" />
  3868. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0019.gif" />
  3869. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0020.gif" />
  3870. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0021.gif" />
  3871. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0022.gif" />
  3872. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0023.gif" />
  3873. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0024.gif" />
  3874. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0025.gif" />
  3875. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0026.gif" />
  3876. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0027.gif" />
  3877. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0028.gif" />
  3878. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0029.gif" />
  3879. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0030.gif" />
  3880. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0031.gif" />
  3881. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0032.gif" />
  3882. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0033.gif" />
  3883. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0034.gif" />
  3884. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0035.gif" />
  3885. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0036.gif" />
  3886. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0037.gif" />
  3887. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0038.gif" />
  3888. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0039.gif" />
  3889. <Content Include="Content\ueditor\dialogs\emotion\images\youa\y_0040.gif" />
  3890. <Content Include="Content\ueditor\lang\en\en.js" />
  3891. <Content Include="Content\ueditor\lang\en\images\addimage.png" />
  3892. <Content Include="Content\ueditor\lang\en\images\alldeletebtnhoverskin.png" />
  3893. <Content Include="Content\ueditor\lang\en\images\alldeletebtnupskin.png" />
  3894. <Content Include="Content\ueditor\lang\en\images\background.png" />
  3895. <Content Include="Content\ueditor\lang\en\images\button.png" />
  3896. <Content Include="Content\ueditor\lang\en\images\copy.png" />
  3897. <Content Include="Content\ueditor\lang\en\images\deletedisable.png" />
  3898. <Content Include="Content\ueditor\lang\en\images\deleteenable.png" />
  3899. <Content Include="Content\ueditor\lang\en\images\listbackground.png" />
  3900. <Content Include="Content\ueditor\lang\en\images\localimage.png" />
  3901. <Content Include="Content\ueditor\lang\en\images\music.png" />
  3902. <Content Include="Content\ueditor\lang\en\images\rotateleftdisable.png" />
  3903. <Content Include="Content\ueditor\lang\en\images\rotateleftenable.png" />
  3904. <Content Include="Content\ueditor\lang\en\images\rotaterightdisable.png" />
  3905. <Content Include="Content\ueditor\lang\en\images\rotaterightenable.png" />
  3906. <Content Include="Content\ueditor\lang\en\images\upload.png" />
  3907. <Content Include="Content\ueditor\lang\zh-cn\images\copy.png" />
  3908. <Content Include="Content\ueditor\lang\zh-cn\images\localimage.png" />
  3909. <Content Include="Content\ueditor\lang\zh-cn\images\music.png" />
  3910. <Content Include="Content\ueditor\lang\zh-cn\images\upload.png" />
  3911. <Content Include="Content\ueditor\lang\zh-cn\zh-cn.js" />
  3912. <Content Include="Content\ueditor\themes\default\css\ueditor.css" />
  3913. <Content Include="Content\ueditor\themes\default\css\ueditor.min.css" />
  3914. <Content Include="Content\ueditor\themes\default\dialogbase.css" />
  3915. <Content Include="Content\ueditor\themes\default\images\anchor.gif" />
  3916. <Content Include="Content\ueditor\themes\default\images\arrow.png" />
  3917. <Content Include="Content\ueditor\themes\default\images\arrow_down.png" />
  3918. <Content Include="Content\ueditor\themes\default\images\arrow_up.png" />
  3919. <Content Include="Content\ueditor\themes\default\images\button-bg.gif" />
  3920. <Content Include="Content\ueditor\themes\default\images\cancelbutton.gif" />
  3921. <Content Include="Content\ueditor\themes\default\images\charts.png" />
  3922. <Content Include="Content\ueditor\themes\default\images\cursor_h.gif" />
  3923. <Content Include="Content\ueditor\themes\default\images\cursor_h.png" />
  3924. <Content Include="Content\ueditor\themes\default\images\cursor_v.gif" />
  3925. <Content Include="Content\ueditor\themes\default\images\cursor_v.png" />
  3926. <Content Include="Content\ueditor\themes\default\images\dialog-title-bg.png" />
  3927. <Content Include="Content\ueditor\themes\default\images\filescan.png" />
  3928. <Content Include="Content\ueditor\themes\default\images\highlighted.gif" />
  3929. <Content Include="Content\ueditor\themes\default\images\icons-all.gif" />
  3930. <Content Include="Content\ueditor\themes\default\images\icons.gif" />
  3931. <Content Include="Content\ueditor\themes\default\images\icons.png" />
  3932. <Content Include="Content\ueditor\themes\default\images\loaderror.png" />
  3933. <Content Include="Content\ueditor\themes\default\images\loading.gif" />
  3934. <Content Include="Content\ueditor\themes\default\images\lock.gif" />
  3935. <Content Include="Content\ueditor\themes\default\images\neweditor-tab-bg.png" />
  3936. <Content Include="Content\ueditor\themes\default\images\pagebreak.gif" />
  3937. <Content Include="Content\ueditor\themes\default\images\scale.png" />
  3938. <Content Include="Content\ueditor\themes\default\images\sortable.png" />
  3939. <Content Include="Content\ueditor\themes\default\images\spacer.gif" />
  3940. <Content Include="Content\ueditor\themes\default\images\sparator_v.png" />
  3941. <Content Include="Content\ueditor\themes\default\images\table-cell-align.png" />
  3942. <Content Include="Content\ueditor\themes\default\images\tangram-colorpicker.png" />
  3943. <Content Include="Content\ueditor\themes\default\images\toolbar_bg.png" />
  3944. <Content Include="Content\ueditor\themes\default\images\unhighlighted.gif" />
  3945. <Content Include="Content\ueditor\themes\default\images\upload.png" />
  3946. <Content Include="Content\ueditor\themes\default\images\videologo.gif" />
  3947. <Content Include="Content\ueditor\themes\default\images\word.gif" />
  3948. <Content Include="Content\ueditor\themes\default\images\wordpaste.png" />
  3949. <Content Include="Content\ueditor\themes\iframe.css" />
  3950. <Content Include="Content\ueditor\third-party\codemirror\codemirror.css" />
  3951. <Content Include="Content\ueditor\third-party\codemirror\codemirror.js" />
  3952. <Content Include="Content\ueditor\third-party\highcharts\adapters\mootools-adapter.js" />
  3953. <Content Include="Content\ueditor\third-party\highcharts\adapters\mootools-adapter.src.js" />
  3954. <Content Include="Content\ueditor\third-party\highcharts\adapters\prototype-adapter.js" />
  3955. <Content Include="Content\ueditor\third-party\highcharts\adapters\prototype-adapter.src.js" />
  3956. <Content Include="Content\ueditor\third-party\highcharts\adapters\standalone-framework.js" />
  3957. <Content Include="Content\ueditor\third-party\highcharts\adapters\standalone-framework.src.js" />
  3958. <Content Include="Content\ueditor\third-party\highcharts\highcharts-more.js" />
  3959. <Content Include="Content\ueditor\third-party\highcharts\highcharts-more.src.js" />
  3960. <Content Include="Content\ueditor\third-party\highcharts\highcharts.js" />
  3961. <Content Include="Content\ueditor\third-party\highcharts\highcharts.src.js" />
  3962. <Content Include="Content\ueditor\third-party\highcharts\modules\annotations.js" />
  3963. <Content Include="Content\ueditor\third-party\highcharts\modules\annotations.src.js" />
  3964. <Content Include="Content\ueditor\third-party\highcharts\modules\canvas-tools.js" />
  3965. <Content Include="Content\ueditor\third-party\highcharts\modules\canvas-tools.src.js" />
  3966. <Content Include="Content\ueditor\third-party\highcharts\modules\data.js" />
  3967. <Content Include="Content\ueditor\third-party\highcharts\modules\data.src.js" />
  3968. <Content Include="Content\ueditor\third-party\highcharts\modules\drilldown.js" />
  3969. <Content Include="Content\ueditor\third-party\highcharts\modules\drilldown.src.js" />
  3970. <Content Include="Content\ueditor\third-party\highcharts\modules\exporting.js" />
  3971. <Content Include="Content\ueditor\third-party\highcharts\modules\exporting.src.js" />
  3972. <Content Include="Content\ueditor\third-party\highcharts\modules\funnel.js" />
  3973. <Content Include="Content\ueditor\third-party\highcharts\modules\funnel.src.js" />
  3974. <Content Include="Content\ueditor\third-party\highcharts\modules\heatmap.js" />
  3975. <Content Include="Content\ueditor\third-party\highcharts\modules\heatmap.src.js" />
  3976. <Content Include="Content\ueditor\third-party\highcharts\modules\map.js" />
  3977. <Content Include="Content\ueditor\third-party\highcharts\modules\map.src.js" />
  3978. <Content Include="Content\ueditor\third-party\highcharts\modules\no-data-to-display.js" />
  3979. <Content Include="Content\ueditor\third-party\highcharts\modules\no-data-to-display.src.js" />
  3980. <Content Include="Content\ueditor\third-party\highcharts\themes\dark-blue.js" />
  3981. <Content Include="Content\ueditor\third-party\highcharts\themes\dark-green.js" />
  3982. <Content Include="Content\ueditor\third-party\highcharts\themes\gray.js" />
  3983. <Content Include="Content\ueditor\third-party\highcharts\themes\grid.js" />
  3984. <Content Include="Content\ueditor\third-party\highcharts\themes\skies.js" />
  3985. <Content Include="Content\ueditor\third-party\jquery-1.10.2.js" />
  3986. <Content Include="Content\ueditor\third-party\jquery-1.10.2.min.js" />
  3987. <Content Include="Content\ueditor\third-party\snapscreen\UEditorSnapscreen.exe" />
  3988. <Content Include="Content\ueditor\third-party\SyntaxHighlighter\shCore.js" />
  3989. <Content Include="Content\ueditor\third-party\SyntaxHighlighter\shCoreDefault.css" />
  3990. <Content Include="Content\ueditor\third-party\video-js\font\vjs.svg" />
  3991. <Content Include="Content\ueditor\third-party\video-js\video-js.css" />
  3992. <Content Include="Content\ueditor\third-party\video-js\video-js.min.css" />
  3993. <Content Include="Content\ueditor\third-party\video-js\video-js.swf" />
  3994. <Content Include="Content\ueditor\third-party\video-js\video.dev.js" />
  3995. <Content Include="Content\ueditor\third-party\video-js\video.js" />
  3996. <Content Include="Content\ueditor\third-party\webuploader\Uploader.swf" />
  3997. <Content Include="Content\ueditor\third-party\webuploader\webuploader.css" />
  3998. <Content Include="Content\ueditor\third-party\webuploader\webuploader.custom.js" />
  3999. <Content Include="Content\ueditor\third-party\webuploader\webuploader.custom.min.js" />
  4000. <Content Include="Content\ueditor\third-party\webuploader\webuploader.flashonly.js" />
  4001. <Content Include="Content\ueditor\third-party\webuploader\webuploader.flashonly.min.js" />
  4002. <Content Include="Content\ueditor\third-party\webuploader\webuploader.html5only.js" />
  4003. <Content Include="Content\ueditor\third-party\webuploader\webuploader.html5only.min.js" />
  4004. <Content Include="Content\ueditor\third-party\webuploader\webuploader.js" />
  4005. <Content Include="Content\ueditor\third-party\webuploader\webuploader.min.js" />
  4006. <Content Include="Content\ueditor\third-party\webuploader\webuploader.withoutimage.js" />
  4007. <Content Include="Content\ueditor\third-party\webuploader\webuploader.withoutimage.min.js" />
  4008. <Content Include="Content\ueditor\third-party\xss.min.js" />
  4009. <Content Include="Content\ueditor\third-party\zeroclipboard\ZeroClipboard.js" />
  4010. <Content Include="Content\ueditor\third-party\zeroclipboard\ZeroClipboard.min.js" />
  4011. <Content Include="Content\ueditor\third-party\zeroclipboard\ZeroClipboard.swf" />
  4012. <Content Include="Content\ueditor\ueditor.all.js" />
  4013. <Content Include="Content\ueditor\ueditor.all.min.js" />
  4014. <Content Include="Content\ueditor\ueditor.config.js" />
  4015. <Content Include="Content\ueditor\ueditor.parse.js" />
  4016. <Content Include="Content\ueditor\ueditor.parse.min.js" />
  4017. <Content Include="Content\uploadify\Change Log.txt" />
  4018. <Content Include="Content\uploadify\check-exists.php" />
  4019. <Content Include="Content\uploadify\index.php" />
  4020. <Content Include="Content\uploadify\jquery.uploadify.js" />
  4021. <Content Include="Content\uploadify\jquery.uploadify.min.js" />
  4022. <Content Include="Content\uploadify\license.txt" />
  4023. <Content Include="Content\uploadify\uploadify-cancel.png" />
  4024. <Content Include="Content\uploadify\uploadify.css" />
  4025. <Content Include="Content\uploadify\uploadify.php" />
  4026. <Content Include="Content\uploadify\uploadify.swf" />
  4027. <Content Include="Content\uploadify\__MACOSX\._Change Log.txt" />
  4028. <Content Include="Content\uploadify\__MACOSX\._uploadify.swf" />
  4029. <Content Include="Content\vue\vue-resource.js" />
  4030. <Content Include="Content\vue\vue.js" />
  4031. <Content Include="Content\webuploader\Uploader.swf" />
  4032. <Content Include="Content\webuploader\webuploader.css" />
  4033. <Content Include="Content\webuploader\webuploader.custom.js" />
  4034. <Content Include="Content\webuploader\webuploader.custom.min.js" />
  4035. <Content Include="Content\webuploader\webuploader.fis.js" />
  4036. <Content Include="Content\webuploader\webuploader.flashonly.js" />
  4037. <Content Include="Content\webuploader\webuploader.flashonly.min.js" />
  4038. <Content Include="Content\webuploader\webuploader.html5only.js" />
  4039. <Content Include="Content\webuploader\webuploader.html5only.min.js" />
  4040. <Content Include="Content\webuploader\webuploader.js" />
  4041. <Content Include="Content\webuploader\webuploader.min.js" />
  4042. <Content Include="Content\webuploader\webuploader.noimage.js" />
  4043. <Content Include="Content\webuploader\webuploader.noimage.min.js" />
  4044. <Content Include="Content\webuploader\webuploader.nolog.js" />
  4045. <Content Include="Content\webuploader\webuploader.nolog.min.js" />
  4046. <Content Include="Content\webuploader\webuploader.withoutimage.js" />
  4047. <Content Include="Content\webuploader\webuploader.withoutimage.min.js" />
  4048. <Content Include="Areas\LR_WorkFlowModule\Views\WfScheme\Form.cshtml" />
  4049. <Content Include="Areas\LR_WorkFlowModule\Views\WfScheme\HistoryForm.cshtml" />
  4050. <Content Include="Resource\wav\收到新消息.wav" />
  4051. <Content Include="Views\Home\AdminAccordion\Index.css" />
  4052. <Content Include="Views\Home\AdminAccordion\Index.js" />
  4053. <Content Include="Views\Home\AdminDefault\indexNavigation.js" />
  4054. <Content Include="Views\Home\AdminDesktopAccordion\index.css" />
  4055. <Content Include="Views\Home\AdminDesktopAccordion\index.js" />
  4056. <Content Include="Views\Home\AdminDesktopTemp\Index.css" />
  4057. <Content Include="Views\Home\AdminDesktopTemp\Index.js" />
  4058. <Content Include="Views\Home\AdminDesktopTop\index.css" />
  4059. <Content Include="Views\Home\AdminDesktopTop\index.js" />
  4060. <Content Include="Views\Home\AdminDesktopWindos\index.css" />
  4061. <Content Include="Views\Home\AdminDesktopWindos\index.js" />
  4062. <Content Include="Views\Home\AdminDesktop\Index.css" />
  4063. <Content Include="Views\Home\AdminDesktop\Index.js" />
  4064. <Content Include="Views\Home\AdminTheme5\index.css" />
  4065. <Content Include="Views\Home\AdminTheme5\index.js" />
  4066. <Content Include="Views\Home\AdminTop\Index.css" />
  4067. <Content Include="Views\Home\AdminTop\Index.js" />
  4068. <Content Include="Views\Home\AdminWindos\Index.css" />
  4069. <Content Include="Views\Home\AdminWindos\Index.js" />
  4070. <Content Include="Views\Home\DataBaseInit.js" />
  4071. <Content Include="Views\Home\ChangePwd.js" />
  4072. <Content Include="Views\Home\NeedToDoForm.js" />
  4073. <Content Include="Views\Home\Guide\guide.css" />
  4074. <Content Include="Views\Home\Guide\index.css" />
  4075. <Content Include="Views\Home\Guide\index.js" />
  4076. <Content Include="Views\Home\HomeOfStudent\Index.css" />
  4077. <Content Include="Views\Home\HomeOfStudent\Index.js" />
  4078. <Content Include="Views\Login\Accordion\Index.css" />
  4079. <Content Include="Views\Login\Accordion\Index.js" />
  4080. <Content Include="Views\Login\ACLogon.js" />
  4081. <Content Include="Views\Login\Default.cshtml" />
  4082. <Content Include="Views\Login\Default\IndexWxLogin.js" />
  4083. <Content Include="Views\Login\Default\Index.css" />
  4084. <Content Include="Views\Login\Default\Index.js" />
  4085. <Content Include="Views\Login\Default\qrcode.min.js" />
  4086. <Content Include="Views\Login\images\login1.png" />
  4087. <Content Include="Views\Login\images\loginBg.jpg" />
  4088. <Content Include="Views\Login\PageFive\IndexWxLogin.js" />
  4089. <Content Include="Views\Login\PageFour\IndexWxLogin.js" />
  4090. <Content Include="Views\Login\PageOne\IndexWxLogin.js" />
  4091. <Content Include="Views\Login\PageSeven\Index.js" />
  4092. <Content Include="Views\Login\PageSeven\IndexWxLogin.js" />
  4093. <Content Include="Views\Login\PageSix\IndexWxLogin.js" />
  4094. <Content Include="Views\Login\PageSix\Index.js" />
  4095. <Content Include="Views\Login\PageFive\Index.js" />
  4096. <Content Include="Views\Login\PageFour\Index.js" />
  4097. <Content Include="Views\Login\PageOne\Index.js" />
  4098. <Content Include="Views\Login\PageThree\IndexWxLogin.js" />
  4099. <Content Include="Views\Login\PageThree\Index.js" />
  4100. <Content Include="Views\Login\PageTwo\IndexWxLogin.js" />
  4101. <Content Include="Views\Login\PageTwo\Index.js" />
  4102. <Content Include="Views\Login\Top\Index.css" />
  4103. <Content Include="Views\Login\Top\Index.js" />
  4104. <Content Include="Views\Login\Window\Index.css" />
  4105. <Content Include="Views\Login\Window\Index.js" />
  4106. <Content Include="Views\LR_Content\plugin\contextmenu\lr-contextmenu.css" />
  4107. <Content Include="Views\LR_Content\plugin\contextmenu\lr-contextmenu.js" />
  4108. <Content Include="Views\LR_Content\plugin\custmerform\lr-formcomponts.js" />
  4109. <Content Include="Views\LR_Content\plugin\custmerform\lr-formdesigner.css" />
  4110. <Content Include="Views\LR_Content\plugin\custmerform\lr-formdesigner.js" />
  4111. <Content Include="Views\LR_Content\plugin\custmerform\lr-formrender.js" />
  4112. <Content Include="Views\LR_Content\plugin\gantt\lrGantt.css" />
  4113. <Content Include="Views\LR_Content\plugin\gantt\lrGantt.js" />
  4114. <Content Include="Views\LR_Content\plugin\grid\jfgrid.css" />
  4115. <Content Include="Views\LR_Content\plugin\grid\jfgrid.js" />
  4116. <Content Include="Views\LR_Content\plugin\im\lr-im.css" />
  4117. <Content Include="Views\LR_Content\plugin\im\lr-im.js" />
  4118. <Content Include="Views\LR_Content\plugin\custmerquery\lr-custmerquery.css" />
  4119. <Content Include="Views\LR_Content\plugin\custmerquery\lr-custmerquery.js" />
  4120. <Content Include="Views\LR_Content\plugin\date\lr-datepicker.css" />
  4121. <Content Include="Views\LR_Content\plugin\date\lr-datepicker.js" />
  4122. <Content Include="Views\LR_Content\plugin\formselect\lr-formselect.css" />
  4123. <Content Include="Views\LR_Content\plugin\formselect\lr-formselect.js" />
  4124. <Content Include="Views\LR_Content\plugin\inputsearch\lr-isearch.css" />
  4125. <Content Include="Views\LR_Content\plugin\inputsearch\lr-isearch.js" />
  4126. <Content Include="Views\LR_Content\plugin\layerselect\lr-layerselect.css" />
  4127. <Content Include="Views\LR_Content\plugin\layerselect\lr-layerselect.js" />
  4128. <Content Include="Views\LR_Content\plugin\layout\lr-layout.css" />
  4129. <Content Include="Views\LR_Content\plugin\layout\lr-layout.js" />
  4130. <Content Include="Views\LR_Content\plugin\mousewheel\mousewheel.js" />
  4131. <Content Include="Views\LR_Content\plugin\resize\resize.js" />
  4132. <Content Include="Views\LR_Content\plugin\scroll\scroll.css" />
  4133. <Content Include="Views\LR_Content\plugin\scroll\scroll.js" />
  4134. <Content Include="Views\LR_Content\plugin\select\lr-select.css" />
  4135. <Content Include="Views\LR_Content\plugin\select\lr-select.js" />
  4136. <Content Include="Views\LR_Content\plugin\timeline\lr-timelineEsc.js" />
  4137. <Content Include="Views\LR_Content\plugin\timeline\lr-timeline.css" />
  4138. <Content Include="Views\LR_Content\plugin\timeline\lr-timeline.js" />
  4139. <Content Include="Views\LR_Content\plugin\tree\lr-tree.css" />
  4140. <Content Include="Views\LR_Content\plugin\uploader\lr-uploader.css" />
  4141. <Content Include="Views\LR_Content\plugin\uploader\lr-uploader.js" />
  4142. <Content Include="Views\LR_Content\plugin\wizard\wizard.css" />
  4143. <Content Include="Views\LR_Content\plugin\wizard\wizard.js" />
  4144. <Content Include="Views\LR_Content\plugin\workflownew\lr-workflow-ui.css" />
  4145. <Content Include="Views\LR_Content\plugin\workflownew\lr-workflow-ui.js" />
  4146. <Content Include="Views\LR_Content\plugin\workflow\lr-workflow-api.js" />
  4147. <Content Include="Views\LR_Content\plugin\workflow\lr-workflow-ui.css" />
  4148. <Content Include="Views\LR_Content\plugin\workflow\lr-workflow-ui.js" />
  4149. <Content Include="Views\LR_Content\script\lr-adminForDC.js" />
  4150. <Content Include="Views\LR_Content\script\lr-admin.js" />
  4151. <Content Include="Views\LR_Content\script\lr-authorize.js" />
  4152. <Content Include="Views\LR_Content\script\lr-chartshelper.js" />
  4153. <Content Include="Views\LR_Content\script\lr-date.js" />
  4154. <Content Include="Views\LR_Content\script\lr-fileupload.js" />
  4155. <Content Include="Views\LR_Content\script\lr-form.js" />
  4156. <Content Include="Views\LR_Content\script\lr-iframe-index.js" />
  4157. <Content Include="Views\LR_Content\script\lr-bootstrap.js" />
  4158. <Content Include="Views\LR_Content\script\pushmessage.js" />
  4159. <Content Include="Views\LR_Content\script\lr-im.js" />
  4160. <Content Include="Views\LR_Content\script\lr-language - 副本.js" />
  4161. <Content Include="Views\LR_Content\script\lr-language.js" />
  4162. <Content Include="Views\LR_Content\script\lr-tabs.js" />
  4163. <Content Include="Views\LR_Content\script\lr-validator.js" />
  4164. <Content Include="Views\LR_Content\script\lr-validator-helper.js" />
  4165. <Content Include="Views\LR_Content\script\lr-excel.js" />
  4166. <Content Include="Views\LR_Content\script\lr_layout.js" />
  4167. <Content Include="Views\LR_Content\style\lr-admin.css" />
  4168. <Content Include="Views\LR_Content\style\lr-iframe-form.css" />
  4169. <Content Include="Views\LR_Content\style\lr-iframe-index.css" />
  4170. <Content Include="Views\LR_Content\script\lr-ajax.js" />
  4171. <Content Include="Views\LR_Content\script\lr-base.js" />
  4172. <Content Include="Views\LR_Content\script\lr-clientdata.js" />
  4173. <Content Include="Views\LR_Content\style\lr-common.css" />
  4174. <Content Include="favicon.ico" />
  4175. <Content Include="Global.asax" />
  4176. <Content Include="Content\jquery\jquery-1.10.2.min.js" />
  4177. <Content Include="Index.htm" />
  4178. <Content Include="Content\bootstrap\modernizr-2.6.2.min.js" />
  4179. <Content Include="Content\bootstrap\respond.min.js" />
  4180. <Content Include="Content\bootstrap\bootstrap.min.js" />
  4181. <Content Include="Content\font\fonts\fontawesome-webfont.eot" />
  4182. <Content Include="Content\font\fonts\fontawesome-webfont.ttf" />
  4183. <Content Include="Content\font\fonts\fontawesome-webfont.woff" />
  4184. <Content Include="Content\font\fonts\fontawesome-webfont.woff2" />
  4185. <Content Include="Content\font\fonts\FontAwesome.otf" />
  4186. <Content Include="Views\Home\AdminDefault\index.css" />
  4187. <Content Include="Views\Home\AdminDefault\index.js" />
  4188. <Content Include="Views\LR_Content\script\lr-layer.js" />
  4189. <Content Include="Views\LR_Content\plugin\tree\lr-tree.js" />
  4190. <Content Include="Views\Login\index.css" />
  4191. <Content Include="Views\Login\index.js" />
  4192. <Content Include="Areas\LR_SystemModule\Views\web.config" />
  4193. <Content Include="Areas\LR_OrganizationModule\Views\web.config" />
  4194. <Content Include="Areas\LR_CodeGeneratorModule\Views\web.config" />
  4195. <Content Include="Areas\LR_CodeGeneratorModule\Views\PluginDemo\Index.cshtml" />
  4196. <Content Include="Areas\LR_SystemModule\Views\Area\Index.cshtml" />
  4197. <Content Include="Areas\LR_SystemModule\Views\Module\Index.cshtml" />
  4198. <Content Include="Areas\LR_SystemModule\Views\Module\Form.cshtml" />
  4199. <Content Include="Views\LR_Content\style\lr-reportTemplate.css" />
  4200. <Content Include="Views\Shared\_Form.cshtml" />
  4201. <Content Include="Content\jquery\plugin\toastr\toastr.min.js" />
  4202. <Content Include="Areas\LR_SystemModule\Views\Area\Form.cshtml" />
  4203. <Content Include="Areas\LR_SystemModule\Views\DataItem\Index.cshtml" />
  4204. <Content Include="Areas\LR_SystemModule\Views\DataItem\ClassifyIndex.cshtml" />
  4205. <Content Include="Areas\LR_SystemModule\Views\DataItem\ClassifyForm.cshtml" />
  4206. <Content Include="Areas\LR_SystemModule\Views\DataItem\Form.cshtml" />
  4207. <Content Include="Areas\LR_OrganizationModule\Views\Company\Index.cshtml" />
  4208. <Content Include="Areas\LR_OrganizationModule\Views\Company\Form.cshtml" />
  4209. <Content Include="Areas\LR_OrganizationModule\Views\Department\Index.cshtml" />
  4210. <Content Include="Areas\LR_OrganizationModule\Views\Department\Form.cshtml" />
  4211. <Content Include="Areas\LR_OrganizationModule\Views\Role\Index.cshtml" />
  4212. <Content Include="Areas\LR_OrganizationModule\Views\Role\Form.cshtml" />
  4213. <Content Include="Areas\LR_SystemModule\Views\Log\Index.cshtml" />
  4214. <Content Include="Areas\LR_SystemModule\Views\CustmerQuery\Index.cshtml" />
  4215. <Content Include="Areas\LR_SystemModule\Views\CustmerQuery\Form.cshtml" />
  4216. <Content Include="Areas\LR_SystemModule\Views\CustmerQuery\QueryForm.cshtml" />
  4217. <Content Include="Areas\LR_SystemModule\Views\Log\Form.cshtml" />
  4218. <Content Include="Areas\LR_SystemModule\Views\DatabaseLink\Index.cshtml" />
  4219. <Content Include="Areas\LR_SystemModule\Views\DatabaseLink\Form.cshtml" />
  4220. <Content Include="Areas\LR_SystemModule\Views\DatabaseTable\Index.cshtml" />
  4221. <Content Include="Areas\LR_SystemModule\Views\DatabaseTable\Form.cshtml" />
  4222. <Content Include="Areas\LR_SystemModule\Views\DatabaseTable\TableIndex.cshtml" />
  4223. <Content Include="Views\Home\AdminAccordion.cshtml" />
  4224. <Content Include="Views\Home\AdminWindos.cshtml" />
  4225. <Content Include="Views\Home\AdminTop.cshtml" />
  4226. <Content Include="Areas\LR_CodeGeneratorModule\Views\Icon\Index.cshtml" />
  4227. <Content Include="Areas\LR_OrganizationModule\Views\User\SelectForm.cshtml" />
  4228. <Content Include="Areas\LR_SystemModule\Views\CodeRule\Index.cshtml" />
  4229. <Content Include="Areas\LR_SystemModule\Views\CodeRule\Form.cshtml" />
  4230. <Content Include="Areas\LR_SystemModule\Views\CodeRule\FormatForm.cshtml" />
  4231. <Content Include="Areas\LR_OrganizationModule\Views\Post\Index.cshtml" />
  4232. <Content Include="Areas\LR_OrganizationModule\Views\Post\Form.cshtml" />
  4233. <Content Include="Areas\LR_OrganizationModule\Views\Post\SelectForm.cshtml" />
  4234. <Content Include="Areas\LR_OrganizationModule\Views\User\Index.cshtml" />
  4235. <Content Include="Areas\LR_OrganizationModule\Views\User\Form.cshtml" />
  4236. <Content Include="Areas\LR_AuthorizeModule\Views\web.config" />
  4237. <Content Include="Areas\LR_AuthorizeModule\Views\FilterIP\Index.cshtml" />
  4238. <Content Include="Areas\LR_AuthorizeModule\Views\FilterIP\Form.cshtml" />
  4239. <Content Include="Areas\LR_AuthorizeModule\Views\FilterTime\Form.cshtml" />
  4240. <Content Include="Content\ueditor\third-party\jquery-1.10.2.min.map" />
  4241. <Content Include="Content\ueditor\third-party\video-js\font\vjs.eot" />
  4242. <Content Include="Content\ueditor\third-party\video-js\font\vjs.ttf" />
  4243. <Content Include="Content\ueditor\third-party\video-js\font\vjs.woff" />
  4244. <Content Include="Content\ueditor\config\config.json" />
  4245. <Content Include="Areas\LR_FormModule\Views\web.config" />
  4246. <Content Include="Areas\LR_FormModule\Views\Custmerform\Index.cshtml" />
  4247. <Content Include="Areas\LR_FormModule\Views\Custmerform\Form.cshtml" />
  4248. <Content Include="Areas\LR_FormModule\Views\Custmerform\PreviewForm.cshtml" />
  4249. <Content Include="Areas\LR_SystemModule\Views\DataSource\Index.cshtml" />
  4250. <Content Include="Areas\LR_SystemModule\Views\DataSource\Form.cshtml" />
  4251. <Content Include="Views\Shared\_Admin.cshtml" />
  4252. <Content Include="Areas\LR_SystemModule\Views\Annexes\UploadForm.cshtml" />
  4253. <Content Include="Areas\LR_SystemModule\Views\Annexes\DownForm.cshtml" />
  4254. <Content Include="Content\webuploader\README.md" />
  4255. <Content Include="Areas\LR_SystemModule\Views\ExcelImport\Index.cshtml" />
  4256. <Content Include="Areas\LR_SystemModule\Views\ExcelImport\Form.cshtml" />
  4257. <Content Include="Views\Shared\_CustmerFormDesigner.cshtml" />
  4258. <Content Include="Content\jquery-ui-1.12.1.custom\package.json" />
  4259. <Content Include="Areas\LR_FormModule\Views\Custmerform\DataTableForm.cshtml" />
  4260. <Content Include="Areas\LR_SystemModule\Views\DataSource\SelectForm.cshtml" />
  4261. <Content Include="Views\Home\AdminDesktopTemp.cshtml" />
  4262. <Content Include="Areas\LR_AuthorizeModule\Views\UserRelation\LookForm.cshtml" />
  4263. <Content Include="Areas\LR_AuthorizeModule\Views\Authorize\Form.cshtml" />
  4264. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplatePC\Index.cshtml" />
  4265. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplateAPP\Index.cshtml" />
  4266. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplatePC\FastCodeIndex.cshtml" />
  4267. <Content Include="Areas\LR_WorkFlowModule\Views\web.config" />
  4268. <Content Include="Areas\LR_CRMModule\Views\web.config" />
  4269. <Content Include="Views\Shared\_CodeBulidForm.cshtml" />
  4270. <Content Include="Areas\LR_AuthorizeModule\Views\DataAuthorize\QueryForm.cshtml" />
  4271. <Content Include="Areas\LR_WorkFlowModule\Views\WfScheme\Index.cshtml" />
  4272. <Content Include="Views\Shared\_WorkFlowForm.cshtml" />
  4273. <Content Include="Areas\LR_SystemModule\Views\DataItem\DetailIndex.cshtml" />
  4274. <Content Include="Areas\LR_WorkFlowModule\Views\WfScheme\NodeForm.cshtml" />
  4275. <Content Include="Views\Shared\_CustmerFormPreview.cshtml" />
  4276. <Content Include="Areas\LR_SystemModule\Views\Interface\Index.cshtml" />
  4277. <Content Include="Areas\LR_SystemModule\Views\Interface\Form.cshtml" />
  4278. <Content Include="Areas\LR_SystemModule\Views\Interface\FieldForm.cshtml" />
  4279. <Content Include="Views\Shared\_ReportTemplate.cshtml" />
  4280. <Content Include="Areas\LR_FormModule\Views\Custmerform\HistoryForm.cshtml" />
  4281. <Content Include="Areas\LR_ReportModule\Views\web.config" />
  4282. <Content Include="Areas\LR_ReportModule\Views\ReportTemplate\FinanceReport.cshtml" />
  4283. <Content Include="Areas\LR_ReportModule\Views\ReportTemplate\PurchaseReport.cshtml" />
  4284. <Content Include="Areas\LR_ReportModule\Views\ReportTemplate\SalesReport.cshtml" />
  4285. <Content Include="Areas\LR_ReportModule\Views\ReportTemplate\StockReport.cshtml" />
  4286. <Content Include="Areas\LR_ReportModule\Views\ReportTemplate\ReportData\FinanceReport.xlsx" />
  4287. <Content Include="Areas\LR_ReportModule\Views\ReportTemplate\ReportData\PurchaseReport.xlsx" />
  4288. <Content Include="Areas\LR_ReportModule\Views\ReportTemplate\ReportData\SalesReport.xlsx" />
  4289. <Content Include="Areas\LR_ReportModule\Views\ReportTemplate\ReportData\StockReport.xlsx" />
  4290. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplatePC\EntityCodeIndex.cshtml" />
  4291. <Content Include="Areas\LR_CRMModule\Views\CrmOrder\Form.cshtml" />
  4292. <Content Include="Areas\LR_CRMModule\Views\CrmOrder\Index.cshtml" />
  4293. <Content Include="Areas\LR_OAModule\Views\web.config" />
  4294. <Content Include="Areas\LR_OAModule\Views\News\Form.cshtml" />
  4295. <Content Include="Areas\LR_OAModule\Views\News\Index.cshtml" />
  4296. <Content Include="Areas\LR_OAModule\Views\Notice\Form.cshtml" />
  4297. <Content Include="Areas\LR_OAModule\Views\Notice\Index.cshtml" />
  4298. <Content Include="Areas\LR_OAModule\Views\Schedule\Index.cshtml" />
  4299. <Content Include="Content\jquery\plugin\jquery-ui\images\ui-icons_2e83ff_256x240.png.5576_1.1154.partial" />
  4300. <Content Include="Areas\LR_OAModule\Views\Schedule\Form.cshtml" />
  4301. <Content Include="Areas\LR_CRMModule\Views\CashBalance\Index.cshtml" />
  4302. <Content Include="Areas\LR_CRMModule\Views\Chance\Detail.cshtml" />
  4303. <Content Include="Areas\LR_CRMModule\Views\Chance\Form.cshtml" />
  4304. <Content Include="Areas\LR_CRMModule\Views\Chance\Index.cshtml" />
  4305. <Content Include="Areas\LR_CRMModule\Views\CustomerContact\ContactIndex.cshtml" />
  4306. <Content Include="Areas\LR_CRMModule\Views\CustomerContact\ContactForm.cshtml" />
  4307. <Content Include="Areas\LR_CRMModule\Views\Customer\Detail.cshtml" />
  4308. <Content Include="Areas\LR_CRMModule\Views\Customer\Form.cshtml" />
  4309. <Content Include="Areas\LR_CRMModule\Views\Customer\Index.cshtml" />
  4310. <Content Include="Areas\LR_CRMModule\Views\Expenses\Index.cshtml" />
  4311. <Content Include="Areas\LR_CRMModule\Views\Expenses\ExpensesForm.cshtml" />
  4312. <Content Include="Areas\LR_CRMModule\Views\Invoice\Index.cshtml" />
  4313. <Content Include="Areas\LR_CRMModule\Views\Invoice\Form.cshtml" />
  4314. <Content Include="Areas\LR_CRMModule\Views\Receivable\ReportIndex.cshtml" />
  4315. <Content Include="Areas\LR_CRMModule\Views\Receivable\Index.cshtml" />
  4316. <Content Include="Areas\LR_CRMModule\Views\Receivable\ReceiptForm.cshtml" />
  4317. <Content Include="Areas\LR_CRMModule\Views\TrailRecord\Index.cshtml" />
  4318. <Content Include="Areas\LR_ReportModule\Views\ReportManage\Form.cshtml" />
  4319. <Content Include="Areas\LR_ReportModule\Views\ReportManage\Index.cshtml" />
  4320. <Content Include="Areas\LR_ReportModule\Views\ReportManage\Preview.cshtml" />
  4321. <Content Include="Areas\LR_OAModule\Views\Signet\Index.cshtml" />
  4322. <Content Include="Areas\LR_FormModule\Views\Custmerform\SetFieldForm.cshtml" />
  4323. <Content Include="Areas\LR_FormModule\Views\Custmerform\SetFieldIndex.cshtml" />
  4324. <Content Include="Areas\LR_FormModule\Views\Custmerform\SetSelectFieldForm.cshtml" />
  4325. <Content Include="Areas\LR_SystemModule\Views\DataSource\TestForm.cshtml" />
  4326. <Content Include="Areas\LR_WebChatModule\Views\web.config" />
  4327. <Content Include="Areas\LR_WebChatModule\Views\Token\Index.cshtml" />
  4328. <Content Include="Views\Shared\_CustmerIndexPreview.cshtml" />
  4329. <Content Include="Areas\LR_WorkFlowModule\Views\WfScheme\PostForm.cshtml" />
  4330. <Content Include="Areas\LR_WorkFlowModule\Views\WfScheme\RoleForm.cshtml" />
  4331. <Content Include="Areas\LR_WorkFlowModule\Views\WfScheme\UserForm.cshtml" />
  4332. <Content Include="Areas\LR_WorkFlowModule\Views\WfScheme\AuthorizeForm.cshtml" />
  4333. <Content Include="Areas\LR_WorkFlowModule\Views\WfScheme\ConditionFieldForm.cshtml" />
  4334. <Content Include="Areas\LR_WorkFlowModule\Views\WfScheme\FieldSelectForm.cshtml" />
  4335. <Content Include="Areas\LR_WorkFlowModule\Views\WfScheme\LineForm.cshtml" />
  4336. <Content Include="Areas\LR_WorkFlowModule\Views\WfScheme\PreviewForm.cshtml" />
  4337. <Content Include="Areas\LR_FormModule\Views\Custmerform\LayerInstanceForm.cshtml" />
  4338. <Content Include="Areas\LR_WorkFlowModule\Views\WfScheme\WorkformForm.cshtml" />
  4339. <Content Include="Areas\LR_FormModule\Views\Custmerform\WorkflowInstanceForm.cshtml" />
  4340. <Content Include="Areas\LR_FormModule\Views\Custmerform\TabInstanceForm.cshtml" />
  4341. <Content Include="Areas\LR_WorkFlowModule\Views\WfMyTask\Index.cshtml" />
  4342. <Content Include="Areas\LR_WorkFlowModule\Views\WfMyTask\ReleaseForm.cshtml" />
  4343. <Content Include="Areas\LR_WorkFlowModule\Views\WfMyTask\CustmerWorkFlowForm.cshtml" />
  4344. <Content Include="Areas\LR_WorkFlowModule\Views\WfMyTask\WfNodeForm.cshtml" />
  4345. <Content Include="Areas\LR_WorkFlowModule\Views\WfMyTask\ReleaseFlowForm.cshtml" />
  4346. <Content Include="Areas\LR_WorkFlowModule\Views\WfMyTask\AuditFlowForm.cshtml" />
  4347. <Content Include="Areas\LR_WorkFlowModule\Views\WfDelegateRule\Index.cshtml" />
  4348. <Content Include="Areas\LR_WorkFlowModule\Views\WfDelegateRule\Form.cshtml" />
  4349. <Content Include="Areas\LR_OrganizationModule\Views\User\SelectOnlyForm.cshtml" />
  4350. <Content Include="Areas\LR_WorkFlowModule\Views\WfMyTask\SignFlowForm.cshtml" />
  4351. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplatePC\CustmerCodeIndex.cshtml" />
  4352. <Content Include="Areas\LR_CodeDemo\Views\web.config" />
  4353. <Content Include="Areas\LR_WorkFlowModule\Views\WfMonitor\Index.cshtml" />
  4354. <Content Include="Areas\LR_WorkFlowModule\Views\WfSystemDemo\DemoLeaveForm.cshtml" />
  4355. <Content Include="Areas\LR_SystemModule\Views\Log\DetailForm.cshtml" />
  4356. <Content Include="Areas\LR_SystemModule\Views\ExcelExport\Index.cshtml" />
  4357. <Content Include="Areas\LR_SystemModule\Views\ExcelExport\Form.cshtml" />
  4358. <Content Include="Areas\LR_SystemModule\Views\ExcelImport\SetFieldForm.cshtml" />
  4359. <Content Include="Areas\LR_SystemModule\Views\ExcelImport\ImportForm.cshtml" />
  4360. <Content Include="Areas\LR_WorkFlowModule\Views\WfSystemDemo\DemoLeaveIndex.cshtml" />
  4361. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplatePC\WorkflowCodeIndex.cshtml" />
  4362. <Content Include="Areas\AppManager\Views\web.config" />
  4363. <Content Include="Areas\AppManager\Views\FunctionManager\Index.cshtml" />
  4364. <Content Include="Areas\AppManager\Views\FunctionManager\Form.cshtml" />
  4365. <Content Include="Content\fontApp\iconfont.eot" />
  4366. <Content Include="Content\fontApp\iconfont.ttf" />
  4367. <Content Include="Content\fontApp\iconfont.woff" />
  4368. <Content Include="Areas\LR_CodeGeneratorModule\Views\Icon\AppIndex.cshtml" />
  4369. <Content Include="Areas\LR_SystemModule\Views\DbField\Index.cshtml" />
  4370. <Content Include="Areas\LR_SystemModule\Views\DbField\Form.cshtml" />
  4371. <Content Include="Areas\LR_SystemModule\Views\DatabaseTable\EditTableForm.cshtml" />
  4372. <Content Include="Areas\LR_SystemModule\Views\DatabaseTable\CopyTableForm.cshtml" />
  4373. <Content Include="Areas\LR_SystemModule\Views\DbField\SelectForm.cshtml" />
  4374. <Content Include="Areas\LR_SystemModule\Views\DatabaseTable\DraftForm.cshtml" />
  4375. <Content Include="Areas\LR_CodeDemo\Views\GridDemo\CommonIndex.cshtml" />
  4376. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplatePC\AddBtnForm.cshtml" />
  4377. <Content Include="Areas\LR_CodeDemo\Views\GridDemo\EditIndex.cshtml" />
  4378. <Content Include="Areas\LR_CodeDemo\Views\GridDemo\ReportIndex.cshtml" />
  4379. <Content Include="Areas\LR_IM\Views\web.config" />
  4380. <Content Include="Areas\LR_IM\Views\SysUser\Index.cshtml" />
  4381. <Content Include="Areas\LR_IM\Views\SysUser\Form.cshtml" />
  4382. <Content Include="Areas\LR_IM\Views\IMMsg\Index.cshtml" />
  4383. <Content Include="Areas\LR_AuthorizeModule\Views\Authorize\AppForm.cshtml" />
  4384. <Content Include="Areas\LR_WebChatModule\Views\Organize\Index.cshtml" />
  4385. <Content Include="Areas\LR_WebChatModule\Views\Organize\MemberForm.cshtml" />
  4386. <Content Include="Areas\LR_OAModule\Views\Email\ConfigForm.cshtml" />
  4387. <Content Include="Areas\LR_OAModule\Views\Email\DetailForm.cshtml" />
  4388. <Content Include="Areas\LR_OAModule\Views\Email\Form.cshtml" />
  4389. <Content Include="Areas\LR_OAModule\Views\Email\Index.cshtml" />
  4390. <Content Include="Areas\LR_OAModule\Views\ResourceFile\FileForm.cshtml" />
  4391. <Content Include="Areas\LR_OAModule\Views\ResourceFile\FolderForm.cshtml" />
  4392. <Content Include="Areas\LR_OAModule\Views\ResourceFile\Index.cshtml" />
  4393. <Content Include="Areas\LR_OAModule\Views\ResourceFile\MoveForm.cshtml" />
  4394. <Content Include="Areas\LR_OAModule\Views\ResourceFile\UploadifyForm.cshtml" />
  4395. <Content Include="Content\jquerygantt\res\icons.eot" />
  4396. <Content Include="Content\jquerygantt\res\icons.ttf" />
  4397. <Content Include="Content\jquerygantt\res\icons.woff" />
  4398. <Content Include="Areas\LR_OAModule\Views\ProjectGantt\Form.cshtml" />
  4399. <Content Include="Areas\LR_OAModule\Views\ProjectGantt\Index.cshtml" />
  4400. <Content Include="Areas\LR_OAModule\Views\ModuleExport\Index.cshtml" />
  4401. <Content Include="Areas\AppManager\Views\DTImg\Index.cshtml" />
  4402. <Content Include="Areas\AppManager\Views\DTImg\Form.cshtml" />
  4403. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplatePC\AppCustmerCodeIndex.cshtml" />
  4404. <Content Include="Areas\LR_SystemModule\Views\LogoImg\AppIndex.cshtml" />
  4405. <Content Include="Areas\LR_Desktop\Views\web.config" />
  4406. <Content Include="Areas\LR_Desktop\Views\DTSetting\PcIndex.cshtml" />
  4407. <Content Include="Areas\LR_Desktop\Views\DTSetting\AppIndex.cshtml" />
  4408. <Content Include="Areas\LR_LGManager\Views\web.config" />
  4409. <Content Include="Areas\LR_LGManager\Views\LGMap\DataItemLG.cshtml" />
  4410. <Content Include="Areas\LR_SystemModule\Views\LogoImg\PCIndex.cshtml" />
  4411. <Content Include="Areas\LR_LGManager\Views\LGMap\AddForm.cshtml" />
  4412. <Content Include="Areas\LR_LGManager\Views\LGMap\SystemModuleLG.cshtml" />
  4413. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplatePC\GridEditCodeIndex.cshtml" />
  4414. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplatePC\ReportCodeIndex.cshtml" />
  4415. <Content Include="Areas\LR_ReportTest\Views\web.config" />
  4416. <Content Include="Areas\LR_ReportTestModule\Views\web.config" />
  4417. <Content Include="Areas\LR_ReportTestModule\Views\LR_ReportTest\Index.cshtml" />
  4418. <Content Include="Content\json\map_json\china.json" />
  4419. <Content Include="Content\json\map_json\上海\上海.json" />
  4420. <Content Include="Content\json\map_json\云南\临沧市.json" />
  4421. <Content Include="Content\json\map_json\云南\丽江市.json" />
  4422. <Content Include="Content\json\map_json\云南\云南.json" />
  4423. <Content Include="Content\json\map_json\云南\保山市.json" />
  4424. <Content Include="Content\json\map_json\云南\大理白族自治州.json" />
  4425. <Content Include="Content\json\map_json\云南\德宏傣族景颇族自治州.json" />
  4426. <Content Include="Content\json\map_json\云南\怒江傈僳族自治州.json" />
  4427. <Content Include="Content\json\map_json\云南\文山壮族苗族自治州.json" />
  4428. <Content Include="Content\json\map_json\云南\昆明市.json" />
  4429. <Content Include="Content\json\map_json\云南\昭通市.json" />
  4430. <Content Include="Content\json\map_json\云南\普洱市.json" />
  4431. <Content Include="Content\json\map_json\云南\曲靖市.json" />
  4432. <Content Include="Content\json\map_json\云南\楚雄彝族自治州.json" />
  4433. <Content Include="Content\json\map_json\云南\玉溪市.json" />
  4434. <Content Include="Content\json\map_json\云南\红河哈尼族彝族自治州.json" />
  4435. <Content Include="Content\json\map_json\云南\西双版纳傣族自治州.json" />
  4436. <Content Include="Content\json\map_json\云南\迪庆藏族自治州.json" />
  4437. <Content Include="Content\json\map_json\内蒙古\乌兰察布市.json" />
  4438. <Content Include="Content\json\map_json\内蒙古\乌海市.json" />
  4439. <Content Include="Content\json\map_json\内蒙古\兴安盟.json" />
  4440. <Content Include="Content\json\map_json\内蒙古\内蒙古.json" />
  4441. <Content Include="Content\json\map_json\内蒙古\包头市.json" />
  4442. <Content Include="Content\json\map_json\内蒙古\呼伦贝尔市.json" />
  4443. <Content Include="Content\json\map_json\内蒙古\呼和浩特市.json" />
  4444. <Content Include="Content\json\map_json\内蒙古\巴彦淖尔市.json" />
  4445. <Content Include="Content\json\map_json\内蒙古\赤峰市.json" />
  4446. <Content Include="Content\json\map_json\内蒙古\通辽市.json" />
  4447. <Content Include="Content\json\map_json\内蒙古\鄂尔多斯市.json" />
  4448. <Content Include="Content\json\map_json\内蒙古\锡林郭勒盟.json" />
  4449. <Content Include="Content\json\map_json\内蒙古\阿拉善盟.json" />
  4450. <Content Include="Content\json\map_json\北京\北京.json" />
  4451. <Content Include="Content\json\map_json\台湾\台湾.json" />
  4452. <Content Include="Content\json\map_json\吉林\吉林.json" />
  4453. <Content Include="Content\json\map_json\吉林\吉林市.json" />
  4454. <Content Include="Content\json\map_json\吉林\四平市.json" />
  4455. <Content Include="Content\json\map_json\吉林\延边朝鲜族自治州.json" />
  4456. <Content Include="Content\json\map_json\吉林\松原市.json" />
  4457. <Content Include="Content\json\map_json\吉林\白城市.json" />
  4458. <Content Include="Content\json\map_json\吉林\白山市.json" />
  4459. <Content Include="Content\json\map_json\吉林\辽源市.json" />
  4460. <Content Include="Content\json\map_json\吉林\通化市.json" />
  4461. <Content Include="Content\json\map_json\吉林\长春市.json" />
  4462. <Content Include="Content\json\map_json\四川\乐山市.json" />
  4463. <Content Include="Content\json\map_json\四川\内江市.json" />
  4464. <Content Include="Content\json\map_json\四川\凉山彝族自治州.json" />
  4465. <Content Include="Content\json\map_json\四川\南充市.json" />
  4466. <Content Include="Content\json\map_json\四川\四川.json" />
  4467. <Content Include="Content\json\map_json\四川\宜宾市.json" />
  4468. <Content Include="Content\json\map_json\四川\巴中市.json" />
  4469. <Content Include="Content\json\map_json\四川\广元市.json" />
  4470. <Content Include="Content\json\map_json\四川\广安市.json" />
  4471. <Content Include="Content\json\map_json\四川\德阳市.json" />
  4472. <Content Include="Content\json\map_json\四川\成都市.json" />
  4473. <Content Include="Content\json\map_json\四川\攀枝花市.json" />
  4474. <Content Include="Content\json\map_json\四川\泸州市.json" />
  4475. <Content Include="Content\json\map_json\四川\甘孜藏族自治州.json" />
  4476. <Content Include="Content\json\map_json\四川\眉山市.json" />
  4477. <Content Include="Content\json\map_json\四川\绵阳市.json" />
  4478. <Content Include="Content\json\map_json\四川\自贡市.json" />
  4479. <Content Include="Content\json\map_json\四川\资阳市.json" />
  4480. <Content Include="Content\json\map_json\四川\达州市.json" />
  4481. <Content Include="Content\json\map_json\四川\遂宁市.json" />
  4482. <Content Include="Content\json\map_json\四川\阿坝藏族羌族自治州.json" />
  4483. <Content Include="Content\json\map_json\四川\雅安市.json" />
  4484. <Content Include="Content\json\map_json\天津\天津.json" />
  4485. <Content Include="Content\json\map_json\宁夏\中卫市.json" />
  4486. <Content Include="Content\json\map_json\宁夏\吴忠市.json" />
  4487. <Content Include="Content\json\map_json\宁夏\固原市.json" />
  4488. <Content Include="Content\json\map_json\宁夏\宁夏.json" />
  4489. <Content Include="Content\json\map_json\宁夏\石嘴山市.json" />
  4490. <Content Include="Content\json\map_json\宁夏\银川市.json" />
  4491. <Content Include="Content\json\map_json\安徽\亳州市.json" />
  4492. <Content Include="Content\json\map_json\安徽\六安市.json" />
  4493. <Content Include="Content\json\map_json\安徽\合肥市.json" />
  4494. <Content Include="Content\json\map_json\安徽\安庆市.json" />
  4495. <Content Include="Content\json\map_json\安徽\安徽.json" />
  4496. <Content Include="Content\json\map_json\安徽\宣城市.json" />
  4497. <Content Include="Content\json\map_json\安徽\宿州市.json" />
  4498. <Content Include="Content\json\map_json\安徽\池州市.json" />
  4499. <Content Include="Content\json\map_json\安徽\淮北市.json" />
  4500. <Content Include="Content\json\map_json\安徽\淮南市.json" />
  4501. <Content Include="Content\json\map_json\安徽\滁州市.json" />
  4502. <Content Include="Content\json\map_json\安徽\芜湖市.json" />
  4503. <Content Include="Content\json\map_json\安徽\蚌埠市.json" />
  4504. <Content Include="Content\json\map_json\安徽\铜陵市.json" />
  4505. <Content Include="Content\json\map_json\安徽\阜阳市.json" />
  4506. <Content Include="Content\json\map_json\安徽\马鞍山市.json" />
  4507. <Content Include="Content\json\map_json\安徽\黄山市.json" />
  4508. <Content Include="Content\json\map_json\山东\东营市.json" />
  4509. <Content Include="Content\json\map_json\山东\临沂市.json" />
  4510. <Content Include="Content\json\map_json\山东\威海市.json" />
  4511. <Content Include="Content\json\map_json\山东\山东.json" />
  4512. <Content Include="Content\json\map_json\山东\德州市.json" />
  4513. <Content Include="Content\json\map_json\山东\日照市.json" />
  4514. <Content Include="Content\json\map_json\山东\枣庄市.json" />
  4515. <Content Include="Content\json\map_json\山东\泰安市.json" />
  4516. <Content Include="Content\json\map_json\山东\济南市.json" />
  4517. <Content Include="Content\json\map_json\山东\济宁市.json" />
  4518. <Content Include="Content\json\map_json\山东\淄博市.json" />
  4519. <Content Include="Content\json\map_json\山东\滨州市.json" />
  4520. <Content Include="Content\json\map_json\山东\潍坊市.json" />
  4521. <Content Include="Content\json\map_json\山东\烟台市.json" />
  4522. <Content Include="Content\json\map_json\山东\聊城市.json" />
  4523. <Content Include="Content\json\map_json\山东\莱芜市.json" />
  4524. <Content Include="Content\json\map_json\山东\菏泽市.json" />
  4525. <Content Include="Content\json\map_json\山东\青岛市.json" />
  4526. <Content Include="Content\json\map_json\山西\临汾市.json" />
  4527. <Content Include="Content\json\map_json\山西\吕梁市.json" />
  4528. <Content Include="Content\json\map_json\山西\大同市.json" />
  4529. <Content Include="Content\json\map_json\山西\太原市.json" />
  4530. <Content Include="Content\json\map_json\山西\山西.json" />
  4531. <Content Include="Content\json\map_json\山西\忻州市.json" />
  4532. <Content Include="Content\json\map_json\山西\晋中市.json" />
  4533. <Content Include="Content\json\map_json\山西\晋城市.json" />
  4534. <Content Include="Content\json\map_json\山西\朔州市.json" />
  4535. <Content Include="Content\json\map_json\山西\运城市.json" />
  4536. <Content Include="Content\json\map_json\山西\长治市.json" />
  4537. <Content Include="Content\json\map_json\山西\阳泉市.json" />
  4538. <Content Include="Content\json\map_json\广东\东莞市.json" />
  4539. <Content Include="Content\json\map_json\广东\中山市.json" />
  4540. <Content Include="Content\json\map_json\广东\云浮市.json" />
  4541. <Content Include="Content\json\map_json\广东\佛山市.json" />
  4542. <Content Include="Content\json\map_json\广东\广东.json" />
  4543. <Content Include="Content\json\map_json\广东\广州市.json" />
  4544. <Content Include="Content\json\map_json\广东\惠州市.json" />
  4545. <Content Include="Content\json\map_json\广东\揭阳市.json" />
  4546. <Content Include="Content\json\map_json\广东\梅州市.json" />
  4547. <Content Include="Content\json\map_json\广东\汕头市.json" />
  4548. <Content Include="Content\json\map_json\广东\汕尾市.json" />
  4549. <Content Include="Content\json\map_json\广东\江门市.json" />
  4550. <Content Include="Content\json\map_json\广东\河源市.json" />
  4551. <Content Include="Content\json\map_json\广东\深圳市.json" />
  4552. <Content Include="Content\json\map_json\广东\清远市.json" />
  4553. <Content Include="Content\json\map_json\广东\湛江市.json" />
  4554. <Content Include="Content\json\map_json\广东\潮州市.json" />
  4555. <Content Include="Content\json\map_json\广东\珠海市.json" />
  4556. <Content Include="Content\json\map_json\广东\肇庆市.json" />
  4557. <Content Include="Content\json\map_json\广东\茂名市.json" />
  4558. <Content Include="Content\json\map_json\广东\阳江市.json" />
  4559. <Content Include="Content\json\map_json\广东\韶关市.json" />
  4560. <Content Include="Content\json\map_json\广西\北海市.json" />
  4561. <Content Include="Content\json\map_json\广西\南宁市.json" />
  4562. <Content Include="Content\json\map_json\广西\崇左市.json" />
  4563. <Content Include="Content\json\map_json\广西\广西.json" />
  4564. <Content Include="Content\json\map_json\广西\来宾市.json" />
  4565. <Content Include="Content\json\map_json\广西\柳州市.json" />
  4566. <Content Include="Content\json\map_json\广西\桂林市.json" />
  4567. <Content Include="Content\json\map_json\广西\梧州市.json" />
  4568. <Content Include="Content\json\map_json\广西\河池市.json" />
  4569. <Content Include="Content\json\map_json\广西\玉林市.json" />
  4570. <Content Include="Content\json\map_json\广西\百色市.json" />
  4571. <Content Include="Content\json\map_json\广西\贵港市.json" />
  4572. <Content Include="Content\json\map_json\广西\贺州市.json" />
  4573. <Content Include="Content\json\map_json\广西\钦州市.json" />
  4574. <Content Include="Content\json\map_json\广西\防城港市.json" />
  4575. <Content Include="Content\json\map_json\新疆\乌鲁木齐市.json" />
  4576. <Content Include="Content\json\map_json\新疆\五家渠市.json" />
  4577. <Content Include="Content\json\map_json\新疆\伊犁哈萨克自治州.json" />
  4578. <Content Include="Content\json\map_json\新疆\克孜勒苏柯尔克孜自治州.json" />
  4579. <Content Include="Content\json\map_json\新疆\克拉玛依市.json" />
  4580. <Content Include="Content\json\map_json\新疆\北屯市.json" />
  4581. <Content Include="Content\json\map_json\新疆\博尔塔拉蒙古自治州.json" />
  4582. <Content Include="Content\json\map_json\新疆\双河市.json" />
  4583. <Content Include="Content\json\map_json\新疆\可克达拉市.json" />
  4584. <Content Include="Content\json\map_json\新疆\吐鲁番市.json" />
  4585. <Content Include="Content\json\map_json\新疆\和田地区.json" />
  4586. <Content Include="Content\json\map_json\新疆\哈密地区.json" />
  4587. <Content Include="Content\json\map_json\新疆\喀什地区.json" />
  4588. <Content Include="Content\json\map_json\新疆\图木舒克市.json" />
  4589. <Content Include="Content\json\map_json\新疆\塔城地区.json" />
  4590. <Content Include="Content\json\map_json\新疆\巴音郭楞蒙古自治州.json" />
  4591. <Content Include="Content\json\map_json\新疆\新疆.json" />
  4592. <Content Include="Content\json\map_json\新疆\昆玉市.json" />
  4593. <Content Include="Content\json\map_json\新疆\昌吉回族自治州.json" />
  4594. <Content Include="Content\json\map_json\新疆\石河子市.json" />
  4595. <Content Include="Content\json\map_json\新疆\铁门关市.json" />
  4596. <Content Include="Content\json\map_json\新疆\阿克苏地区.json" />
  4597. <Content Include="Content\json\map_json\新疆\阿勒泰地区.json" />
  4598. <Content Include="Content\json\map_json\新疆\阿拉尔市.json" />
  4599. <Content Include="Content\json\map_json\江苏\南京市.json" />
  4600. <Content Include="Content\json\map_json\江苏\南通市.json" />
  4601. <Content Include="Content\json\map_json\江苏\宿迁市.json" />
  4602. <Content Include="Content\json\map_json\江苏\常州市.json" />
  4603. <Content Include="Content\json\map_json\江苏\徐州市.json" />
  4604. <Content Include="Content\json\map_json\江苏\扬州市.json" />
  4605. <Content Include="Content\json\map_json\江苏\无锡市.json" />
  4606. <Content Include="Content\json\map_json\江苏\江苏.json" />
  4607. <Content Include="Content\json\map_json\江苏\泰州市.json" />
  4608. <Content Include="Content\json\map_json\江苏\淮安市.json" />
  4609. <Content Include="Content\json\map_json\江苏\盐城市.json" />
  4610. <Content Include="Content\json\map_json\江苏\苏州市.json" />
  4611. <Content Include="Content\json\map_json\江苏\连云港市.json" />
  4612. <Content Include="Content\json\map_json\江苏\镇江市.json" />
  4613. <Content Include="Content\json\map_json\江西\上饶市.json" />
  4614. <Content Include="Content\json\map_json\江西\九江市.json" />
  4615. <Content Include="Content\json\map_json\江西\南昌市.json" />
  4616. <Content Include="Content\json\map_json\江西\吉安市.json" />
  4617. <Content Include="Content\json\map_json\江西\宜春市.json" />
  4618. <Content Include="Content\json\map_json\江西\抚州市.json" />
  4619. <Content Include="Content\json\map_json\江西\新余市.json" />
  4620. <Content Include="Content\json\map_json\江西\景德镇市.json" />
  4621. <Content Include="Content\json\map_json\江西\江西.json" />
  4622. <Content Include="Content\json\map_json\江西\萍乡市.json" />
  4623. <Content Include="Content\json\map_json\江西\赣州市.json" />
  4624. <Content Include="Content\json\map_json\江西\鹰潭市.json" />
  4625. <Content Include="Content\json\map_json\河北\保定市.json" />
  4626. <Content Include="Content\json\map_json\河北\唐山市.json" />
  4627. <Content Include="Content\json\map_json\河北\廊坊市.json" />
  4628. <Content Include="Content\json\map_json\河北\张家口市.json" />
  4629. <Content Include="Content\json\map_json\河北\承德市.json" />
  4630. <Content Include="Content\json\map_json\河北\沧州市.json" />
  4631. <Content Include="Content\json\map_json\河北\河北.json" />
  4632. <Content Include="Content\json\map_json\河北\石家庄市.json" />
  4633. <Content Include="Content\json\map_json\河北\秦皇岛市.json" />
  4634. <Content Include="Content\json\map_json\河北\衡水市.json" />
  4635. <Content Include="Content\json\map_json\河北\邢台市.json" />
  4636. <Content Include="Content\json\map_json\河北\邯郸市.json" />
  4637. <Content Include="Content\json\map_json\河南\三门峡市.json" />
  4638. <Content Include="Content\json\map_json\河南\信阳市.json" />
  4639. <Content Include="Content\json\map_json\河南\南阳市.json" />
  4640. <Content Include="Content\json\map_json\河南\周口市.json" />
  4641. <Content Include="Content\json\map_json\河南\商丘市.json" />
  4642. <Content Include="Content\json\map_json\河南\安阳市.json" />
  4643. <Content Include="Content\json\map_json\河南\平顶山市.json" />
  4644. <Content Include="Content\json\map_json\河南\开封市.json" />
  4645. <Content Include="Content\json\map_json\河南\新乡市.json" />
  4646. <Content Include="Content\json\map_json\河南\河南.json" />
  4647. <Content Include="Content\json\map_json\河南\洛阳市.json" />
  4648. <Content Include="Content\json\map_json\河南\济源市.json" />
  4649. <Content Include="Content\json\map_json\河南\漯河市.json" />
  4650. <Content Include="Content\json\map_json\河南\濮阳市.json" />
  4651. <Content Include="Content\json\map_json\河南\焦作市.json" />
  4652. <Content Include="Content\json\map_json\河南\许昌市.json" />
  4653. <Content Include="Content\json\map_json\河南\郑州市.json" />
  4654. <Content Include="Content\json\map_json\河南\驻马店市.json" />
  4655. <Content Include="Content\json\map_json\河南\鹤壁市.json" />
  4656. <Content Include="Content\json\map_json\浙江\丽水市.json" />
  4657. <Content Include="Content\json\map_json\浙江\台州市.json" />
  4658. <Content Include="Content\json\map_json\浙江\嘉兴市.json" />
  4659. <Content Include="Content\json\map_json\浙江\宁波市.json" />
  4660. <Content Include="Content\json\map_json\浙江\杭州市.json" />
  4661. <Content Include="Content\json\map_json\浙江\浙江.json" />
  4662. <Content Include="Content\json\map_json\浙江\温州市.json" />
  4663. <Content Include="Content\json\map_json\浙江\湖州市.json" />
  4664. <Content Include="Content\json\map_json\浙江\绍兴市.json" />
  4665. <Content Include="Content\json\map_json\浙江\舟山市.json" />
  4666. <Content Include="Content\json\map_json\浙江\衢州市.json" />
  4667. <Content Include="Content\json\map_json\浙江\金华市.json" />
  4668. <Content Include="Content\json\map_json\海南\万宁市.json" />
  4669. <Content Include="Content\json\map_json\海南\三亚市.json" />
  4670. <Content Include="Content\json\map_json\海南\三沙市.json" />
  4671. <Content Include="Content\json\map_json\海南\东方市.json" />
  4672. <Content Include="Content\json\map_json\海南\临高县.json" />
  4673. <Content Include="Content\json\map_json\海南\乐东黎族自治县.json" />
  4674. <Content Include="Content\json\map_json\海南\五指山市.json" />
  4675. <Content Include="Content\json\map_json\海南\保亭黎族苗族自治县.json" />
  4676. <Content Include="Content\json\map_json\海南\儋州市.json" />
  4677. <Content Include="Content\json\map_json\海南\定安县.json" />
  4678. <Content Include="Content\json\map_json\海南\屯昌县.json" />
  4679. <Content Include="Content\json\map_json\海南\文昌市.json" />
  4680. <Content Include="Content\json\map_json\海南\昌江黎族自治县.json" />
  4681. <Content Include="Content\json\map_json\海南\海南.json" />
  4682. <Content Include="Content\json\map_json\海南\海口市.json" />
  4683. <Content Include="Content\json\map_json\海南\澄迈县.json" />
  4684. <Content Include="Content\json\map_json\海南\琼中黎族苗族自治县.json" />
  4685. <Content Include="Content\json\map_json\海南\琼海市.json" />
  4686. <Content Include="Content\json\map_json\海南\白沙黎族自治县.json" />
  4687. <Content Include="Content\json\map_json\海南\陵水黎族自治县.json" />
  4688. <Content Include="Content\json\map_json\湖北\仙桃市.json" />
  4689. <Content Include="Content\json\map_json\湖北\十堰市.json" />
  4690. <Content Include="Content\json\map_json\湖北\咸宁市.json" />
  4691. <Content Include="Content\json\map_json\湖北\天门市.json" />
  4692. <Content Include="Content\json\map_json\湖北\孝感市.json" />
  4693. <Content Include="Content\json\map_json\湖北\宜昌市.json" />
  4694. <Content Include="Content\json\map_json\湖北\恩施土家族苗族自治州.json" />
  4695. <Content Include="Content\json\map_json\湖北\武汉市.json" />
  4696. <Content Include="Content\json\map_json\湖北\湖北.json" />
  4697. <Content Include="Content\json\map_json\湖北\潜江市.json" />
  4698. <Content Include="Content\json\map_json\湖北\神农架林区.json" />
  4699. <Content Include="Content\json\map_json\湖北\荆州市.json" />
  4700. <Content Include="Content\json\map_json\湖北\荆门市.json" />
  4701. <Content Include="Content\json\map_json\湖北\襄阳市.json" />
  4702. <Content Include="Content\json\map_json\湖北\鄂州市.json" />
  4703. <Content Include="Content\json\map_json\湖北\随州市.json" />
  4704. <Content Include="Content\json\map_json\湖北\黄冈市.json" />
  4705. <Content Include="Content\json\map_json\湖北\黄石市.json" />
  4706. <Content Include="Content\json\map_json\湖南\娄底市.json" />
  4707. <Content Include="Content\json\map_json\湖南\岳阳市.json" />
  4708. <Content Include="Content\json\map_json\湖南\常德市.json" />
  4709. <Content Include="Content\json\map_json\湖南\张家界市.json" />
  4710. <Content Include="Content\json\map_json\湖南\怀化市.json" />
  4711. <Content Include="Content\json\map_json\湖南\株洲市.json" />
  4712. <Content Include="Content\json\map_json\湖南\永州市.json" />
  4713. <Content Include="Content\json\map_json\湖南\湖南.json" />
  4714. <Content Include="Content\json\map_json\湖南\湘潭市.json" />
  4715. <Content Include="Content\json\map_json\湖南\湘西土家族苗族自治州.json" />
  4716. <Content Include="Content\json\map_json\湖南\益阳市.json" />
  4717. <Content Include="Content\json\map_json\湖南\衡阳市.json" />
  4718. <Content Include="Content\json\map_json\湖南\邵阳市.json" />
  4719. <Content Include="Content\json\map_json\湖南\郴州市.json" />
  4720. <Content Include="Content\json\map_json\湖南\长沙市.json" />
  4721. <Content Include="Content\json\map_json\澳门\澳门.json" />
  4722. <Content Include="Content\json\map_json\甘肃\临夏回族自治州.json" />
  4723. <Content Include="Content\json\map_json\甘肃\兰州市.json" />
  4724. <Content Include="Content\json\map_json\甘肃\嘉峪关市.json" />
  4725. <Content Include="Content\json\map_json\甘肃\天水市.json" />
  4726. <Content Include="Content\json\map_json\甘肃\定西市.json" />
  4727. <Content Include="Content\json\map_json\甘肃\平凉市.json" />
  4728. <Content Include="Content\json\map_json\甘肃\庆阳市.json" />
  4729. <Content Include="Content\json\map_json\甘肃\张掖市.json" />
  4730. <Content Include="Content\json\map_json\甘肃\武威市.json" />
  4731. <Content Include="Content\json\map_json\甘肃\甘南藏族自治州.json" />
  4732. <Content Include="Content\json\map_json\甘肃\甘肃.json" />
  4733. <Content Include="Content\json\map_json\甘肃\白银市.json" />
  4734. <Content Include="Content\json\map_json\甘肃\酒泉市.json" />
  4735. <Content Include="Content\json\map_json\甘肃\金昌市.json" />
  4736. <Content Include="Content\json\map_json\甘肃\陇南市.json" />
  4737. <Content Include="Content\json\map_json\福建\三明市.json" />
  4738. <Content Include="Content\json\map_json\福建\南平市.json" />
  4739. <Content Include="Content\json\map_json\福建\厦门市.json" />
  4740. <Content Include="Content\json\map_json\福建\宁德市.json" />
  4741. <Content Include="Content\json\map_json\福建\泉州市.json" />
  4742. <Content Include="Content\json\map_json\福建\漳州市.json" />
  4743. <Content Include="Content\json\map_json\福建\福州市.json" />
  4744. <Content Include="Content\json\map_json\福建\福建.json" />
  4745. <Content Include="Content\json\map_json\福建\莆田市.json" />
  4746. <Content Include="Content\json\map_json\福建\龙岩市.json" />
  4747. <Content Include="Content\json\map_json\西藏\山南市.json" />
  4748. <Content Include="Content\json\map_json\西藏\拉萨市.json" />
  4749. <Content Include="Content\json\map_json\西藏\日喀则市.json" />
  4750. <Content Include="Content\json\map_json\西藏\昌都市.json" />
  4751. <Content Include="Content\json\map_json\西藏\林芝市.json" />
  4752. <Content Include="Content\json\map_json\西藏\西藏.json" />
  4753. <Content Include="Content\json\map_json\西藏\那曲地区.json" />
  4754. <Content Include="Content\json\map_json\西藏\阿里地区.json" />
  4755. <Content Include="Content\json\map_json\贵州\六盘水市.json" />
  4756. <Content Include="Content\json\map_json\贵州\安顺市.json" />
  4757. <Content Include="Content\json\map_json\贵州\毕节市.json" />
  4758. <Content Include="Content\json\map_json\贵州\贵州.json" />
  4759. <Content Include="Content\json\map_json\贵州\贵阳市.json" />
  4760. <Content Include="Content\json\map_json\贵州\遵义市.json" />
  4761. <Content Include="Content\json\map_json\贵州\铜仁市.json" />
  4762. <Content Include="Content\json\map_json\贵州\黔东南苗族侗族自治州.json" />
  4763. <Content Include="Content\json\map_json\贵州\黔南布依族苗族自治州.json" />
  4764. <Content Include="Content\json\map_json\贵州\黔西南布依族苗族自治州.json" />
  4765. <Content Include="Content\json\map_json\辽宁\丹东市.json" />
  4766. <Content Include="Content\json\map_json\辽宁\大连市.json" />
  4767. <Content Include="Content\json\map_json\辽宁\抚顺市.json" />
  4768. <Content Include="Content\json\map_json\辽宁\朝阳市.json" />
  4769. <Content Include="Content\json\map_json\辽宁\本溪市.json" />
  4770. <Content Include="Content\json\map_json\辽宁\沈阳市.json" />
  4771. <Content Include="Content\json\map_json\辽宁\盘锦市.json" />
  4772. <Content Include="Content\json\map_json\辽宁\营口市.json" />
  4773. <Content Include="Content\json\map_json\辽宁\葫芦岛市.json" />
  4774. <Content Include="Content\json\map_json\辽宁\辽宁.json" />
  4775. <Content Include="Content\json\map_json\辽宁\辽阳市.json" />
  4776. <Content Include="Content\json\map_json\辽宁\铁岭市.json" />
  4777. <Content Include="Content\json\map_json\辽宁\锦州市.json" />
  4778. <Content Include="Content\json\map_json\辽宁\阜新市.json" />
  4779. <Content Include="Content\json\map_json\辽宁\鞍山市.json" />
  4780. <Content Include="Content\json\map_json\重庆\重庆.json" />
  4781. <Content Include="Content\json\map_json\陕西\咸阳市.json" />
  4782. <Content Include="Content\json\map_json\陕西\商洛市.json" />
  4783. <Content Include="Content\json\map_json\陕西\安康市.json" />
  4784. <Content Include="Content\json\map_json\陕西\宝鸡市.json" />
  4785. <Content Include="Content\json\map_json\陕西\延安市.json" />
  4786. <Content Include="Content\json\map_json\陕西\榆林市.json" />
  4787. <Content Include="Content\json\map_json\陕西\汉中市.json" />
  4788. <Content Include="Content\json\map_json\陕西\渭南市.json" />
  4789. <Content Include="Content\json\map_json\陕西\西安市.json" />
  4790. <Content Include="Content\json\map_json\陕西\铜川市.json" />
  4791. <Content Include="Content\json\map_json\陕西\陕西.json" />
  4792. <Content Include="Content\json\map_json\青海\果洛藏族自治州.json" />
  4793. <Content Include="Content\json\map_json\青海\海东市.json" />
  4794. <Content Include="Content\json\map_json\青海\海北藏族自治州.json" />
  4795. <Content Include="Content\json\map_json\青海\海南藏族自治州.json" />
  4796. <Content Include="Content\json\map_json\青海\海西蒙古族藏族自治州.json" />
  4797. <Content Include="Content\json\map_json\青海\玉树藏族自治州.json" />
  4798. <Content Include="Content\json\map_json\青海\西宁市.json" />
  4799. <Content Include="Content\json\map_json\青海\青海.json" />
  4800. <Content Include="Content\json\map_json\青海\黄南藏族自治州.json" />
  4801. <Content Include="Content\json\map_json\香港\香港.json" />
  4802. <Content Include="Content\json\map_json\黑龙江\七台河市.json" />
  4803. <Content Include="Content\json\map_json\黑龙江\伊春市.json" />
  4804. <Content Include="Content\json\map_json\黑龙江\佳木斯市.json" />
  4805. <Content Include="Content\json\map_json\黑龙江\双鸭山市.json" />
  4806. <Content Include="Content\json\map_json\黑龙江\哈尔滨市.json" />
  4807. <Content Include="Content\json\map_json\黑龙江\大兴安岭地区.json" />
  4808. <Content Include="Content\json\map_json\黑龙江\大庆市.json" />
  4809. <Content Include="Content\json\map_json\黑龙江\牡丹江市.json" />
  4810. <Content Include="Content\json\map_json\黑龙江\绥化市.json" />
  4811. <Content Include="Content\json\map_json\黑龙江\鸡西市.json" />
  4812. <Content Include="Content\json\map_json\黑龙江\鹤岗市.json" />
  4813. <Content Include="Content\json\map_json\黑龙江\黑河市.json" />
  4814. <Content Include="Content\json\map_json\黑龙江\黑龙江.json" />
  4815. <Content Include="Content\json\map_json\黑龙江\齐齐哈尔市.json" />
  4816. <Content Include="Content\js\json.json" />
  4817. <Content Include="Content\static\map\china.json" />
  4818. <Content Include="Content\static\map\city\110100.json" />
  4819. <Content Include="Content\static\map\city\120100.json" />
  4820. <Content Include="Content\static\map\city\130100.json" />
  4821. <Content Include="Content\static\map\city\130200.json" />
  4822. <Content Include="Content\static\map\city\130300.json" />
  4823. <Content Include="Content\static\map\city\130400.json" />
  4824. <Content Include="Content\static\map\city\130500.json" />
  4825. <Content Include="Content\static\map\city\130600.json" />
  4826. <Content Include="Content\static\map\city\130700.json" />
  4827. <Content Include="Content\static\map\city\130800.json" />
  4828. <Content Include="Content\static\map\city\130900.json" />
  4829. <Content Include="Content\static\map\city\131000.json" />
  4830. <Content Include="Content\static\map\city\131100.json" />
  4831. <Content Include="Content\static\map\city\140100.json" />
  4832. <Content Include="Content\static\map\city\140200.json" />
  4833. <Content Include="Content\static\map\city\140300.json" />
  4834. <Content Include="Content\static\map\city\140400.json" />
  4835. <Content Include="Content\static\map\city\140500.json" />
  4836. <Content Include="Content\static\map\city\140600.json" />
  4837. <Content Include="Content\static\map\city\140700.json" />
  4838. <Content Include="Content\static\map\city\140800.json" />
  4839. <Content Include="Content\static\map\city\140900.json" />
  4840. <Content Include="Content\static\map\city\141000.json" />
  4841. <Content Include="Content\static\map\city\141100.json" />
  4842. <Content Include="Content\static\map\city\150100.json" />
  4843. <Content Include="Content\static\map\city\150200.json" />
  4844. <Content Include="Content\static\map\city\150300.json" />
  4845. <Content Include="Content\static\map\city\150400.json" />
  4846. <Content Include="Content\static\map\city\150500.json" />
  4847. <Content Include="Content\static\map\city\150600.json" />
  4848. <Content Include="Content\static\map\city\150700.json" />
  4849. <Content Include="Content\static\map\city\150800.json" />
  4850. <Content Include="Content\static\map\city\150900.json" />
  4851. <Content Include="Content\static\map\city\152200.json" />
  4852. <Content Include="Content\static\map\city\152500.json" />
  4853. <Content Include="Content\static\map\city\152900.json" />
  4854. <Content Include="Content\static\map\city\210100.json" />
  4855. <Content Include="Content\static\map\city\210200.json" />
  4856. <Content Include="Content\static\map\city\210300.json" />
  4857. <Content Include="Content\static\map\city\210400.json" />
  4858. <Content Include="Content\static\map\city\210500.json" />
  4859. <Content Include="Content\static\map\city\210600.json" />
  4860. <Content Include="Content\static\map\city\210700.json" />
  4861. <Content Include="Content\static\map\city\210800.json" />
  4862. <Content Include="Content\static\map\city\210900.json" />
  4863. <Content Include="Content\static\map\city\211000.json" />
  4864. <Content Include="Content\static\map\city\211100.json" />
  4865. <Content Include="Content\static\map\city\211200.json" />
  4866. <Content Include="Content\static\map\city\211300.json" />
  4867. <Content Include="Content\static\map\city\211400.json" />
  4868. <Content Include="Content\static\map\city\220100.json" />
  4869. <Content Include="Content\static\map\city\220200.json" />
  4870. <Content Include="Content\static\map\city\220300.json" />
  4871. <Content Include="Content\static\map\city\220400.json" />
  4872. <Content Include="Content\static\map\city\220500.json" />
  4873. <Content Include="Content\static\map\city\220600.json" />
  4874. <Content Include="Content\static\map\city\220700.json" />
  4875. <Content Include="Content\static\map\city\220800.json" />
  4876. <Content Include="Content\static\map\city\222400.json" />
  4877. <Content Include="Content\static\map\city\230100.json" />
  4878. <Content Include="Content\static\map\city\230200.json" />
  4879. <Content Include="Content\static\map\city\230300.json" />
  4880. <Content Include="Content\static\map\city\230400.json" />
  4881. <Content Include="Content\static\map\city\230500.json" />
  4882. <Content Include="Content\static\map\city\230600.json" />
  4883. <Content Include="Content\static\map\city\230700.json" />
  4884. <Content Include="Content\static\map\city\230800.json" />
  4885. <Content Include="Content\static\map\city\230900.json" />
  4886. <Content Include="Content\static\map\city\231000.json" />
  4887. <Content Include="Content\static\map\city\231100.json" />
  4888. <Content Include="Content\static\map\city\231200.json" />
  4889. <Content Include="Content\static\map\city\232700.json" />
  4890. <Content Include="Content\static\map\city\310100.json" />
  4891. <Content Include="Content\static\map\city\310200.json" />
  4892. <Content Include="Content\static\map\city\320100.json" />
  4893. <Content Include="Content\static\map\city\320200.json" />
  4894. <Content Include="Content\static\map\city\320300.json" />
  4895. <Content Include="Content\static\map\city\320400.json" />
  4896. <Content Include="Content\static\map\city\320500.json" />
  4897. <Content Include="Content\static\map\city\320600.json" />
  4898. <Content Include="Content\static\map\city\320700.json" />
  4899. <Content Include="Content\static\map\city\320800.json" />
  4900. <Content Include="Content\static\map\city\320900.json" />
  4901. <Content Include="Content\static\map\city\321000.json" />
  4902. <Content Include="Content\static\map\city\321100.json" />
  4903. <Content Include="Content\static\map\city\321200.json" />
  4904. <Content Include="Content\static\map\city\321300.json" />
  4905. <Content Include="Content\static\map\city\330100.json" />
  4906. <Content Include="Content\static\map\city\330200.json" />
  4907. <Content Include="Content\static\map\city\330300.json" />
  4908. <Content Include="Content\static\map\city\330400.json" />
  4909. <Content Include="Content\static\map\city\330500.json" />
  4910. <Content Include="Content\static\map\city\330600.json" />
  4911. <Content Include="Content\static\map\city\330700.json" />
  4912. <Content Include="Content\static\map\city\330800.json" />
  4913. <Content Include="Content\static\map\city\330900.json" />
  4914. <Content Include="Content\static\map\city\331000.json" />
  4915. <Content Include="Content\static\map\city\331100.json" />
  4916. <Content Include="Content\static\map\city\340100.json" />
  4917. <Content Include="Content\static\map\city\340200.json" />
  4918. <Content Include="Content\static\map\city\340300.json" />
  4919. <Content Include="Content\static\map\city\340400.json" />
  4920. <Content Include="Content\static\map\city\340500.json" />
  4921. <Content Include="Content\static\map\city\340600.json" />
  4922. <Content Include="Content\static\map\city\340700.json" />
  4923. <Content Include="Content\static\map\city\340800.json" />
  4924. <Content Include="Content\static\map\city\341000.json" />
  4925. <Content Include="Content\static\map\city\341100.json" />
  4926. <Content Include="Content\static\map\city\341200.json" />
  4927. <Content Include="Content\static\map\city\341300.json" />
  4928. <Content Include="Content\static\map\city\341500.json" />
  4929. <Content Include="Content\static\map\city\341600.json" />
  4930. <Content Include="Content\static\map\city\341700.json" />
  4931. <Content Include="Content\static\map\city\341800.json" />
  4932. <Content Include="Content\static\map\city\350100.json" />
  4933. <Content Include="Content\static\map\city\350200.json" />
  4934. <Content Include="Content\static\map\city\350300.json" />
  4935. <Content Include="Content\static\map\city\350400.json" />
  4936. <Content Include="Content\static\map\city\350500.json" />
  4937. <Content Include="Content\static\map\city\350600.json" />
  4938. <Content Include="Content\static\map\city\350700.json" />
  4939. <Content Include="Content\static\map\city\350800.json" />
  4940. <Content Include="Content\static\map\city\350900.json" />
  4941. <Content Include="Content\static\map\city\360100.json" />
  4942. <Content Include="Content\static\map\city\360200.json" />
  4943. <Content Include="Content\static\map\city\360300.json" />
  4944. <Content Include="Content\static\map\city\360400.json" />
  4945. <Content Include="Content\static\map\city\360500.json" />
  4946. <Content Include="Content\static\map\city\360600.json" />
  4947. <Content Include="Content\static\map\city\360700.json" />
  4948. <Content Include="Content\static\map\city\360800.json" />
  4949. <Content Include="Content\static\map\city\360900.json" />
  4950. <Content Include="Content\static\map\city\361000.json" />
  4951. <Content Include="Content\static\map\city\361100.json" />
  4952. <Content Include="Content\static\map\city\370100.json" />
  4953. <Content Include="Content\static\map\city\370200.json" />
  4954. <Content Include="Content\static\map\city\370300.json" />
  4955. <Content Include="Content\static\map\city\370400.json" />
  4956. <Content Include="Content\static\map\city\370500.json" />
  4957. <Content Include="Content\static\map\city\370600.json" />
  4958. <Content Include="Content\static\map\city\370700.json" />
  4959. <Content Include="Content\static\map\city\370800.json" />
  4960. <Content Include="Content\static\map\city\370900.json" />
  4961. <Content Include="Content\static\map\city\371000.json" />
  4962. <Content Include="Content\static\map\city\371100.json" />
  4963. <Content Include="Content\static\map\city\371200.json" />
  4964. <Content Include="Content\static\map\city\371300.json" />
  4965. <Content Include="Content\static\map\city\371400.json" />
  4966. <Content Include="Content\static\map\city\371500.json" />
  4967. <Content Include="Content\static\map\city\371600.json" />
  4968. <Content Include="Content\static\map\city\371700.json" />
  4969. <Content Include="Content\static\map\city\410100.json" />
  4970. <Content Include="Content\static\map\city\410200.json" />
  4971. <Content Include="Content\static\map\city\410300.json" />
  4972. <Content Include="Content\static\map\city\410400.json" />
  4973. <Content Include="Content\static\map\city\410500.json" />
  4974. <Content Include="Content\static\map\city\410600.json" />
  4975. <Content Include="Content\static\map\city\410700.json" />
  4976. <Content Include="Content\static\map\city\410800.json" />
  4977. <Content Include="Content\static\map\city\410900.json" />
  4978. <Content Include="Content\static\map\city\411000.json" />
  4979. <Content Include="Content\static\map\city\411100.json" />
  4980. <Content Include="Content\static\map\city\411200.json" />
  4981. <Content Include="Content\static\map\city\411300.json" />
  4982. <Content Include="Content\static\map\city\411400.json" />
  4983. <Content Include="Content\static\map\city\411500.json" />
  4984. <Content Include="Content\static\map\city\411600.json" />
  4985. <Content Include="Content\static\map\city\411700.json" />
  4986. <Content Include="Content\static\map\city\420100.json" />
  4987. <Content Include="Content\static\map\city\420200.json" />
  4988. <Content Include="Content\static\map\city\420300.json" />
  4989. <Content Include="Content\static\map\city\420500.json" />
  4990. <Content Include="Content\static\map\city\420600.json" />
  4991. <Content Include="Content\static\map\city\420700.json" />
  4992. <Content Include="Content\static\map\city\420800.json" />
  4993. <Content Include="Content\static\map\city\420900.json" />
  4994. <Content Include="Content\static\map\city\421000.json" />
  4995. <Content Include="Content\static\map\city\421100.json" />
  4996. <Content Include="Content\static\map\city\421200.json" />
  4997. <Content Include="Content\static\map\city\421300.json" />
  4998. <Content Include="Content\static\map\city\422800.json" />
  4999. <Content Include="Content\static\map\city\429000.json" />
  5000. <Content Include="Content\static\map\city\430100.json" />
  5001. <Content Include="Content\static\map\city\430200.json" />
  5002. <Content Include="Content\static\map\city\430300.json" />
  5003. <Content Include="Content\static\map\city\430400.json" />
  5004. <Content Include="Content\static\map\city\430500.json" />
  5005. <Content Include="Content\static\map\city\430600.json" />
  5006. <Content Include="Content\static\map\city\430700.json" />
  5007. <Content Include="Content\static\map\city\430800.json" />
  5008. <Content Include="Content\static\map\city\430900.json" />
  5009. <Content Include="Content\static\map\city\431000.json" />
  5010. <Content Include="Content\static\map\city\431100.json" />
  5011. <Content Include="Content\static\map\city\431200.json" />
  5012. <Content Include="Content\static\map\city\431300.json" />
  5013. <Content Include="Content\static\map\city\433100.json" />
  5014. <Content Include="Content\static\map\city\440100.json" />
  5015. <Content Include="Content\static\map\city\440200.json" />
  5016. <Content Include="Content\static\map\city\440300.json" />
  5017. <Content Include="Content\static\map\city\440400.json" />
  5018. <Content Include="Content\static\map\city\440500.json" />
  5019. <Content Include="Content\static\map\city\440600.json" />
  5020. <Content Include="Content\static\map\city\440700.json" />
  5021. <Content Include="Content\static\map\city\440800.json" />
  5022. <Content Include="Content\static\map\city\440900.json" />
  5023. <Content Include="Content\static\map\city\441200.json" />
  5024. <Content Include="Content\static\map\city\441300.json" />
  5025. <Content Include="Content\static\map\city\441400.json" />
  5026. <Content Include="Content\static\map\city\441500.json" />
  5027. <Content Include="Content\static\map\city\441600.json" />
  5028. <Content Include="Content\static\map\city\441700.json" />
  5029. <Content Include="Content\static\map\city\441800.json" />
  5030. <Content Include="Content\static\map\city\441900.json" />
  5031. <Content Include="Content\static\map\city\442000.json" />
  5032. <Content Include="Content\static\map\city\445100.json" />
  5033. <Content Include="Content\static\map\city\445200.json" />
  5034. <Content Include="Content\static\map\city\445300.json" />
  5035. <Content Include="Content\static\map\city\450100.json" />
  5036. <Content Include="Content\static\map\city\450200.json" />
  5037. <Content Include="Content\static\map\city\450300.json" />
  5038. <Content Include="Content\static\map\city\450400.json" />
  5039. <Content Include="Content\static\map\city\450500.json" />
  5040. <Content Include="Content\static\map\city\450600.json" />
  5041. <Content Include="Content\static\map\city\450700.json" />
  5042. <Content Include="Content\static\map\city\450800.json" />
  5043. <Content Include="Content\static\map\city\450900.json" />
  5044. <Content Include="Content\static\map\city\451000.json" />
  5045. <Content Include="Content\static\map\city\451100.json" />
  5046. <Content Include="Content\static\map\city\451200.json" />
  5047. <Content Include="Content\static\map\city\451300.json" />
  5048. <Content Include="Content\static\map\city\451400.json" />
  5049. <Content Include="Content\static\map\city\460100.json" />
  5050. <Content Include="Content\static\map\city\460200.json" />
  5051. <Content Include="Content\static\map\city\460300.json" />
  5052. <Content Include="Content\static\map\city\469000.json" />
  5053. <Content Include="Content\static\map\city\500100.json" />
  5054. <Content Include="Content\static\map\city\510100.json" />
  5055. <Content Include="Content\static\map\city\510300.json" />
  5056. <Content Include="Content\static\map\city\510400.json" />
  5057. <Content Include="Content\static\map\city\510500.json" />
  5058. <Content Include="Content\static\map\city\510600.json" />
  5059. <Content Include="Content\static\map\city\510700.json" />
  5060. <Content Include="Content\static\map\city\510800.json" />
  5061. <Content Include="Content\static\map\city\510900.json" />
  5062. <Content Include="Content\static\map\city\511000.json" />
  5063. <Content Include="Content\static\map\city\511100.json" />
  5064. <Content Include="Content\static\map\city\511300.json" />
  5065. <Content Include="Content\static\map\city\511400.json" />
  5066. <Content Include="Content\static\map\city\511500.json" />
  5067. <Content Include="Content\static\map\city\511600.json" />
  5068. <Content Include="Content\static\map\city\511700.json" />
  5069. <Content Include="Content\static\map\city\511800.json" />
  5070. <Content Include="Content\static\map\city\511900.json" />
  5071. <Content Include="Content\static\map\city\512000.json" />
  5072. <Content Include="Content\static\map\city\513200.json" />
  5073. <Content Include="Content\static\map\city\513300.json" />
  5074. <Content Include="Content\static\map\city\513400.json" />
  5075. <Content Include="Content\static\map\city\520100.json" />
  5076. <Content Include="Content\static\map\city\520200.json" />
  5077. <Content Include="Content\static\map\city\520300.json" />
  5078. <Content Include="Content\static\map\city\520400.json" />
  5079. <Content Include="Content\static\map\city\522200.json" />
  5080. <Content Include="Content\static\map\city\522300.json" />
  5081. <Content Include="Content\static\map\city\522400.json" />
  5082. <Content Include="Content\static\map\city\522600.json" />
  5083. <Content Include="Content\static\map\city\522700.json" />
  5084. <Content Include="Content\static\map\city\530100.json" />
  5085. <Content Include="Content\static\map\city\530300.json" />
  5086. <Content Include="Content\static\map\city\530400.json" />
  5087. <Content Include="Content\static\map\city\530500.json" />
  5088. <Content Include="Content\static\map\city\530600.json" />
  5089. <Content Include="Content\static\map\city\530700.json" />
  5090. <Content Include="Content\static\map\city\530800.json" />
  5091. <Content Include="Content\static\map\city\530900.json" />
  5092. <Content Include="Content\static\map\city\532300.json" />
  5093. <Content Include="Content\static\map\city\532500.json" />
  5094. <Content Include="Content\static\map\city\532600.json" />
  5095. <Content Include="Content\static\map\city\532800.json" />
  5096. <Content Include="Content\static\map\city\532900.json" />
  5097. <Content Include="Content\static\map\city\533100.json" />
  5098. <Content Include="Content\static\map\city\533300.json" />
  5099. <Content Include="Content\static\map\city\533400.json" />
  5100. <Content Include="Content\static\map\city\540100.json" />
  5101. <Content Include="Content\static\map\city\542100.json" />
  5102. <Content Include="Content\static\map\city\542200.json" />
  5103. <Content Include="Content\static\map\city\542300.json" />
  5104. <Content Include="Content\static\map\city\542400.json" />
  5105. <Content Include="Content\static\map\city\542500.json" />
  5106. <Content Include="Content\static\map\city\542600.json" />
  5107. <Content Include="Content\static\map\city\610100.json" />
  5108. <Content Include="Content\static\map\city\610200.json" />
  5109. <Content Include="Content\static\map\city\610300.json" />
  5110. <Content Include="Content\static\map\city\610400.json" />
  5111. <Content Include="Content\static\map\city\610500.json" />
  5112. <Content Include="Content\static\map\city\610600.json" />
  5113. <Content Include="Content\static\map\city\610700.json" />
  5114. <Content Include="Content\static\map\city\610800.json" />
  5115. <Content Include="Content\static\map\city\610900.json" />
  5116. <Content Include="Content\static\map\city\611000.json" />
  5117. <Content Include="Content\static\map\city\620100.json" />
  5118. <Content Include="Content\static\map\city\620200.json" />
  5119. <Content Include="Content\static\map\city\620300.json" />
  5120. <Content Include="Content\static\map\city\620400.json" />
  5121. <Content Include="Content\static\map\city\620500.json" />
  5122. <Content Include="Content\static\map\city\620600.json" />
  5123. <Content Include="Content\static\map\city\620700.json" />
  5124. <Content Include="Content\static\map\city\620800.json" />
  5125. <Content Include="Content\static\map\city\620900.json" />
  5126. <Content Include="Content\static\map\city\621000.json" />
  5127. <Content Include="Content\static\map\city\621100.json" />
  5128. <Content Include="Content\static\map\city\621200.json" />
  5129. <Content Include="Content\static\map\city\622900.json" />
  5130. <Content Include="Content\static\map\city\623000.json" />
  5131. <Content Include="Content\static\map\city\630100.json" />
  5132. <Content Include="Content\static\map\city\632100.json" />
  5133. <Content Include="Content\static\map\city\632200.json" />
  5134. <Content Include="Content\static\map\city\632300.json" />
  5135. <Content Include="Content\static\map\city\632500.json" />
  5136. <Content Include="Content\static\map\city\632600.json" />
  5137. <Content Include="Content\static\map\city\632700.json" />
  5138. <Content Include="Content\static\map\city\632800.json" />
  5139. <Content Include="Content\static\map\city\640100.json" />
  5140. <Content Include="Content\static\map\city\640200.json" />
  5141. <Content Include="Content\static\map\city\640300.json" />
  5142. <Content Include="Content\static\map\city\640400.json" />
  5143. <Content Include="Content\static\map\city\640500.json" />
  5144. <Content Include="Content\static\map\city\650100.json" />
  5145. <Content Include="Content\static\map\city\650200.json" />
  5146. <Content Include="Content\static\map\city\652100.json" />
  5147. <Content Include="Content\static\map\city\652200.json" />
  5148. <Content Include="Content\static\map\city\652300.json" />
  5149. <Content Include="Content\static\map\city\652700.json" />
  5150. <Content Include="Content\static\map\city\652800.json" />
  5151. <Content Include="Content\static\map\city\652900.json" />
  5152. <Content Include="Content\static\map\city\653000.json" />
  5153. <Content Include="Content\static\map\city\653100.json" />
  5154. <Content Include="Content\static\map\city\653200.json" />
  5155. <Content Include="Content\static\map\city\654000.json" />
  5156. <Content Include="Content\static\map\city\654200.json" />
  5157. <Content Include="Content\static\map\city\654300.json" />
  5158. <Content Include="Content\static\map\city\659000.json" />
  5159. <Content Include="Content\static\map\city\710000.json" />
  5160. <Content Include="Content\static\map\city\810100.json" />
  5161. <Content Include="Content\static\map\city\820000.json" />
  5162. <Content Include="Content\static\map\province\anhui.json" />
  5163. <Content Include="Content\static\map\province\aomen.json" />
  5164. <Content Include="Content\static\map\province\beijing.json" />
  5165. <Content Include="Content\static\map\province\chongqing.json" />
  5166. <Content Include="Content\static\map\province\fujian.json" />
  5167. <Content Include="Content\static\map\province\gansu.json" />
  5168. <Content Include="Content\static\map\province\guangdong.json" />
  5169. <Content Include="Content\static\map\province\guangxi.json" />
  5170. <Content Include="Content\static\map\province\guizhou.json" />
  5171. <Content Include="Content\static\map\province\hainan.json" />
  5172. <Content Include="Content\static\map\province\hebei.json" />
  5173. <Content Include="Content\static\map\province\heilongjiang.json" />
  5174. <Content Include="Content\static\map\province\henan.json" />
  5175. <Content Include="Content\static\map\province\hubei.json" />
  5176. <Content Include="Content\static\map\province\hunan.json" />
  5177. <Content Include="Content\static\map\province\jiangsu.json" />
  5178. <Content Include="Content\static\map\province\jiangxi.json" />
  5179. <Content Include="Content\static\map\province\jilin.json" />
  5180. <Content Include="Content\static\map\province\liaoning.json" />
  5181. <Content Include="Content\static\map\province\neimenggu.json" />
  5182. <Content Include="Content\static\map\province\ningxia.json" />
  5183. <Content Include="Content\static\map\province\qinghai.json" />
  5184. <Content Include="Content\static\map\province\shandong.json" />
  5185. <Content Include="Content\static\map\province\shanghai.json" />
  5186. <Content Include="Content\static\map\province\shanxi.json" />
  5187. <Content Include="Content\static\map\province\shanxi1.json" />
  5188. <Content Include="Content\static\map\province\sichuan.json" />
  5189. <Content Include="Content\static\map\province\tianjin.json" />
  5190. <Content Include="Content\static\map\province\xianggang.json" />
  5191. <Content Include="Content\static\map\province\xinjiang.json" />
  5192. <Content Include="Content\static\map\province\xizang.json" />
  5193. <Content Include="Content\static\map\province\yunnan.json" />
  5194. <Content Include="Content\static\map\province\zhejiang.json" />
  5195. <Content Include="Content\font\learunfont\iconfont.eot" />
  5196. <Content Include="Content\font\learunfont\iconfont.ttf" />
  5197. <Content Include="Content\font\learunfont\iconfont.woff" />
  5198. <Content Include="Views\LR_Content\style\lr-layer.css" />
  5199. <Content Include="Views\UserCenter\ContactForm.css" />
  5200. <Content Include="Views\UserCenter\ContactForm.js" />
  5201. <Content Include="Views\UserCenter\HeadForm.css" />
  5202. <Content Include="Views\UserCenter\HeadForm.js" />
  5203. <Content Include="Views\UserCenter\IndexForDC.js" />
  5204. <Content Include="Views\UserCenter\IndexInTeacher.css" />
  5205. <Content Include="Views\UserCenter\IndexInTeacher.js" />
  5206. <Content Include="Views\UserCenter\Index.css" />
  5207. <Content Include="Views\UserCenter\Index.js" />
  5208. <Content Include="Views\UserCenter\LanguageForm.css" />
  5209. <Content Include="Views\UserCenter\LanguageForm.js" />
  5210. <Content Include="Views\UserCenter\LogIndex.css" />
  5211. <Content Include="Views\UserCenter\LogIndex.js" />
  5212. <Content Include="Views\UserCenter\PassWordForm.css" />
  5213. <Content Include="Views\UserCenter\PassWordForm.js" />
  5214. <Content Include="Views\UserCenter\teacherDot.css" />
  5215. <Content Include="Views\UserCenter\userInTeacher.css" />
  5216. <Content Include="Views\UserCenter\user.css" />
  5217. <Content Include="Views\Utility\AppDevGuideIndex.js" />
  5218. <Content Include="Views\Utility\EditGridForm.css" />
  5219. <Content Include="Views\Utility\EditGridForm.js" />
  5220. <Content Include="Views\Utility\ExcelExportForm.js" />
  5221. <Content Include="Views\Utility\GirdSelectIndex.css" />
  5222. <Content Include="Views\Utility\GirdSelectIndex.js" />
  5223. <Content Include="Views\Utility\JfGirdLayerForm.css" />
  5224. <Content Include="Views\Utility\JfGirdLayerForm.js" />
  5225. <Content Include="Views\Utility\ListContentIndex.js" />
  5226. <Content Include="Views\Utility\PCDevGuideIndex.js" />
  5227. <Content Include="Views\Utility\PreviewForm.js" />
  5228. <Content Include="Views\Utility\TreeSelectIndex.css" />
  5229. <Content Include="Views\Utility\TreeSelectIndex.js" />
  5230. <Content Include="Web.config">
  5231. <SubType>Designer</SubType>
  5232. </Content>
  5233. <Content Include="Web.Debug.config">
  5234. <DependentUpon>Web.config</DependentUpon>
  5235. </Content>
  5236. <Content Include="Web.Release.config">
  5237. <DependentUpon>Web.config</DependentUpon>
  5238. </Content>
  5239. <Content Include="Views\Web.config" />
  5240. <Content Include="Views\Error\ErrorBrowser.cshtml" />
  5241. <Content Include="Views\Error\ErrorPath404.cshtml" />
  5242. <Content Include="Views\Utility\Icon.cshtml" />
  5243. <Content Include="Views\UserCenter\Index.cshtml" />
  5244. <Content Include="Views\UserCenter\ContactForm.cshtml" />
  5245. <Content Include="Views\UserCenter\HeadForm.cshtml" />
  5246. <Content Include="Views\UserCenter\PassWordForm.cshtml" />
  5247. <Content Include="Views\UserCenter\LogIndex.cshtml" />
  5248. <Content Include="Areas\LR_AuthorizeModule\Views\DataAuthorize\Index.cshtml" />
  5249. <Content Include="Areas\LR_AuthorizeModule\Views\DataAuthorize\Index.js" />
  5250. <Content Include="Areas\LR_AuthorizeModule\Views\DataAuthorize\Form.cshtml" />
  5251. <Content Include="Areas\LR_AuthorizeModule\Views\DataAuthorize\Form.js" />
  5252. <Content Include="Views\Utility\ExcelExportForm.cshtml" />
  5253. <Content Include="Views\Shared\_Index.cshtml">
  5254. <SubType>Code</SubType>
  5255. </Content>
  5256. <Content Include="Views\Utility\GirdSelectIndex.cshtml" />
  5257. <Content Include="Views\Utility\AppIcon.cshtml" />
  5258. <Content Include="Views\Utility\TreeSelectIndex.cshtml" />
  5259. <Content Include="Views\Utility\PreviewForm.cshtml" />
  5260. <Content Include="Views\Utility\EditGridForm.cshtml" />
  5261. <Content Include="Views\Utility\JfGirdLayerForm.cshtml" />
  5262. <Content Include="Views\Login\Accordion.cshtml" />
  5263. <Content Include="Views\Login\Top.cshtml" />
  5264. <Content Include="Views\Login\Window.cshtml" />
  5265. <Content Include="Views\Utility\ListContentIndex.cshtml" />
  5266. <Content Include="Views\Utility\PCDevGuideIndex.cshtml" />
  5267. <Content Include="Views\Utility\AppDevGuideIndex.cshtml" />
  5268. <Content Include="Areas\LR_Desktop\Views\DTTarget\Index.cshtml" />
  5269. <Content Include="Areas\LR_Desktop\Views\DTTarget\Index.js" />
  5270. <Content Include="Areas\LR_Desktop\Views\DTTarget\Form.cshtml" />
  5271. <Content Include="Areas\LR_Desktop\Views\DTTarget\Form.js" />
  5272. <Content Include="Areas\LR_Desktop\Views\DTList\Index.cshtml" />
  5273. <Content Include="Areas\LR_Desktop\Views\DTList\Index.js" />
  5274. <Content Include="Areas\LR_Desktop\Views\DTList\Form.cshtml" />
  5275. <Content Include="Areas\LR_Desktop\Views\DTList\Form.js" />
  5276. <Content Include="Areas\LR_Desktop\Views\DTChart\Index.cshtml" />
  5277. <Content Include="Areas\LR_Desktop\Views\DTChart\Index.js" />
  5278. <Content Include="Areas\LR_Desktop\Views\DTChart\Form.cshtml" />
  5279. <Content Include="Areas\LR_Desktop\Views\DTChart\Form.js" />
  5280. <Content Include="Areas\LR_LGManager\Views\LGMap\Index.cshtml" />
  5281. <Content Include="Areas\LR_LGManager\Views\LGMap\Index.js" />
  5282. <Content Include="Areas\LR_LGManager\Views\LGMap\Form.cshtml" />
  5283. <Content Include="Areas\LR_LGManager\Views\LGMap\Form.js" />
  5284. <Content Include="Areas\LR_LGManager\Views\LGType\Index.cshtml" />
  5285. <Content Include="Areas\LR_LGManager\Views\LGType\Index.js" />
  5286. <Content Include="Areas\LR_LGManager\Views\LGType\Form.cshtml" />
  5287. <Content Include="Areas\LR_LGManager\Views\LGType\Form.js" />
  5288. <Content Include="Views\Home\AdminDesktopAccordion.cshtml" />
  5289. <Content Include="Views\Home\AdminDesktopWindos.cshtml" />
  5290. <Content Include="Views\Home\AdminDesktopTop.cshtml" />
  5291. <Content Include="Areas\LR_ReportTest\Views\TestCRMReport\Index.cshtml" />
  5292. <Content Include="Areas\LR_ReportTest\Views\TestCRMReport\Index.js" />
  5293. <Content Include="Areas\EducationalAdministration\Views\CdDept\Index.cshtml" />
  5294. <Content Include="Areas\EducationalAdministration\Views\CdDept\Index.js" />
  5295. <Content Include="Areas\EducationalAdministration\Views\CdDept\Form.cshtml" />
  5296. <Content Include="Areas\EducationalAdministration\Views\CdDept\Form.js" />
  5297. <Content Include="Areas\EducationalAdministration\Views\CdMajor\Index.cshtml" />
  5298. <Content Include="Areas\EducationalAdministration\Views\CdMajor\Index.js" />
  5299. <Content Include="Areas\EducationalAdministration\Views\CdMajor\Form.cshtml" />
  5300. <Content Include="Areas\EducationalAdministration\Views\CdMajor\Form.js" />
  5301. <Content Include="Areas\EducationalAdministration\Views\LessonInfo\Index.cshtml" />
  5302. <Content Include="Areas\EducationalAdministration\Views\LessonInfo\Index.js" />
  5303. <Content Include="Areas\EducationalAdministration\Views\LessonInfo\Form.cshtml" />
  5304. <Content Include="Areas\EducationalAdministration\Views\LessonInfo\Form.js" />
  5305. <Content Include="Areas\EducationalAdministration\Views\CdLessonSort\Index.cshtml" />
  5306. <Content Include="Areas\EducationalAdministration\Views\CdLessonSort\Index.js" />
  5307. <Content Include="Areas\EducationalAdministration\Views\CdLessonSort\Form.cshtml" />
  5308. <Content Include="Areas\EducationalAdministration\Views\CdLessonSort\Form.js" />
  5309. <Content Include="Areas\EducationalAdministration\Views\CdLessonSortDetail\Index.cshtml" />
  5310. <Content Include="Areas\EducationalAdministration\Views\CdLessonSortDetail\Index.js" />
  5311. <Content Include="Areas\EducationalAdministration\Views\CdLessonSortDetail\Form.cshtml" />
  5312. <Content Include="Areas\EducationalAdministration\Views\CdLessonSortDetail\Form.js" />
  5313. <Content Include="Areas\EducationalAdministration\Views\CdClassType\Index.cshtml" />
  5314. <Content Include="Areas\EducationalAdministration\Views\CdClassType\Index.js" />
  5315. <Content Include="Areas\EducationalAdministration\Views\CdClassType\Form.cshtml" />
  5316. <Content Include="Areas\EducationalAdministration\Views\CdClassType\Form.js" />
  5317. <Content Include="Areas\EducationalAdministration\Views\ClassroomBuilding\Index.cshtml" />
  5318. <Content Include="Areas\EducationalAdministration\Views\ClassroomBuilding\Index.js" />
  5319. <Content Include="Areas\EducationalAdministration\Views\ClassroomBuilding\Form.cshtml" />
  5320. <Content Include="Areas\EducationalAdministration\Views\ClassroomBuilding\Form.js" />
  5321. <Content Include="Areas\EducationalAdministration\Views\ClassroomInfo\Index.cshtml" />
  5322. <Content Include="Areas\EducationalAdministration\Views\ClassroomInfo\Index.js" />
  5323. <Content Include="Areas\EducationalAdministration\Views\ClassroomInfo\Form.cshtml" />
  5324. <Content Include="Areas\EducationalAdministration\Views\ClassroomInfo\Form.js" />
  5325. <Content Include="Areas\EducationalAdministration\Views\ClassInfo\Index.cshtml" />
  5326. <Content Include="Areas\EducationalAdministration\Views\ClassInfo\Index.js" />
  5327. <Content Include="Areas\EducationalAdministration\Views\ClassInfo\Form.cshtml" />
  5328. <Content Include="Areas\EducationalAdministration\Views\ClassInfo\Form.js" />
  5329. <Content Include="Areas\EducationalAdministration\Views\EmpInfo\Index.cshtml" />
  5330. <Content Include="Areas\EducationalAdministration\Views\EmpInfo\Index.js" />
  5331. <Content Include="Areas\EducationalAdministration\Views\EmpInfo\Form.cshtml" />
  5332. <Content Include="Areas\EducationalAdministration\Views\EmpInfo\Form.js" />
  5333. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasic\Index.cshtml" />
  5334. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasic\Index.js" />
  5335. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasic\Form.cshtml" />
  5336. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasic\Form.js" />
  5337. <Content Include="Areas\EducationalAdministration\Views\DIC_PROVINCE\Index.cshtml" />
  5338. <Content Include="Areas\EducationalAdministration\Views\DIC_PROVINCE\Index.js" />
  5339. <Content Include="Areas\EducationalAdministration\Views\DIC_PROVINCE\Form.cshtml" />
  5340. <Content Include="Areas\EducationalAdministration\Views\DIC_PROVINCE\Form.js" />
  5341. <Content Include="Areas\EducationalAdministration\Views\DIC_CITY\Index.cshtml" />
  5342. <Content Include="Areas\EducationalAdministration\Views\DIC_CITY\Index.js" />
  5343. <Content Include="Areas\EducationalAdministration\Views\DIC_CITY\Form.cshtml" />
  5344. <Content Include="Areas\EducationalAdministration\Views\DIC_CITY\Form.js" />
  5345. <Content Include="Areas\EducationalAdministration\Views\DIC_AREA\Index.cshtml" />
  5346. <Content Include="Areas\EducationalAdministration\Views\DIC_AREA\Index.js" />
  5347. <Content Include="Areas\EducationalAdministration\Views\DIC_AREA\Form.cshtml" />
  5348. <Content Include="Areas\EducationalAdministration\Views\DIC_AREA\Form.js" />
  5349. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonTerm\Index.cshtml" />
  5350. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonTerm\Index.js" />
  5351. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonTerm\Form.cshtml" />
  5352. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonTerm\Form.js" />
  5353. <Content Include="Areas\EducationalAdministration\Views\SYS_SendMessage\Index.cshtml" />
  5354. <Content Include="Areas\EducationalAdministration\Views\SYS_SendMessage\Index.js" />
  5355. <Content Include="Areas\EducationalAdministration\Views\SYS_SendMessage\Form.cshtml" />
  5356. <Content Include="Areas\EducationalAdministration\Views\SYS_SendMessage\Form.js" />
  5357. <Content Include="Areas\EducationalAdministration\Views\SYS_ReceiveMessage\Index.cshtml" />
  5358. <Content Include="Areas\EducationalAdministration\Views\SYS_ReceiveMessage\Index.js" />
  5359. <Content Include="Areas\EducationalAdministration\Views\SYS_ReceiveMessage\Form.cshtml" />
  5360. <Content Include="Areas\EducationalAdministration\Views\SYS_ReceiveMessage\Form.js" />
  5361. <Content Include="Areas\EducationalAdministration\Views\JournalSend\Index.cshtml" />
  5362. <Content Include="Areas\EducationalAdministration\Views\JournalSend\Index.js" />
  5363. <Content Include="Areas\EducationalAdministration\Views\JournalSend\Form.cshtml" />
  5364. <Content Include="Areas\EducationalAdministration\Views\JournalSend\Form.js" />
  5365. <Content Include="Areas\EducationalAdministration\Views\JournalReceive\Index.cshtml" />
  5366. <Content Include="Areas\EducationalAdministration\Views\JournalReceive\Index.js" />
  5367. <Content Include="Areas\EducationalAdministration\Views\JournalReceive\Form.cshtml" />
  5368. <Content Include="Areas\EducationalAdministration\Views\JournalReceive\Form.js" />
  5369. <Content Include="Areas\EducationalAdministration\Views\AddressBook\Index.cshtml" />
  5370. <Content Include="Areas\EducationalAdministration\Views\AddressBook\Index.js" />
  5371. <Content Include="Areas\EducationalAdministration\Views\AddressBook\Form.cshtml" />
  5372. <Content Include="Areas\EducationalAdministration\Views\AddressBook\Form.js" />
  5373. <Content Include="Areas\PersonnelManagement\Views\TeacherCertificate\Index.cshtml" />
  5374. <Content Include="Areas\PersonnelManagement\Views\TeacherCertificate\Index.js" />
  5375. <Content Include="Areas\PersonnelManagement\Views\TeacherCertificate\Form.cshtml" />
  5376. <Content Include="Areas\PersonnelManagement\Views\TeacherCertificate\Form.js" />
  5377. <Content Include="Areas\PersonnelManagement\Views\TeacherTrain\Index.cshtml" />
  5378. <Content Include="Areas\PersonnelManagement\Views\TeacherTrain\Index.js" />
  5379. <Content Include="Areas\PersonnelManagement\Views\TeacherTrain\Form.cshtml" />
  5380. <Content Include="Areas\PersonnelManagement\Views\TeacherTrain\Form.js" />
  5381. <Content Include="Areas\PersonnelManagement\Views\TeacherTitleEvaluation\Index.cshtml" />
  5382. <Content Include="Areas\PersonnelManagement\Views\TeacherTitleEvaluation\Index.js" />
  5383. <Content Include="Areas\PersonnelManagement\Views\TeacherTitleEvaluation\Form.cshtml" />
  5384. <Content Include="Areas\PersonnelManagement\Views\TeacherTitleEvaluation\Form.js" />
  5385. <Content Include="Areas\PersonnelManagement\Views\TeacherRetire\Index.cshtml" />
  5386. <Content Include="Areas\PersonnelManagement\Views\TeacherRetire\Index.js" />
  5387. <Content Include="Areas\PersonnelManagement\Views\TeacherRetire\Form.cshtml" />
  5388. <Content Include="Areas\PersonnelManagement\Views\TeacherRetire\Form.js" />
  5389. <Content Include="Areas\PersonnelManagement\Views\TeacherDimission\Index.cshtml" />
  5390. <Content Include="Areas\PersonnelManagement\Views\TeacherDimission\Index.js" />
  5391. <Content Include="Areas\PersonnelManagement\Views\TeacherDimission\Form.cshtml" />
  5392. <Content Include="Areas\PersonnelManagement\Views\TeacherDimission\Form.js" />
  5393. <Content Include="Areas\PersonnelManagement\Views\TeacherTitleChange\Index.cshtml" />
  5394. <Content Include="Areas\PersonnelManagement\Views\TeacherTitleChange\Index.js" />
  5395. <Content Include="Areas\PersonnelManagement\Views\TeacherTitleChange\Form.cshtml" />
  5396. <Content Include="Areas\PersonnelManagement\Views\TeacherTitleChange\Form.js" />
  5397. <Content Include="Areas\PersonnelManagement\Views\TeacherPostChange\Index.cshtml" />
  5398. <Content Include="Areas\PersonnelManagement\Views\TeacherPostChange\Index.js" />
  5399. <Content Include="Areas\PersonnelManagement\Views\TeacherPostChange\Form.cshtml" />
  5400. <Content Include="Areas\PersonnelManagement\Views\TeacherPostChange\Form.js" />
  5401. <Content Include="Areas\PersonnelManagement\Views\SalarySheet\Index.cshtml" />
  5402. <Content Include="Areas\PersonnelManagement\Views\SalarySheet\Index.js" />
  5403. <Content Include="Areas\PersonnelManagement\Views\SalarySheet\Form.cshtml" />
  5404. <Content Include="Areas\PersonnelManagement\Views\SalarySheet\Form.js" />
  5405. <Content Include="Areas\EducationalAdministration\Views\Sys_SendFile\Index.cshtml" />
  5406. <Content Include="Areas\EducationalAdministration\Views\Sys_SendFile\Index.js" />
  5407. <Content Include="Areas\EducationalAdministration\Views\Sys_SendFile\Form.cshtml" />
  5408. <Content Include="Areas\EducationalAdministration\Views\Sys_SendFile\Form.js" />
  5409. <Content Include="Areas\EducationalAdministration\Views\Sys_SendComplaint\Index.cshtml" />
  5410. <Content Include="Areas\EducationalAdministration\Views\Sys_SendComplaint\Index.js" />
  5411. <Content Include="Areas\EducationalAdministration\Views\Sys_SendComplaint\Form.cshtml" />
  5412. <Content Include="Areas\EducationalAdministration\Views\Sys_SendComplaint\Form.js" />
  5413. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveComplaint\Index.cshtml" />
  5414. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveComplaint\Index.js" />
  5415. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveComplaint\Form.cshtml" />
  5416. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveComplaint\Form.js" />
  5417. <Content Include="Areas\Permission\Views\Perm_FunctionType\Index.cshtml" />
  5418. <Content Include="Areas\Permission\Views\Perm_FunctionType\Index.js" />
  5419. <Content Include="Areas\Permission\Views\Perm_FunctionType\Form.cshtml" />
  5420. <Content Include="Areas\Permission\Views\Perm_FunctionType\Form.js" />
  5421. <Content Include="Areas\Permission\Views\Perm_Function\Index.cshtml" />
  5422. <Content Include="Areas\Permission\Views\Perm_Function\Index.js" />
  5423. <Content Include="Areas\Permission\Views\Perm_Function\Form.cshtml" />
  5424. <Content Include="Areas\Permission\Views\Perm_Function\Form.js" />
  5425. <Content Include="Areas\Permission\Views\Perm_UserPermission\Index.cshtml" />
  5426. <Content Include="Areas\Permission\Views\Perm_UserPermission\Index.js" />
  5427. <Content Include="Areas\Permission\Views\Perm_UserPermission\Form.cshtml" />
  5428. <Content Include="Areas\Permission\Views\Perm_UserPermission\Form.js" />
  5429. <Content Include="Areas\Ask\Views\Ask_Type\Index.cshtml" />
  5430. <Content Include="Areas\Ask\Views\Ask_Type\Index.js" />
  5431. <Content Include="Areas\Ask\Views\Ask_Type\Form.cshtml" />
  5432. <Content Include="Areas\Ask\Views\Ask_Type\Form.js" />
  5433. <Content Include="Areas\Ask\Views\Ask_Main\Index.cshtml" />
  5434. <Content Include="Areas\Ask\Views\Ask_Main\Index.js" />
  5435. <Content Include="Areas\Ask\Views\Ask_Main\Form.cshtml" />
  5436. <Content Include="Areas\Ask\Views\Ask_Main\Form.js" />
  5437. <Content Include="Areas\Ask\Views\Ask_Question\Index.cshtml" />
  5438. <Content Include="Areas\Ask\Views\Ask_Question\Index.js" />
  5439. <Content Include="Areas\Ask\Views\Ask_Question\Form.cshtml" />
  5440. <Content Include="Areas\Ask\Views\Ask_Question\Form.js" />
  5441. <Content Include="Areas\Ask\Views\Ask_QuestionItems\Index.cshtml" />
  5442. <Content Include="Areas\Ask\Views\Ask_QuestionItems\Index.js" />
  5443. <Content Include="Areas\Ask\Views\Ask_QuestionItems\Form.cshtml" />
  5444. <Content Include="Areas\Ask\Views\Ask_QuestionItems\Form.js" />
  5445. <Content Include="Areas\LR_Desktop\Views\LR_OA_NewsRead\Index.cshtml" />
  5446. <Content Include="Areas\LR_Desktop\Views\LR_OA_NewsRead\Index.js" />
  5447. <Content Include="Areas\LR_Desktop\Views\LR_OA_NewsRead\Form.cshtml" />
  5448. <Content Include="Areas\LR_Desktop\Views\LR_OA_NewsRead\Form.js" />
  5449. <Content Include="Areas\LR_Desktop\Views\Sys_QRCodeInLogin\Index.cshtml" />
  5450. <Content Include="Areas\LR_Desktop\Views\Sys_QRCodeInLogin\Index.js" />
  5451. <Content Include="Areas\LR_Desktop\Views\Sys_QRCodeInLogin\Form.cshtml" />
  5452. <Content Include="Areas\LR_Desktop\Views\Sys_QRCodeInLogin\Form.js" />
  5453. <Content Include="Areas\LogisticsManagement\Views\Accommodation\Index.cshtml" />
  5454. <Content Include="Areas\LogisticsManagement\Views\Accommodation\Index.js" />
  5455. <Content Include="Areas\LogisticsManagement\Views\Accommodation\Form.cshtml" />
  5456. <Content Include="Areas\LogisticsManagement\Views\Accommodation\Form.js" />
  5457. <Content Include="Areas\Permission\Views\Perm_ChartGroup\Index.cshtml" />
  5458. <Content Include="Areas\Permission\Views\Perm_ChartGroup\Index.js" />
  5459. <Content Include="Areas\Permission\Views\Perm_ChartGroup\Form.cshtml" />
  5460. <Content Include="Areas\Permission\Views\Perm_ChartGroup\Form.js" />
  5461. <Content Include="Areas\EducationalAdministration\Views\EmpReportCard\Index.cshtml" />
  5462. <Content Include="Areas\EducationalAdministration\Views\EmpReportCard\Index.js" />
  5463. <Content Include="Areas\EducationalAdministration\Views\EmpReportCard\Form.cshtml" />
  5464. <Content Include="Areas\EducationalAdministration\Views\EmpReportCard\Form.js" />
  5465. <Content Include="Areas\LogisticsManagement\Views\Sanitation\Index.cshtml" />
  5466. <Content Include="Areas\LogisticsManagement\Views\Sanitation\Index.js" />
  5467. <Content Include="Areas\LogisticsManagement\Views\Sanitation\Form.cshtml" />
  5468. <Content Include="Areas\LogisticsManagement\Views\Sanitation\Form.js" />
  5469. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasic_ChangeLog\Index.cshtml" />
  5470. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasic_ChangeLog\Index.js" />
  5471. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasic_ChangeLog\Form.cshtml" />
  5472. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasic_ChangeLog\Form.js" />
  5473. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonTermOfElective\Index.cshtml" />
  5474. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonTermOfElective\Index.js" />
  5475. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonTermOfElective\Form.cshtml" />
  5476. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonTermOfElective\Form.js" />
  5477. <Content Include="Areas\EducationalAdministration\Views\OpenLessonPlanOfElective\Index.cshtml" />
  5478. <Content Include="Areas\EducationalAdministration\Views\OpenLessonPlanOfElective\Index.js" />
  5479. <Content Include="Areas\EducationalAdministration\Views\OpenLessonPlanOfElective\Form.cshtml" />
  5480. <Content Include="Areas\EducationalAdministration\Views\OpenLessonPlanOfElective\Form.js" />
  5481. <Content Include="Areas\EducationalAdministration\Views\StuSelectLessonListOfElective\Index.cshtml" />
  5482. <Content Include="Areas\EducationalAdministration\Views\StuSelectLessonListOfElective\Index.js" />
  5483. <Content Include="Areas\EducationalAdministration\Views\StuSelectLessonListOfElective\AuditForm.cshtml" />
  5484. <Content Include="Areas\EducationalAdministration\Views\StuSelectLessonListOfElective\AuditForm.js" />
  5485. <Content Include="Areas\EducationalAdministration\Views\ArrangeExamTerm\Index.cshtml" />
  5486. <Content Include="Areas\EducationalAdministration\Views\ArrangeExamTerm\Index.js" />
  5487. <Content Include="Areas\EducationalAdministration\Views\ArrangeExamTerm\Form.cshtml" />
  5488. <Content Include="Areas\EducationalAdministration\Views\ArrangeExamTerm\Form.js" />
  5489. <Content Include="Areas\EducationalAdministration\Views\StuAttendanceLeave\Index.cshtml" />
  5490. <Content Include="Areas\EducationalAdministration\Views\StuAttendanceLeave\Index.js" />
  5491. <Content Include="Areas\EducationalAdministration\Views\StuAttendanceLeave\Form.cshtml" />
  5492. <Content Include="Areas\EducationalAdministration\Views\StuAttendanceLeave\Form.js" />
  5493. <Content Include="Areas\EducationalAdministration\Views\ArrangeExamStructure\Index.cshtml" />
  5494. <Content Include="Areas\EducationalAdministration\Views\ArrangeExamStructure\Index.js" />
  5495. <Content Include="Areas\EducationalAdministration\Views\ArrangeExamStructure\Form.cshtml" />
  5496. <Content Include="Areas\EducationalAdministration\Views\ArrangeExamStructure\Form.js" />
  5497. <Content Include="Areas\ReceiveSendFeeManagement\Views\FinaChargeBank\Index.cshtml" />
  5498. <Content Include="Areas\ReceiveSendFeeManagement\Views\FinaChargeBank\Index.js" />
  5499. <Content Include="Areas\ReceiveSendFeeManagement\Views\FinaChargeBank\Form.cshtml" />
  5500. <Content Include="Areas\ReceiveSendFeeManagement\Views\FinaChargeBank\Form.js" />
  5501. <Content Include="Areas\ReceiveSendFeeManagement\Views\FinaChargeItem\Index.cshtml" />
  5502. <Content Include="Areas\ReceiveSendFeeManagement\Views\FinaChargeItem\Index.js" />
  5503. <Content Include="Areas\ReceiveSendFeeManagement\Views\FinaChargeItem\Form.cshtml" />
  5504. <Content Include="Areas\ReceiveSendFeeManagement\Views\FinaChargeItem\Form.js" />
  5505. <Content Include="Areas\ReceiveSendFeeManagement\Views\FinaChargesStandard\Index.cshtml" />
  5506. <Content Include="Areas\ReceiveSendFeeManagement\Views\FinaChargesStandard\Index.js" />
  5507. <Content Include="Areas\ReceiveSendFeeManagement\Views\FinaChargesStandard\Form.cshtml" />
  5508. <Content Include="Areas\ReceiveSendFeeManagement\Views\FinaChargesStandard\Form.js" />
  5509. <Content Include="Areas\ReceiveSendFeeManagement\Views\FinaReplaceMode\Index.cshtml" />
  5510. <Content Include="Areas\ReceiveSendFeeManagement\Views\FinaReplaceMode\Index.js" />
  5511. <Content Include="Areas\ReceiveSendFeeManagement\Views\FinaReplaceMode\Form.cshtml" />
  5512. <Content Include="Areas\ReceiveSendFeeManagement\Views\FinaReplaceMode\Form.js" />
  5513. <Content Include="Areas\ReceiveSendFeeManagement\Views\FinaRefundItem\Index.cshtml" />
  5514. <Content Include="Areas\ReceiveSendFeeManagement\Views\FinaRefundItem\Index.js" />
  5515. <Content Include="Areas\ReceiveSendFeeManagement\Views\FinaRefundItem\Form.cshtml" />
  5516. <Content Include="Areas\ReceiveSendFeeManagement\Views\FinaRefundItem\Form.js" />
  5517. <Content Include="Areas\EducationalAdministration\Views\StuScore\Index.cshtml" />
  5518. <Content Include="Areas\EducationalAdministration\Views\StuScore\Index.js" />
  5519. <Content Include="Areas\EducationalAdministration\Views\StuScore\Form.cshtml" />
  5520. <Content Include="Areas\EducationalAdministration\Views\StuScore\Form.js" />
  5521. <Content Include="Areas\EducationalAdministration\Views\StuPunishment\Index.cshtml" />
  5522. <Content Include="Areas\EducationalAdministration\Views\StuPunishment\Index.js" />
  5523. <Content Include="Areas\EducationalAdministration\Views\StuPunishment\Form.cshtml" />
  5524. <Content Include="Areas\EducationalAdministration\Views\StuPunishment\Form.js" />
  5525. <Content Include="Areas\EducationalAdministration\Views\StuEncourgement\Index.cshtml" />
  5526. <Content Include="Areas\EducationalAdministration\Views\StuEncourgement\Index.js" />
  5527. <Content Include="Areas\EducationalAdministration\Views\StuEncourgement\Form.cshtml" />
  5528. <Content Include="Areas\EducationalAdministration\Views\StuEncourgement\Form.js" />
  5529. <Content Include="Areas\EducationalAdministration\Views\QingJu_UserAccount\Index.cshtml" />
  5530. <Content Include="Areas\EducationalAdministration\Views\QingJu_UserAccount\Index.js" />
  5531. <Content Include="Areas\EducationalAdministration\Views\QingJu_UserAccount\Form.cshtml" />
  5532. <Content Include="Areas\EducationalAdministration\Views\QingJu_UserAccount\Form.js" />
  5533. <Content Include="Views\Home\QingJuRegister.cshtml" />
  5534. <Content Include="Views\Home\GoQingJu.cshtml" />
  5535. <Content Include="Areas\LR_Desktop\Views\Sys_CustomerService\Index.cshtml" />
  5536. <Content Include="Areas\LR_Desktop\Views\Sys_CustomerService\Index.js" />
  5537. <Content Include="Areas\LR_Desktop\Views\Sys_CustomerService\Form.cshtml" />
  5538. <Content Include="Areas\LR_Desktop\Views\Sys_CustomerService\Form.js" />
  5539. <Content Include="Areas\LR_Desktop\Views\Sys_DataBaseBackup\Index.cshtml" />
  5540. <Content Include="Areas\LR_Desktop\Views\Sys_DataBaseBackup\Index.js" />
  5541. <Content Include="Areas\LR_Desktop\Views\Sys_DataBaseBackup\Form.cshtml" />
  5542. <Content Include="Areas\LR_Desktop\Views\Sys_DataBaseBackup\Form.js" />
  5543. <Content Include="Areas\LR_Desktop\Views\Sys_DataBaseBackupSet\Index.cshtml" />
  5544. <Content Include="Areas\LR_Desktop\Views\Sys_DataBaseBackupSet\Index.js" />
  5545. <Content Include="Areas\LR_Desktop\Views\Sys_DataBaseBackupSet\Form.cshtml" />
  5546. <Content Include="Areas\LR_Desktop\Views\Sys_DataBaseBackupSet\Form.js" />
  5547. <Content Include="Areas\EducationalAdministration\Views\Dgree\Index.cshtml" />
  5548. <Content Include="Areas\EducationalAdministration\Views\Dgree\Index.js" />
  5549. <Content Include="Areas\EducationalAdministration\Views\Dgree\Form.cshtml" />
  5550. <Content Include="Areas\EducationalAdministration\Views\Dgree\Form.js" />
  5551. <Content Include="Areas\LR_Desktop\Views\Sys_UpdateRecord\Index.cshtml" />
  5552. <Content Include="Areas\LR_Desktop\Views\Sys_UpdateRecord\Index.js" />
  5553. <Content Include="Areas\LR_Desktop\Views\Sys_UpdateRecord\Form.cshtml" />
  5554. <Content Include="Areas\LR_Desktop\Views\Sys_UpdateRecord\Form.js" />
  5555. <Content Include="Areas\EducationalAdministration\Views\SchoolCalendar\Index.cshtml" />
  5556. <Content Include="Areas\EducationalAdministration\Views\SchoolCalendar\Index.js" />
  5557. <Content Include="Areas\EducationalAdministration\Views\SchoolCalendar\Form.cshtml" />
  5558. <Content Include="Areas\EducationalAdministration\Views\SchoolCalendar\Form.js" />
  5559. <Content Include="Areas\EducationalAdministration\Views\EADateArrange\Index.cshtml" />
  5560. <Content Include="Areas\EducationalAdministration\Views\EADateArrange\Index.js" />
  5561. <Content Include="Areas\EducationalAdministration\Views\EADateArrange\Form.cshtml" />
  5562. <Content Include="Areas\EducationalAdministration\Views\EADateArrange\Form.js" />
  5563. <Content Include="Areas\Permission\Views\Perm_FunctionVisit\Index.cshtml" />
  5564. <Content Include="Areas\Permission\Views\Perm_FunctionVisit\Index.js" />
  5565. <Content Include="Areas\Permission\Views\Perm_FunctionVisit\Form.cshtml" />
  5566. <Content Include="Areas\Permission\Views\Perm_FunctionVisit\Form.js" />
  5567. <Content Include="Areas\EducationalAdministration\Views\Edu_ChangeTeacherLesson\Index.cshtml" />
  5568. <Content Include="Areas\EducationalAdministration\Views\Edu_ChangeTeacherLesson\Index.js" />
  5569. <Content Include="Areas\EducationalAdministration\Views\Edu_ChangeTeacherLesson\Form.cshtml" />
  5570. <Content Include="Areas\EducationalAdministration\Views\Edu_ChangeTeacherLesson\Form.js" />
  5571. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\Index.cshtml" />
  5572. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\Index.js" />
  5573. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\Form.cshtml" />
  5574. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\Form.js" />
  5575. <Content Include="Areas\EducationalAdministration\Views\CdLessonType\Index.cshtml" />
  5576. <Content Include="Areas\EducationalAdministration\Views\CdLessonType\Index.js" />
  5577. <Content Include="Areas\EducationalAdministration\Views\CdLessonType\Form.cshtml" />
  5578. <Content Include="Areas\EducationalAdministration\Views\CdLessonType\Form.js" />
  5579. <Content Include="Areas\EducationalAdministration\Views\ElectiveMerge\Index.cshtml" />
  5580. <Content Include="Areas\EducationalAdministration\Views\ElectiveMerge\Index.js" />
  5581. <Content Include="Areas\EducationalAdministration\Views\ElectiveMerge\Form.cshtml" />
  5582. <Content Include="Areas\EducationalAdministration\Views\ElectiveMerge\Form.js" />
  5583. <Content Include="Areas\EducationalAdministration\Views\ElectiveMergeItem\Index.cshtml" />
  5584. <Content Include="Areas\EducationalAdministration\Views\ElectiveMergeItem\Index.js" />
  5585. <Content Include="Areas\EducationalAdministration\Views\ElectiveMergeItem\Form.cshtml" />
  5586. <Content Include="Areas\EducationalAdministration\Views\ElectiveMergeItem\Form.js" />
  5587. <Content Include="Areas\EducationalAdministration\Views\OpenLessonPlanOfElectiveDel\Index.cshtml" />
  5588. <Content Include="Areas\EducationalAdministration\Views\OpenLessonPlanOfElectiveDel\Index.js" />
  5589. <Content Include="Areas\EducationalAdministration\Views\OpenLessonPlanOfElectiveDel\Form.cshtml" />
  5590. <Content Include="Areas\EducationalAdministration\Views\OpenLessonPlanOfElectiveDel\Form.js" />
  5591. <Content Include="Areas\EducationalAdministration\Views\ElectiveMajor\Index.cshtml" />
  5592. <Content Include="Areas\EducationalAdministration\Views\ElectiveMajor\Index.js" />
  5593. <Content Include="Areas\EducationalAdministration\Views\ElectiveMajor\Form.cshtml" />
  5594. <Content Include="Areas\EducationalAdministration\Views\ElectiveMajor\Form.js" />
  5595. <Content Include="Areas\EducationalAdministration\Views\OpenLessonPlanOfElectiveChange\Index.cshtml" />
  5596. <Content Include="Areas\EducationalAdministration\Views\OpenLessonPlanOfElectiveChange\Index.js" />
  5597. <Content Include="Areas\EducationalAdministration\Views\OpenLessonPlanOfElectiveChange\Form.cshtml" />
  5598. <Content Include="Areas\EducationalAdministration\Views\OpenLessonPlanOfElectiveChange\Form.js" />
  5599. <Content Include="Areas\PersonnelManagement\Views\MP_BrowseRecord\Index.cshtml" />
  5600. <Content Include="Areas\PersonnelManagement\Views\MP_BrowseRecord\Index.js" />
  5601. <Content Include="Areas\PersonnelManagement\Views\MP_BrowseRecord\Form.cshtml" />
  5602. <Content Include="Areas\PersonnelManagement\Views\MP_BrowseRecord\Form.js" />
  5603. <Content Include="Areas\PersonnelManagement\Views\WP_WorkPlan\Index.cshtml" />
  5604. <Content Include="Areas\PersonnelManagement\Views\WP_WorkPlan\Index.js" />
  5605. <Content Include="Areas\PersonnelManagement\Views\WP_WorkPlan\Form.cshtml" />
  5606. <Content Include="Areas\PersonnelManagement\Views\WP_WorkPlan\Form.js" />
  5607. <Content Include="Areas\PersonnelManagement\Views\WP_WorkSummary\Index.cshtml" />
  5608. <Content Include="Areas\PersonnelManagement\Views\WP_WorkSummary\Index.js" />
  5609. <Content Include="Areas\PersonnelManagement\Views\WP_WorkSummary\Form.cshtml" />
  5610. <Content Include="Areas\PersonnelManagement\Views\WP_WorkSummary\Form.js" />
  5611. <Content Include="Areas\PersonnelManagement\Views\WP_Catalog\Index.cshtml" />
  5612. <Content Include="Areas\PersonnelManagement\Views\WP_Catalog\Index.js" />
  5613. <Content Include="Areas\PersonnelManagement\Views\WP_Catalog\Form.cshtml" />
  5614. <Content Include="Areas\PersonnelManagement\Views\WP_Catalog\Form.js" />
  5615. <Content Include="Areas\PersonnelManagement\Views\WP_FileList\Index.cshtml" />
  5616. <Content Include="Areas\PersonnelManagement\Views\WP_FileList\Index.js" />
  5617. <Content Include="Areas\PersonnelManagement\Views\WP_FileList\Form.cshtml" />
  5618. <Content Include="Areas\PersonnelManagement\Views\WP_FileList\Form.js" />
  5619. <Content Include="Areas\EducationalAdministration\Views\StuScoreNotPassTwo\Index.cshtml" />
  5620. <Content Include="Areas\EducationalAdministration\Views\StuScoreNotPassTwo\Index.js" />
  5621. <Content Include="Areas\EducationalAdministration\Views\StuScoreNotPassTwo\Form.cshtml" />
  5622. <Content Include="Areas\EducationalAdministration\Views\StuScoreNotPassTwo\Form.js" />
  5623. <Content Include="Areas\LR_Desktop\Views\WeChatConfig\Index.cshtml" />
  5624. <Content Include="Areas\LR_Desktop\Views\WeChatConfig\Index.js" />
  5625. <Content Include="Areas\LR_Desktop\Views\WeChatConfig\Form.cshtml" />
  5626. <Content Include="Areas\LR_Desktop\Views\WeChatConfig\Form.js" />
  5627. <Content Include="Areas\LR_Desktop\Views\WeChatTemplet\Index.cshtml" />
  5628. <Content Include="Areas\LR_Desktop\Views\WeChatTemplet\Index.js" />
  5629. <Content Include="Areas\LR_Desktop\Views\WeChatTemplet\Form.cshtml" />
  5630. <Content Include="Areas\LR_Desktop\Views\WeChatTemplet\Form.js" />
  5631. <Content Include="Areas\LR_Desktop\Views\LoginPageConfig\Index.cshtml" />
  5632. <Content Include="Areas\LR_Desktop\Views\LoginPageConfig\Index.js" />
  5633. <Content Include="Areas\LR_Desktop\Views\LoginPageConfig\Form.cshtml" />
  5634. <Content Include="Areas\LR_Desktop\Views\LoginPageConfig\Form.js" />
  5635. <Content Include="Areas\EducationalAdministration\Views\TeachingMaterial\Index.cshtml" />
  5636. <Content Include="Areas\EducationalAdministration\Views\TeachingMaterial\Index.js" />
  5637. <Content Include="Areas\EducationalAdministration\Views\TeachingMaterial\Form.cshtml" />
  5638. <Content Include="Areas\EducationalAdministration\Views\TeachingMaterial\Form.js" />
  5639. <Content Include="Areas\EducationalAdministration\Views\TMPlan\Index.cshtml" />
  5640. <Content Include="Areas\EducationalAdministration\Views\TMPlan\Index.js" />
  5641. <Content Include="Areas\EducationalAdministration\Views\TMPlan\Form.cshtml" />
  5642. <Content Include="Areas\EducationalAdministration\Views\TMPlan\Form.js" />
  5643. <Content Include="Areas\EducationalAdministration\Views\TMOrder\Index.cshtml" />
  5644. <Content Include="Areas\EducationalAdministration\Views\TMOrder\Index.js" />
  5645. <Content Include="Areas\EducationalAdministration\Views\TMOrder\Form.cshtml" />
  5646. <Content Include="Areas\EducationalAdministration\Views\TMOrder\Form.js" />
  5647. <Content Include="Areas\EducationalAdministration\Views\TMODetail\Index.cshtml" />
  5648. <Content Include="Areas\EducationalAdministration\Views\TMODetail\Index.js" />
  5649. <Content Include="Areas\EducationalAdministration\Views\TMODetail\Form.cshtml" />
  5650. <Content Include="Areas\EducationalAdministration\Views\TMODetail\Form.js" />
  5651. <Content Include="Areas\EducationalAdministration\Views\TMIn\Index.cshtml" />
  5652. <Content Include="Areas\EducationalAdministration\Views\TMIn\Index.js" />
  5653. <Content Include="Areas\EducationalAdministration\Views\TMIn\Form.cshtml" />
  5654. <Content Include="Areas\EducationalAdministration\Views\TMIn\Form.js" />
  5655. <Content Include="Areas\EducationalAdministration\Views\TMIDetail\Index.cshtml" />
  5656. <Content Include="Areas\EducationalAdministration\Views\TMIDetail\Index.js" />
  5657. <Content Include="Areas\EducationalAdministration\Views\TMIDetail\Form.cshtml" />
  5658. <Content Include="Areas\EducationalAdministration\Views\TMIDetail\Form.js" />
  5659. <Content Include="Areas\EducationalAdministration\Views\TMOut\Index.cshtml" />
  5660. <Content Include="Areas\EducationalAdministration\Views\TMOut\Index.js" />
  5661. <Content Include="Areas\EducationalAdministration\Views\TMOut\Form.cshtml" />
  5662. <Content Include="Areas\EducationalAdministration\Views\TMOut\Form.js" />
  5663. <Content Include="Areas\EducationalAdministration\Views\TMOutDetail\Index.cshtml" />
  5664. <Content Include="Areas\EducationalAdministration\Views\TMOutDetail\Index.js" />
  5665. <Content Include="Areas\EducationalAdministration\Views\TMOutDetail\Form.cshtml" />
  5666. <Content Include="Areas\EducationalAdministration\Views\TMOutDetail\Form.js" />
  5667. <Content Include="Areas\EducationalAdministration\Views\ClassAssessment\Index.cshtml" />
  5668. <Content Include="Areas\EducationalAdministration\Views\ClassAssessment\Index.js" />
  5669. <Content Include="Areas\EducationalAdministration\Views\ClassAssessment\Form.cshtml" />
  5670. <Content Include="Areas\EducationalAdministration\Views\ClassAssessment\Form.js" />
  5671. <Content Include="Areas\EducationalAdministration\Views\InternshipPlanPost\Index.cshtml" />
  5672. <Content Include="Areas\EducationalAdministration\Views\InternshipPlanPost\Index.js" />
  5673. <Content Include="Areas\EducationalAdministration\Views\InternshipPlanPost\Form.cshtml" />
  5674. <Content Include="Areas\EducationalAdministration\Views\InternshipPlanPost\Form.js" />
  5675. <Content Include="Areas\EducationalAdministration\Views\InternShipSignUp\Index.cshtml" />
  5676. <Content Include="Areas\EducationalAdministration\Views\InternShipSignUp\Index.js" />
  5677. <Content Include="Areas\EducationalAdministration\Views\InternShipSignUp\Form.cshtml" />
  5678. <Content Include="Areas\EducationalAdministration\Views\InternShipSignUp\Form.js" />
  5679. <Content Include="Areas\EducationalAdministration\Views\InternShipLog\Index.cshtml" />
  5680. <Content Include="Areas\EducationalAdministration\Views\InternShipLog\Index.js" />
  5681. <Content Include="Areas\EducationalAdministration\Views\InternShipLog\Form.cshtml" />
  5682. <Content Include="Areas\EducationalAdministration\Views\InternShipLog\Form.js" />
  5683. <Content Include="Areas\EducationalAdministration\Views\InternShipSummary\Index.cshtml" />
  5684. <Content Include="Areas\EducationalAdministration\Views\InternShipSummary\Index.js" />
  5685. <Content Include="Areas\EducationalAdministration\Views\InternShipSummary\Form.cshtml" />
  5686. <Content Include="Areas\EducationalAdministration\Views\InternShipSummary\Form.js" />
  5687. <Content Include="Areas\EducationalAdministration\Views\InternshipAchievement\Index.cshtml" />
  5688. <Content Include="Areas\EducationalAdministration\Views\InternshipAchievement\Index.js" />
  5689. <Content Include="Areas\EducationalAdministration\Views\InternshipAchievement\Form.cshtml" />
  5690. <Content Include="Areas\EducationalAdministration\Views\InternshipAchievement\Form.js" />
  5691. <Content Include="Areas\EducationalAdministration\Views\InternshipExcellent\Index.cshtml" />
  5692. <Content Include="Areas\EducationalAdministration\Views\InternshipExcellent\Index.js" />
  5693. <Content Include="Areas\EducationalAdministration\Views\InternshipExcellent\Form.cshtml" />
  5694. <Content Include="Areas\EducationalAdministration\Views\InternshipExcellent\Form.js" />
  5695. <Content Include="Areas\PersonnelManagement\Views\DutySchedule\Index.cshtml" />
  5696. <Content Include="Areas\PersonnelManagement\Views\DutySchedule\Index.js" />
  5697. <Content Include="Areas\PersonnelManagement\Views\DutySchedule\Form.cshtml" />
  5698. <Content Include="Areas\PersonnelManagement\Views\DutySchedule\Form.js" />
  5699. <Content Include="Areas\PersonnelManagement\Views\PartyMember\Index.cshtml" />
  5700. <Content Include="Areas\PersonnelManagement\Views\PartyMember\Index.js" />
  5701. <Content Include="Areas\PersonnelManagement\Views\PartyMember\Form.cshtml" />
  5702. <Content Include="Areas\PersonnelManagement\Views\PartyMember\Form.js" />
  5703. <Content Include="Areas\PersonnelManagement\Views\PMLearnArrangement\Index.cshtml" />
  5704. <Content Include="Areas\PersonnelManagement\Views\PMLearnArrangement\Index.js" />
  5705. <Content Include="Areas\PersonnelManagement\Views\PMLearnArrangement\Form.cshtml" />
  5706. <Content Include="Areas\PersonnelManagement\Views\PMLearnArrangement\Form.js" />
  5707. <Content Include="Areas\EducationalAdministration\Views\InformationSection\Index.cshtml" />
  5708. <Content Include="Areas\EducationalAdministration\Views\InformationSection\Index.js" />
  5709. <Content Include="Areas\EducationalAdministration\Views\InformationSection\Form.cshtml" />
  5710. <Content Include="Areas\EducationalAdministration\Views\InformationSection\Form.js" />
  5711. <Content Include="Areas\EducationalAdministration\Views\SealManager\Index.cshtml" />
  5712. <Content Include="Areas\EducationalAdministration\Views\SealManager\Index.js" />
  5713. <Content Include="Areas\EducationalAdministration\Views\SealManager\Form.cshtml" />
  5714. <Content Include="Areas\EducationalAdministration\Views\SealManager\Form.js" />
  5715. <Content Include="Areas\PersonnelManagement\Views\OfficialSealManager\Index.cshtml" />
  5716. <Content Include="Areas\PersonnelManagement\Views\OfficialSealManager\Index.js" />
  5717. <Content Include="Areas\PersonnelManagement\Views\OfficialSealManager\Form.cshtml" />
  5718. <Content Include="Areas\PersonnelManagement\Views\OfficialSealManager\Form.js" />
  5719. <Content Include="Areas\PersonnelManagement\Views\ConferenceRoom\Index.cshtml" />
  5720. <Content Include="Areas\PersonnelManagement\Views\ConferenceRoom\Index.js" />
  5721. <Content Include="Areas\PersonnelManagement\Views\ConferenceRoom\Form.cshtml" />
  5722. <Content Include="Areas\PersonnelManagement\Views\ConferenceRoom\Form.js" />
  5723. <Content Include="Areas\PersonnelManagement\Views\ActivityVenue\Index.cshtml" />
  5724. <Content Include="Areas\PersonnelManagement\Views\ActivityVenue\Index.js" />
  5725. <Content Include="Areas\PersonnelManagement\Views\ActivityVenue\Form.cshtml" />
  5726. <Content Include="Areas\PersonnelManagement\Views\ActivityVenue\Form.js" />
  5727. <Content Include="Areas\PersonnelManagement\Views\VenhicleManage\Index.cshtml" />
  5728. <Content Include="Areas\PersonnelManagement\Views\VenhicleManage\Index.js" />
  5729. <Content Include="Areas\PersonnelManagement\Views\VenhicleManage\Form.cshtml" />
  5730. <Content Include="Areas\PersonnelManagement\Views\VenhicleManage\Form.js" />
  5731. <Content Include="Areas\EducationalAdministration\Views\HomeWork\Index.cshtml" />
  5732. <Content Include="Areas\EducationalAdministration\Views\HomeWork\Index.js" />
  5733. <Content Include="Areas\EducationalAdministration\Views\HomeWork\Form.cshtml" />
  5734. <Content Include="Areas\EducationalAdministration\Views\HomeWork\Form.js" />
  5735. <Content Include="Areas\EducationalAdministration\Views\LeaveSchool\Index.cshtml" />
  5736. <Content Include="Areas\EducationalAdministration\Views\LeaveSchool\Index.js" />
  5737. <Content Include="Areas\LR_Desktop\Views\LoginModel\Index.cshtml" />
  5738. <Content Include="Areas\LR_Desktop\Views\LoginModel\Index.js" />
  5739. <Content Include="Areas\LR_Desktop\Views\LoginModel\Form.cshtml" />
  5740. <Content Include="Areas\LR_Desktop\Views\LoginModel\Form.js" />
  5741. <Content Include="Areas\EducationalAdministration\Views\StuMail\Index.cshtml" />
  5742. <Content Include="Areas\EducationalAdministration\Views\StuMail\Index.js" />
  5743. <Content Include="Areas\EducationalAdministration\Views\StuMail\Form.cshtml" />
  5744. <Content Include="Areas\EducationalAdministration\Views\StuMail\Form.js" />
  5745. <Content Include="Areas\PersonnelManagement\Views\ActivitySchedule\Index.cshtml" />
  5746. <Content Include="Areas\PersonnelManagement\Views\ActivitySchedule\Index.js" />
  5747. <Content Include="Areas\PersonnelManagement\Views\ActivitySchedule\Form.cshtml" />
  5748. <Content Include="Areas\PersonnelManagement\Views\ActivitySchedule\Form.js" />
  5749. <Content Include="Areas\PersonnelManagement\Views\ClassWork\Index.cshtml" />
  5750. <Content Include="Areas\PersonnelManagement\Views\ClassWork\Index.js" />
  5751. <Content Include="Areas\PersonnelManagement\Views\ClassWork\Form.cshtml" />
  5752. <Content Include="Areas\PersonnelManagement\Views\ClassWork\Form.js" />
  5753. <Content Include="Areas\PersonnelManagement\Views\EmpRepair\Index.cshtml" />
  5754. <Content Include="Areas\PersonnelManagement\Views\EmpRepair\Index.js" />
  5755. <Content Include="Areas\PersonnelManagement\Views\EmpRepair\Form.cshtml" />
  5756. <Content Include="Areas\PersonnelManagement\Views\EmpRepair\Form.js" />
  5757. <Content Include="Areas\PersonnelManagement\Views\PMOrganization\Index.cshtml" />
  5758. <Content Include="Areas\PersonnelManagement\Views\PMOrganization\Index.js" />
  5759. <Content Include="Areas\PersonnelManagement\Views\PMOrganization\Form.cshtml" />
  5760. <Content Include="Areas\PersonnelManagement\Views\PMOrganization\Form.js" />
  5761. <Content Include="Areas\PersonnelManagement\Views\PMCadre\Index.cshtml" />
  5762. <Content Include="Areas\PersonnelManagement\Views\PMCadre\Index.js" />
  5763. <Content Include="Areas\PersonnelManagement\Views\PMCadre\Form.cshtml" />
  5764. <Content Include="Areas\PersonnelManagement\Views\PMCadre\Form.js" />
  5765. <Content Include="Areas\PersonnelManagement\Views\PMMembership\Index.cshtml" />
  5766. <Content Include="Areas\PersonnelManagement\Views\PMMembership\Index.js" />
  5767. <Content Include="Areas\PersonnelManagement\Views\PMMembership\Form.cshtml" />
  5768. <Content Include="Areas\PersonnelManagement\Views\PMMembership\Form.js" />
  5769. <Content Include="Areas\PersonnelManagement\Views\PMLife\Index.cshtml" />
  5770. <Content Include="Areas\PersonnelManagement\Views\PMLife\Index.js" />
  5771. <Content Include="Areas\PersonnelManagement\Views\PMLife\Form.cshtml" />
  5772. <Content Include="Areas\PersonnelManagement\Views\PMLife\Form.js" />
  5773. <Content Include="Areas\PersonnelManagement\Views\PMDues\Index.cshtml" />
  5774. <Content Include="Areas\PersonnelManagement\Views\PMDues\Index.js" />
  5775. <Content Include="Areas\PersonnelManagement\Views\PMDues\Form.cshtml" />
  5776. <Content Include="Areas\PersonnelManagement\Views\PMDues\Form.js" />
  5777. <Content Include="Areas\PersonnelManagement\Views\SRProject\Index.cshtml" />
  5778. <Content Include="Areas\PersonnelManagement\Views\SRProject\Index.js" />
  5779. <Content Include="Areas\PersonnelManagement\Views\SRProject\Form.cshtml" />
  5780. <Content Include="Areas\PersonnelManagement\Views\SRProject\Form.js" />
  5781. <Content Include="Areas\PersonnelManagement\Views\SRWork\Index.cshtml" />
  5782. <Content Include="Areas\PersonnelManagement\Views\SRWork\Index.js" />
  5783. <Content Include="Areas\PersonnelManagement\Views\SRWork\Form.cshtml" />
  5784. <Content Include="Areas\PersonnelManagement\Views\SRWork\Form.js" />
  5785. <Content Include="Areas\PersonnelManagement\Views\SRPaper\Index.cshtml" />
  5786. <Content Include="Areas\PersonnelManagement\Views\SRPaper\Index.js" />
  5787. <Content Include="Areas\PersonnelManagement\Views\SRPaper\Form.cshtml" />
  5788. <Content Include="Areas\PersonnelManagement\Views\SRPaper\Form.js" />
  5789. <Content Include="Areas\PersonnelManagement\Views\SRConference\Index.cshtml" />
  5790. <Content Include="Areas\PersonnelManagement\Views\SRConference\Index.js" />
  5791. <Content Include="Areas\PersonnelManagement\Views\SRConference\Form.cshtml" />
  5792. <Content Include="Areas\PersonnelManagement\Views\SRConference\Form.js" />
  5793. <Content Include="Areas\PersonnelManagement\Views\SRAppraisal\Index.cshtml" />
  5794. <Content Include="Areas\PersonnelManagement\Views\SRAppraisal\Index.js" />
  5795. <Content Include="Areas\PersonnelManagement\Views\SRAppraisal\Form.cshtml" />
  5796. <Content Include="Areas\PersonnelManagement\Views\SRAppraisal\Form.js" />
  5797. <Content Include="Areas\EducationalAdministration\Views\StuCancelExam\Index.cshtml" />
  5798. <Content Include="Areas\EducationalAdministration\Views\StuCancelExam\Index.js" />
  5799. <Content Include="Areas\EducationalAdministration\Views\StuCancelExam\Form.cshtml" />
  5800. <Content Include="Areas\EducationalAdministration\Views\StuCancelExam\Form.js" />
  5801. <Content Include="Areas\PersonnelManagement\Views\LeagueActivity\Index.cshtml" />
  5802. <Content Include="Areas\PersonnelManagement\Views\LeagueActivity\Index.js" />
  5803. <Content Include="Areas\PersonnelManagement\Views\LeagueActivity\Form.cshtml" />
  5804. <Content Include="Areas\PersonnelManagement\Views\LeagueActivity\Form.js" />
  5805. <Content Include="Areas\PersonnelManagement\Views\LeagueMemberChange\Index.cshtml" />
  5806. <Content Include="Areas\PersonnelManagement\Views\LeagueMemberChange\Index.js" />
  5807. <Content Include="Areas\PersonnelManagement\Views\LeagueMemberChange\Form.cshtml" />
  5808. <Content Include="Areas\PersonnelManagement\Views\LeagueMemberChange\Form.js" />
  5809. <Content Include="Areas\PersonnelManagement\Views\LeagueMember\Index.cshtml" />
  5810. <Content Include="Areas\PersonnelManagement\Views\LeagueMember\Index.js" />
  5811. <Content Include="Areas\PersonnelManagement\Views\LeagueMember\Form.cshtml" />
  5812. <Content Include="Areas\PersonnelManagement\Views\LeagueMember\Form.js" />
  5813. <Content Include="Areas\PersonnelManagement\Views\CommunityInfo\Index.cshtml" />
  5814. <Content Include="Areas\PersonnelManagement\Views\CommunityInfo\Index.js" />
  5815. <Content Include="Areas\PersonnelManagement\Views\CommunityInfo\Form.cshtml" />
  5816. <Content Include="Areas\PersonnelManagement\Views\CommunityInfo\Form.js" />
  5817. <Content Include="Areas\PersonnelManagement\Views\CommunityMember\Index.cshtml" />
  5818. <Content Include="Areas\PersonnelManagement\Views\CommunityMember\Index.js" />
  5819. <Content Include="Areas\PersonnelManagement\Views\CommunityMember\Form.cshtml" />
  5820. <Content Include="Areas\PersonnelManagement\Views\CommunityMember\Form.js" />
  5821. <Content Include="Areas\PersonnelManagement\Views\CommunityAttendance\Index.cshtml" />
  5822. <Content Include="Areas\PersonnelManagement\Views\CommunityAttendance\Index.js" />
  5823. <Content Include="Areas\PersonnelManagement\Views\CommunityAttendance\Form.cshtml" />
  5824. <Content Include="Areas\PersonnelManagement\Views\CommunityAttendance\Form.js" />
  5825. <Content Include="Areas\EducationalAdministration\Views\StuConsumption\Index.cshtml" />
  5826. <Content Include="Areas\EducationalAdministration\Views\StuConsumption\Index.js" />
  5827. <Content Include="Areas\EducationalAdministration\Views\StuConsumption\Form.cshtml" />
  5828. <Content Include="Areas\EducationalAdministration\Views\StuConsumption\Form.js" />
  5829. <Content Include="Areas\PersonnelManagement\Views\EpidemicSituation\Index.cshtml" />
  5830. <Content Include="Areas\PersonnelManagement\Views\EpidemicSituation\Index.js" />
  5831. <Content Include="Areas\PersonnelManagement\Views\EpidemicSituation\Form.cshtml" />
  5832. <Content Include="Areas\PersonnelManagement\Views\EpidemicSituation\Form.js" />
  5833. <Content Include="Areas\PersonnelManagement\Views\ContactsDetails\Index.cshtml" />
  5834. <Content Include="Areas\PersonnelManagement\Views\ContactsDetails\Index.js" />
  5835. <Content Include="Areas\PersonnelManagement\Views\ContactsDetails\Form.cshtml" />
  5836. <Content Include="Areas\PersonnelManagement\Views\ContactsDetails\Form.js" />
  5837. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonButt\Index.cshtml" />
  5838. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonButt\Index.js" />
  5839. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonButt\Form.cshtml" />
  5840. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonButt\Form.js" />
  5841. <Content Include="Areas\PersonnelManagement\Views\TeacherRecruitPlan\Index.cshtml" />
  5842. <Content Include="Areas\PersonnelManagement\Views\TeacherRecruitPlan\Index.js" />
  5843. <Content Include="Areas\PersonnelManagement\Views\TeacherRecruitPlan\Form.cshtml" />
  5844. <Content Include="Areas\PersonnelManagement\Views\TeacherRecruitPlan\Form.js" />
  5845. <Content Include="Areas\PersonnelManagement\Views\TeacherCancelEmploy\Index.cshtml" />
  5846. <Content Include="Areas\PersonnelManagement\Views\TeacherCancelEmploy\Index.js" />
  5847. <Content Include="Areas\PersonnelManagement\Views\TeacherCancelEmploy\Form.cshtml" />
  5848. <Content Include="Areas\PersonnelManagement\Views\TeacherCancelEmploy\Form.js" />
  5849. <Content Include="Areas\PersonnelManagement\Views\TeacherJobAssessment\Index.cshtml" />
  5850. <Content Include="Areas\PersonnelManagement\Views\TeacherJobAssessment\Index.js" />
  5851. <Content Include="Areas\PersonnelManagement\Views\TeacherJobAssessment\Form.cshtml" />
  5852. <Content Include="Areas\PersonnelManagement\Views\TeacherJobAssessment\Form.js" />
  5853. <Content Include="Areas\PersonnelManagement\Views\TeacherPartTimeJob\Index.cshtml" />
  5854. <Content Include="Areas\PersonnelManagement\Views\TeacherPartTimeJob\Index.js" />
  5855. <Content Include="Areas\PersonnelManagement\Views\TeacherPartTimeJob\Form.cshtml" />
  5856. <Content Include="Areas\PersonnelManagement\Views\TeacherPartTimeJob\Form.js" />
  5857. <Content Include="Areas\PersonnelManagement\Views\TeacherEncourgement\Index.cshtml" />
  5858. <Content Include="Areas\PersonnelManagement\Views\TeacherEncourgement\Index.js" />
  5859. <Content Include="Areas\PersonnelManagement\Views\TeacherEncourgement\Form.cshtml" />
  5860. <Content Include="Areas\PersonnelManagement\Views\TeacherEncourgement\Form.js" />
  5861. <Content Include="Areas\PersonnelManagement\Views\TeacherChange\Index.cshtml" />
  5862. <Content Include="Areas\PersonnelManagement\Views\TeacherChange\Index.js" />
  5863. <Content Include="Areas\PersonnelManagement\Views\TeacherChange\Form.cshtml" />
  5864. <Content Include="Areas\PersonnelManagement\Views\TeacherChange\Form.js" />
  5865. <Content Include="Areas\PersonnelManagement\Views\EpiPassPlace\Index.cshtml" />
  5866. <Content Include="Areas\PersonnelManagement\Views\EpiPassPlace\Index.js" />
  5867. <Content Include="Areas\PersonnelManagement\Views\EpiPassPlace\Form.cshtml" />
  5868. <Content Include="Areas\PersonnelManagement\Views\EpiPassPlace\Form.js" />
  5869. <Content Include="Areas\PersonnelManagement\Views\EpiPeopleDetails\Index.cshtml" />
  5870. <Content Include="Areas\PersonnelManagement\Views\EpiPeopleDetails\Index.js" />
  5871. <Content Include="Areas\PersonnelManagement\Views\EpiPeopleDetails\Form.cshtml" />
  5872. <Content Include="Areas\PersonnelManagement\Views\EpiPeopleDetails\Form.js" />
  5873. <Content Include="Areas\PersonnelManagement\Views\LaborUnionPlan\Index.cshtml" />
  5874. <Content Include="Areas\PersonnelManagement\Views\LaborUnionPlan\Index.js" />
  5875. <Content Include="Areas\PersonnelManagement\Views\LaborUnionPlan\Form.cshtml" />
  5876. <Content Include="Areas\PersonnelManagement\Views\LaborUnionPlan\Form.js" />
  5877. <Content Include="Areas\PersonnelManagement\Views\SchoolWomenManagement\Index.cshtml" />
  5878. <Content Include="Areas\PersonnelManagement\Views\SchoolWomenManagement\Index.js" />
  5879. <Content Include="Areas\PersonnelManagement\Views\SchoolWomenManagement\Form.cshtml" />
  5880. <Content Include="Areas\PersonnelManagement\Views\SchoolWomenManagement\Form.js" />
  5881. <Content Include="Areas\LR_Desktop\Views\ThematicManagement\Index.cshtml" />
  5882. <Content Include="Areas\LR_Desktop\Views\ThematicManagement\Index.js" />
  5883. <Content Include="Areas\LR_Desktop\Views\ThematicManagement\Form.cshtml" />
  5884. <Content Include="Areas\LR_Desktop\Views\ThematicManagement\Form.js" />
  5885. <Content Include="Areas\LR_Desktop\Views\DTTitle\Index.cshtml" />
  5886. <Content Include="Areas\LR_Desktop\Views\DTTitle\Index.js" />
  5887. <Content Include="Areas\LR_Desktop\Views\DTTitle\Form.cshtml" />
  5888. <Content Include="Areas\LR_Desktop\Views\DTTitle\Form.js" />
  5889. <Content Include="Areas\LogisticsManagement\Views\BC_EmpViolationRecord\Index.cshtml" />
  5890. <Content Include="Areas\LogisticsManagement\Views\BC_EmpViolationRecord\Index.js" />
  5891. <Content Include="Areas\LogisticsManagement\Views\BC_EmpViolationRecord\Form.cshtml" />
  5892. <Content Include="Areas\LogisticsManagement\Views\BC_EmpViolationRecord\Form.js" />
  5893. <Content Include="Areas\LogisticsManagement\Views\BC_SecurityManagement\Index.cshtml" />
  5894. <Content Include="Areas\LogisticsManagement\Views\BC_SecurityManagement\Index.js" />
  5895. <Content Include="Areas\LogisticsManagement\Views\BC_SecurityManagement\Form.cshtml" />
  5896. <Content Include="Areas\LogisticsManagement\Views\BC_SecurityManagement\Form.js" />
  5897. <Content Include="Areas\LogisticsManagement\Views\BC_Blacklist\Index.cshtml" />
  5898. <Content Include="Areas\LogisticsManagement\Views\BC_Blacklist\Index.js" />
  5899. <Content Include="Areas\LogisticsManagement\Views\BC_Blacklist\Form.cshtml" />
  5900. <Content Include="Areas\LogisticsManagement\Views\BC_Blacklist\Form.js" />
  5901. <Content Include="Areas\LogisticsManagement\Views\BC_GreenAndClean\Index.cshtml" />
  5902. <Content Include="Areas\LogisticsManagement\Views\BC_GreenAndClean\Index.js" />
  5903. <Content Include="Areas\LogisticsManagement\Views\BC_GreenAndClean\Form.cshtml" />
  5904. <Content Include="Areas\LogisticsManagement\Views\BC_GreenAndClean\Form.js" />
  5905. <Content Include="Areas\LogisticsManagement\Views\BC_ShopManagement\Index.cshtml" />
  5906. <Content Include="Areas\LogisticsManagement\Views\BC_ShopManagement\Index.js" />
  5907. <Content Include="Areas\LogisticsManagement\Views\BC_ShopManagement\Form.cshtml" />
  5908. <Content Include="Areas\LogisticsManagement\Views\BC_ShopManagement\Form.js" />
  5909. <Content Include="Areas\LogisticsManagement\Views\BC_ShopGoods\Index.cshtml" />
  5910. <Content Include="Areas\LogisticsManagement\Views\BC_ShopGoods\Index.js" />
  5911. <Content Include="Areas\LogisticsManagement\Views\BC_ShopGoods\Form.cshtml" />
  5912. <Content Include="Areas\LogisticsManagement\Views\BC_ShopGoods\Form.js" />
  5913. <Content Include="Areas\LogisticsManagement\Views\BC_ShopPurchaseRecord\Index.cshtml" />
  5914. <Content Include="Areas\LogisticsManagement\Views\BC_ShopPurchaseRecord\Index.js" />
  5915. <Content Include="Areas\LogisticsManagement\Views\BC_ShopPurchaseRecord\Form.cshtml" />
  5916. <Content Include="Areas\LogisticsManagement\Views\BC_ShopPurchaseRecord\Form.js" />
  5917. <Content Include="Areas\LogisticsManagement\Views\BC_ShopSaleRecord\Index.cshtml" />
  5918. <Content Include="Areas\LogisticsManagement\Views\BC_ShopSaleRecord\Index.js" />
  5919. <Content Include="Areas\LogisticsManagement\Views\BC_ShopSaleRecord\Form.cshtml" />
  5920. <Content Include="Areas\LogisticsManagement\Views\BC_ShopSaleRecord\Form.js" />
  5921. <Content Include="Areas\LogisticsManagement\Views\BC_HotelManagement\Index.cshtml" />
  5922. <Content Include="Areas\LogisticsManagement\Views\BC_HotelManagement\Index.js" />
  5923. <Content Include="Areas\LogisticsManagement\Views\BC_HotelManagement\Form.cshtml" />
  5924. <Content Include="Areas\LogisticsManagement\Views\BC_HotelManagement\Form.js" />
  5925. <Content Include="Areas\LogisticsManagement\Views\BC_RestaurantManagement\Index.cshtml" />
  5926. <Content Include="Areas\LogisticsManagement\Views\BC_RestaurantManagement\Index.js" />
  5927. <Content Include="Areas\LogisticsManagement\Views\BC_RestaurantManagement\Form.cshtml" />
  5928. <Content Include="Areas\LogisticsManagement\Views\BC_RestaurantManagement\Form.js" />
  5929. <Content Include="Areas\LogisticsManagement\Views\BC_RecipesMangement\Index.cshtml" />
  5930. <Content Include="Areas\LogisticsManagement\Views\BC_RecipesMangement\Index.js" />
  5931. <Content Include="Areas\LogisticsManagement\Views\BC_RecipesMangement\Form.cshtml" />
  5932. <Content Include="Areas\LogisticsManagement\Views\BC_RecipesMangement\Form.js" />
  5933. <Content Include="Areas\LogisticsManagement\Views\BC_Ingredients\Index.cshtml" />
  5934. <Content Include="Areas\LogisticsManagement\Views\BC_Ingredients\Index.js" />
  5935. <Content Include="Areas\LogisticsManagement\Views\BC_Ingredients\Form.cshtml" />
  5936. <Content Include="Areas\LogisticsManagement\Views\BC_Ingredients\Form.js" />
  5937. <Content Include="Areas\LogisticsManagement\Views\BC_RegisterIn\Index.cshtml" />
  5938. <Content Include="Areas\LogisticsManagement\Views\BC_RegisterIn\Index.js" />
  5939. <Content Include="Areas\LogisticsManagement\Views\BC_RegisterIn\Form.cshtml" />
  5940. <Content Include="Areas\LogisticsManagement\Views\BC_RegisterIn\Form.js" />
  5941. <Content Include="Areas\LogisticsManagement\Views\BC_RegisterOut\Index.cshtml" />
  5942. <Content Include="Areas\LogisticsManagement\Views\BC_RegisterOut\Index.js" />
  5943. <Content Include="Areas\LogisticsManagement\Views\BC_RegisterOut\Form.cshtml" />
  5944. <Content Include="Areas\LogisticsManagement\Views\BC_RegisterOut\Form.js" />
  5945. <Content Include="Areas\LogisticsManagement\Views\BC_ISPManagement\Index.cshtml" />
  5946. <Content Include="Areas\LogisticsManagement\Views\BC_ISPManagement\Index.js" />
  5947. <Content Include="Areas\LogisticsManagement\Views\BC_ISPManagement\Form.cshtml" />
  5948. <Content Include="Areas\LogisticsManagement\Views\BC_ISPManagement\Form.js" />
  5949. <Content Include="Areas\LogisticsManagement\Views\BC_ISPShow\Index.cshtml" />
  5950. <Content Include="Areas\LogisticsManagement\Views\BC_ISPShow\Index.js" />
  5951. <Content Include="Areas\LogisticsManagement\Views\BC_ISPShow\Form.cshtml" />
  5952. <Content Include="Areas\LogisticsManagement\Views\BC_ISPShow\Form.js" />
  5953. <Content Include="Areas\PersonnelManagement\Views\PartyMemberEncouragement\Index.cshtml" />
  5954. <Content Include="Areas\PersonnelManagement\Views\PartyMemberEncouragement\Index.js" />
  5955. <Content Include="Areas\PersonnelManagement\Views\PartyMemberEncouragement\Form.cshtml" />
  5956. <Content Include="Areas\PersonnelManagement\Views\PartyMemberEncouragement\Form.js" />
  5957. <Content Include="Areas\PersonnelManagement\Views\PartyMemberPunishment\Index.cshtml" />
  5958. <Content Include="Areas\PersonnelManagement\Views\PartyMemberPunishment\Index.js" />
  5959. <Content Include="Areas\PersonnelManagement\Views\PartyMemberPunishment\Form.cshtml" />
  5960. <Content Include="Areas\PersonnelManagement\Views\PartyMemberPunishment\Form.js" />
  5961. <Content Include="Areas\PersonnelManagement\Views\PMMembershipChange\Index.cshtml" />
  5962. <Content Include="Areas\PersonnelManagement\Views\PMMembershipChange\Index.js" />
  5963. <Content Include="Areas\PersonnelManagement\Views\PMMembershipChange\Form.cshtml" />
  5964. <Content Include="Areas\PersonnelManagement\Views\PMMembershipChange\Form.js" />
  5965. <Content Include="Areas\PersonnelManagement\Views\PartyMemberTrain\Index.cshtml" />
  5966. <Content Include="Areas\PersonnelManagement\Views\PartyMemberTrain\Index.js" />
  5967. <Content Include="Areas\PersonnelManagement\Views\PartyMemberTrain\Form.cshtml" />
  5968. <Content Include="Areas\PersonnelManagement\Views\PartyMemberTrain\Form.js" />
  5969. <Content Include="Areas\PersonnelManagement\Views\LeagueMemberDues\Index.cshtml" />
  5970. <Content Include="Areas\PersonnelManagement\Views\LeagueMemberDues\Index.js" />
  5971. <Content Include="Areas\PersonnelManagement\Views\LeagueMemberDues\Form.cshtml" />
  5972. <Content Include="Areas\PersonnelManagement\Views\LeagueMemberDues\Form.js" />
  5973. <Content Include="Areas\PersonnelManagement\Views\LeagueMemberEncouragement\Index.cshtml" />
  5974. <Content Include="Areas\PersonnelManagement\Views\LeagueMemberEncouragement\Index.js" />
  5975. <Content Include="Areas\PersonnelManagement\Views\LeagueMemberEncouragement\Form.cshtml" />
  5976. <Content Include="Areas\PersonnelManagement\Views\LeagueMemberEncouragement\Form.js" />
  5977. <Content Include="Areas\PersonnelManagement\Views\LeagueMemberPunishment\Index.cshtml" />
  5978. <Content Include="Areas\PersonnelManagement\Views\LeagueMemberPunishment\Index.js" />
  5979. <Content Include="Areas\PersonnelManagement\Views\LeagueMemberPunishment\Form.cshtml" />
  5980. <Content Include="Areas\PersonnelManagement\Views\LeagueMemberPunishment\Form.js" />
  5981. <Content Include="Areas\PersonnelManagement\Views\LeagueMemberTrain\Index.cshtml" />
  5982. <Content Include="Areas\PersonnelManagement\Views\LeagueMemberTrain\Index.js" />
  5983. <Content Include="Areas\PersonnelManagement\Views\LeagueMemberTrain\Form.cshtml" />
  5984. <Content Include="Areas\PersonnelManagement\Views\LeagueMemberTrain\Form.js" />
  5985. <Content Include="Areas\PersonnelManagement\Views\VolunteerActivity\Index.cshtml" />
  5986. <Content Include="Areas\PersonnelManagement\Views\VolunteerActivity\Index.js" />
  5987. <Content Include="Areas\PersonnelManagement\Views\VolunteerActivity\Form.cshtml" />
  5988. <Content Include="Areas\PersonnelManagement\Views\VolunteerActivity\Form.js" />
  5989. <Content Include="Areas\PersonnelManagement\Views\LaborUnionOrganization\Index.cshtml" />
  5990. <Content Include="Areas\PersonnelManagement\Views\LaborUnionOrganization\Index.js" />
  5991. <Content Include="Areas\PersonnelManagement\Views\LaborUnionOrganization\Form.cshtml" />
  5992. <Content Include="Areas\PersonnelManagement\Views\LaborUnionOrganization\Form.js" />
  5993. <Content Include="Areas\PersonnelManagement\Views\LaborUnionMember\Index.cshtml" />
  5994. <Content Include="Areas\PersonnelManagement\Views\LaborUnionMember\Index.js" />
  5995. <Content Include="Areas\PersonnelManagement\Views\LaborUnionMember\Form.cshtml" />
  5996. <Content Include="Areas\PersonnelManagement\Views\LaborUnionMember\Form.js" />
  5997. <Content Include="Areas\PersonnelManagement\Views\LaborUnionMemberEncouragement\Index.cshtml" />
  5998. <Content Include="Areas\PersonnelManagement\Views\LaborUnionMemberEncouragement\Index.js" />
  5999. <Content Include="Areas\PersonnelManagement\Views\LaborUnionMemberEncouragement\Form.cshtml" />
  6000. <Content Include="Areas\PersonnelManagement\Views\LaborUnionMemberEncouragement\Form.js" />
  6001. <Content Include="Areas\PersonnelManagement\Views\LaborUnionFeesIncome\Index.cshtml" />
  6002. <Content Include="Areas\PersonnelManagement\Views\LaborUnionFeesIncome\Index.js" />
  6003. <Content Include="Areas\PersonnelManagement\Views\LaborUnionFeesIncome\Form.cshtml" />
  6004. <Content Include="Areas\PersonnelManagement\Views\LaborUnionFeesIncome\Form.js" />
  6005. <Content Include="Areas\PersonnelManagement\Views\LaborUnionFeesExpend\Index.cshtml" />
  6006. <Content Include="Areas\PersonnelManagement\Views\LaborUnionFeesExpend\Index.js" />
  6007. <Content Include="Areas\PersonnelManagement\Views\LaborUnionFeesExpend\Form.cshtml" />
  6008. <Content Include="Areas\PersonnelManagement\Views\LaborUnionFeesExpend\Form.js" />
  6009. <Content Include="Areas\PersonnelManagement\Views\LaborUnionWelfare\Index.cshtml" />
  6010. <Content Include="Areas\PersonnelManagement\Views\LaborUnionWelfare\Index.js" />
  6011. <Content Include="Areas\PersonnelManagement\Views\LaborUnionWelfare\Form.cshtml" />
  6012. <Content Include="Areas\PersonnelManagement\Views\LaborUnionWelfare\Form.js" />
  6013. <Content Include="Areas\PersonnelManagement\Views\LaborUnionWelfareApply\Index.cshtml" />
  6014. <Content Include="Areas\PersonnelManagement\Views\LaborUnionWelfareApply\Index.js" />
  6015. <Content Include="Areas\PersonnelManagement\Views\LaborUnionWelfareApply\Form.cshtml" />
  6016. <Content Include="Areas\PersonnelManagement\Views\LaborUnionWelfareApply\Form.js" />
  6017. <Content Include="Areas\PersonnelManagement\Views\LaborUnionActivity\Index.cshtml" />
  6018. <Content Include="Areas\PersonnelManagement\Views\LaborUnionActivity\Index.js" />
  6019. <Content Include="Areas\PersonnelManagement\Views\LaborUnionActivity\Form.cshtml" />
  6020. <Content Include="Areas\PersonnelManagement\Views\LaborUnionActivity\Form.js" />
  6021. <Content Include="Areas\PersonnelManagement\Views\WorkStudyPosition\Index.cshtml" />
  6022. <Content Include="Areas\PersonnelManagement\Views\WorkStudyPosition\Index.js" />
  6023. <Content Include="Areas\PersonnelManagement\Views\WorkStudyPosition\Form.cshtml" />
  6024. <Content Include="Areas\PersonnelManagement\Views\WorkStudyPosition\Form.js" />
  6025. <Content Include="Areas\PersonnelManagement\Views\WorkStudyPositionApply\Index.cshtml" />
  6026. <Content Include="Areas\PersonnelManagement\Views\WorkStudyPositionApply\Index.js" />
  6027. <Content Include="Areas\PersonnelManagement\Views\WorkStudyPositionApply\Form.cshtml" />
  6028. <Content Include="Areas\PersonnelManagement\Views\WorkStudyPositionApply\Form.js" />
  6029. <Content Include="Areas\PersonnelManagement\Views\WorkStudyPayMoney\Index.cshtml" />
  6030. <Content Include="Areas\PersonnelManagement\Views\WorkStudyPayMoney\Index.js" />
  6031. <Content Include="Areas\PersonnelManagement\Views\WorkStudyPayMoney\Form.cshtml" />
  6032. <Content Include="Areas\PersonnelManagement\Views\WorkStudyPayMoney\Form.js" />
  6033. <Content Include="Areas\PersonnelManagement\Views\ScholarshipManagement\Index.cshtml" />
  6034. <Content Include="Areas\PersonnelManagement\Views\ScholarshipManagement\Index.js" />
  6035. <Content Include="Areas\PersonnelManagement\Views\ScholarshipManagement\Form.cshtml" />
  6036. <Content Include="Areas\PersonnelManagement\Views\ScholarshipManagement\Form.js" />
  6037. <Content Include="Areas\PersonnelManagement\Views\FundManagement\Index.cshtml" />
  6038. <Content Include="Areas\PersonnelManagement\Views\FundManagement\Index.js" />
  6039. <Content Include="Areas\PersonnelManagement\Views\FundManagement\Form.cshtml" />
  6040. <Content Include="Areas\PersonnelManagement\Views\FundManagement\Form.js" />
  6041. <Content Include="Areas\PersonnelManagement\Views\BC_PublishManagement\Index.cshtml" />
  6042. <Content Include="Areas\PersonnelManagement\Views\BC_PublishManagement\Index.js" />
  6043. <Content Include="Areas\PersonnelManagement\Views\BC_PublishManagement\Form.cshtml" />
  6044. <Content Include="Areas\PersonnelManagement\Views\BC_PublishManagement\Form.js" />
  6045. <Content Include="Areas\PersonnelManagement\Views\BC_PopQuiz\Index.cshtml" />
  6046. <Content Include="Areas\PersonnelManagement\Views\BC_PopQuiz\Index.js" />
  6047. <Content Include="Areas\PersonnelManagement\Views\BC_PopQuiz\Form.cshtml" />
  6048. <Content Include="Areas\PersonnelManagement\Views\BC_PopQuiz\Form.js" />
  6049. <Content Include="Areas\PersonnelManagement\Views\BC_ElectronicMaterialMangement\Index.cshtml" />
  6050. <Content Include="Areas\PersonnelManagement\Views\BC_ElectronicMaterialMangement\Index.js" />
  6051. <Content Include="Areas\PersonnelManagement\Views\BC_ElectronicMaterialMangement\Form.cshtml" />
  6052. <Content Include="Areas\PersonnelManagement\Views\BC_ElectronicMaterialMangement\Form.js" />
  6053. <Content Include="Areas\PersonnelManagement\Views\BC_MicroClassSystem\Index.cshtml" />
  6054. <Content Include="Areas\PersonnelManagement\Views\BC_MicroClassSystem\Index.js" />
  6055. <Content Include="Areas\PersonnelManagement\Views\BC_MicroClassSystem\Form.cshtml" />
  6056. <Content Include="Areas\PersonnelManagement\Views\BC_MicroClassSystem\Form.js" />
  6057. <Content Include="Areas\PersonnelManagement\Views\BC_MindMapping\Index.cshtml" />
  6058. <Content Include="Areas\PersonnelManagement\Views\BC_MindMapping\Index.js" />
  6059. <Content Include="Areas\PersonnelManagement\Views\BC_MindMapping\Form.cshtml" />
  6060. <Content Include="Areas\PersonnelManagement\Views\BC_MindMapping\Form.js" />
  6061. <Content Include="Areas\PersonnelManagement\Views\BC_DiscussionResults\Index.cshtml" />
  6062. <Content Include="Areas\PersonnelManagement\Views\BC_DiscussionResults\Index.js" />
  6063. <Content Include="Areas\PersonnelManagement\Views\BC_DiscussionResults\Form.cshtml" />
  6064. <Content Include="Areas\PersonnelManagement\Views\BC_DiscussionResults\Form.js" />
  6065. <Content Include="Areas\PersonnelManagement\Views\BC_EvaluationInformation\Index.cshtml" />
  6066. <Content Include="Areas\PersonnelManagement\Views\BC_EvaluationInformation\Index.js" />
  6067. <Content Include="Areas\PersonnelManagement\Views\BC_EvaluationInformation\Form.cshtml" />
  6068. <Content Include="Areas\PersonnelManagement\Views\BC_EvaluationInformation\Form.js" />
  6069. <Content Include="Areas\PersonnelManagement\Views\BC_ExcellentCourse\Index.cshtml" />
  6070. <Content Include="Areas\PersonnelManagement\Views\BC_ExcellentCourse\Index.js" />
  6071. <Content Include="Areas\PersonnelManagement\Views\BC_ExcellentCourse\Form.cshtml" />
  6072. <Content Include="Areas\PersonnelManagement\Views\BC_ExcellentCourse\Form.js" />
  6073. <Content Include="Areas\PersonnelManagement\Views\BC_PracticeTemplate\Index.cshtml" />
  6074. <Content Include="Areas\PersonnelManagement\Views\BC_PracticeTemplate\Index.js" />
  6075. <Content Include="Areas\PersonnelManagement\Views\BC_PracticeTemplate\Form.cshtml" />
  6076. <Content Include="Areas\PersonnelManagement\Views\BC_PracticeTemplate\Form.js" />
  6077. <Content Include="Areas\PersonnelManagement\Views\BC_InternshipFile\Index.cshtml" />
  6078. <Content Include="Areas\PersonnelManagement\Views\BC_InternshipFile\Index.js" />
  6079. <Content Include="Areas\PersonnelManagement\Views\BC_InternshipFile\Form.cshtml" />
  6080. <Content Include="Areas\PersonnelManagement\Views\BC_InternshipFile\Form.js" />
  6081. <Content Include="Areas\PersonnelManagement\Views\BC_EffectEvaluation\Index.cshtml" />
  6082. <Content Include="Areas\PersonnelManagement\Views\BC_EffectEvaluation\Index.js" />
  6083. <Content Include="Areas\PersonnelManagement\Views\BC_EffectEvaluation\Form.cshtml" />
  6084. <Content Include="Areas\PersonnelManagement\Views\BC_EffectEvaluation\Form.js" />
  6085. <Content Include="Areas\EducationalAdministration\Views\StuMoralEducation\Index.cshtml" />
  6086. <Content Include="Areas\EducationalAdministration\Views\StuMoralEducation\Index.js" />
  6087. <Content Include="Areas\EducationalAdministration\Views\StuMoralEducation\Form.cshtml" />
  6088. <Content Include="Areas\EducationalAdministration\Views\StuMoralEducation\Form.js" />
  6089. <Content Include="Areas\EducationalAdministration\Views\InsuranceHandle\Index.cshtml" />
  6090. <Content Include="Areas\EducationalAdministration\Views\InsuranceHandle\Index.js" />
  6091. <Content Include="Areas\EducationalAdministration\Views\InsuranceHandle\Form.cshtml" />
  6092. <Content Include="Areas\EducationalAdministration\Views\InsuranceHandle\Form.js" />
  6093. <Content Include="Areas\EducationalAdministration\Views\InsuranceClaim\Index.cshtml" />
  6094. <Content Include="Areas\EducationalAdministration\Views\InsuranceClaim\Index.js" />
  6095. <Content Include="Areas\EducationalAdministration\Views\InsuranceClaim\Form.cshtml" />
  6096. <Content Include="Areas\EducationalAdministration\Views\InsuranceClaim\Form.js" />
  6097. <Content Include="Areas\PersonnelManagement\Views\BC_CostManagement\Index.cshtml" />
  6098. <Content Include="Areas\PersonnelManagement\Views\BC_CostManagement\Index.js" />
  6099. <Content Include="Areas\PersonnelManagement\Views\BC_CostManagement\Form.cshtml" />
  6100. <Content Include="Areas\PersonnelManagement\Views\BC_CostManagement\Form.js" />
  6101. <Content Include="Areas\PersonnelManagement\Views\BC_Examination\Index.cshtml" />
  6102. <Content Include="Areas\PersonnelManagement\Views\BC_Examination\Index.js" />
  6103. <Content Include="Areas\PersonnelManagement\Views\BC_Examination\Form.cshtml" />
  6104. <Content Include="Areas\PersonnelManagement\Views\BC_Examination\Form.js" />
  6105. <Content Include="Areas\PersonnelManagement\Views\BC_TrainingApplication\Index.cshtml" />
  6106. <Content Include="Areas\PersonnelManagement\Views\BC_TrainingApplication\Index.js" />
  6107. <Content Include="Areas\PersonnelManagement\Views\BC_TrainingApplication\Form.cshtml" />
  6108. <Content Include="Areas\PersonnelManagement\Views\BC_TrainingApplication\Form.js" />
  6109. <Content Include="Areas\PersonnelManagement\Views\BC_StudentEnrolment\Index.cshtml" />
  6110. <Content Include="Areas\PersonnelManagement\Views\BC_StudentEnrolment\Index.js" />
  6111. <Content Include="Areas\PersonnelManagement\Views\BC_StudentEnrolment\Form.cshtml" />
  6112. <Content Include="Areas\PersonnelManagement\Views\BC_StudentEnrolment\Form.js" />
  6113. <Content Include="Areas\EducationalAdministration\Views\MoralEducationSet\Index.cshtml" />
  6114. <Content Include="Areas\EducationalAdministration\Views\MoralEducationSet\Index.js" />
  6115. <Content Include="Areas\EducationalAdministration\Views\MoralEducationSet\Form.cshtml" />
  6116. <Content Include="Areas\EducationalAdministration\Views\MoralEducationSet\Form.js" />
  6117. <Content Include="Areas\EducationalAdministration\Views\ClassMoralEducation\Index.cshtml" />
  6118. <Content Include="Areas\EducationalAdministration\Views\ClassMoralEducation\Index.js" />
  6119. <Content Include="Areas\EducationalAdministration\Views\ClassMoralEducation\Form.cshtml" />
  6120. <Content Include="Areas\EducationalAdministration\Views\ClassMoralEducation\Form.js" />
  6121. <Content Include="Areas\EducationalAdministration\Views\ClassDataHandIn\Index.cshtml" />
  6122. <Content Include="Areas\EducationalAdministration\Views\ClassDataHandIn\Index.js" />
  6123. <Content Include="Areas\EducationalAdministration\Views\ClassDataHandIn\Form.cshtml" />
  6124. <Content Include="Areas\EducationalAdministration\Views\ClassDataHandIn\Form.js" />
  6125. <Content Include="Areas\PersonnelManagement\Views\CommunityActivity\Index.cshtml" />
  6126. <Content Include="Areas\PersonnelManagement\Views\CommunityActivity\Index.js" />
  6127. <Content Include="Areas\PersonnelManagement\Views\CommunityActivity\Form.cshtml" />
  6128. <Content Include="Areas\PersonnelManagement\Views\CommunityActivity\Form.js" />
  6129. <Content Include="Areas\PersonnelManagement\Views\CommunityMemberEncouragement\Index.cshtml" />
  6130. <Content Include="Areas\PersonnelManagement\Views\CommunityMemberEncouragement\Index.js" />
  6131. <Content Include="Areas\PersonnelManagement\Views\CommunityMemberEncouragement\Form.cshtml" />
  6132. <Content Include="Areas\PersonnelManagement\Views\CommunityMemberEncouragement\Form.js" />
  6133. <Content Include="Areas\PersonnelManagement\Views\SRProjectApply\Index.cshtml" />
  6134. <Content Include="Areas\PersonnelManagement\Views\SRProjectApply\Index.js" />
  6135. <Content Include="Areas\PersonnelManagement\Views\SRProjectApply\Form.cshtml" />
  6136. <Content Include="Areas\PersonnelManagement\Views\SRProjectApply\Form.js" />
  6137. <Content Include="Areas\PersonnelManagement\Views\SRProjectSetUp\Index.cshtml" />
  6138. <Content Include="Areas\PersonnelManagement\Views\SRProjectSetUp\Index.js" />
  6139. <Content Include="Areas\PersonnelManagement\Views\SRProjectSetUp\Form.cshtml" />
  6140. <Content Include="Areas\PersonnelManagement\Views\SRProjectSetUp\Form.js" />
  6141. <Content Include="Areas\PersonnelManagement\Views\SRFeesIncome\Index.cshtml" />
  6142. <Content Include="Areas\PersonnelManagement\Views\SRFeesIncome\Index.js" />
  6143. <Content Include="Areas\PersonnelManagement\Views\SRFeesIncome\Form.cshtml" />
  6144. <Content Include="Areas\PersonnelManagement\Views\SRFeesIncome\Form.js" />
  6145. <Content Include="Areas\PersonnelManagement\Views\SRFeesExpend\Index.cshtml" />
  6146. <Content Include="Areas\PersonnelManagement\Views\SRFeesExpend\Index.js" />
  6147. <Content Include="Areas\PersonnelManagement\Views\SRFeesExpend\Form.cshtml" />
  6148. <Content Include="Areas\PersonnelManagement\Views\SRFeesExpend\Form.js" />
  6149. <Content Include="Areas\PersonnelManagement\Views\SRProcess\Index.cshtml" />
  6150. <Content Include="Areas\PersonnelManagement\Views\SRProcess\Index.js" />
  6151. <Content Include="Areas\PersonnelManagement\Views\SRProcess\Form.cshtml" />
  6152. <Content Include="Areas\PersonnelManagement\Views\SRProcess\Form.js" />
  6153. <Content Include="Areas\PersonnelManagement\Views\SRFinal\Index.cshtml" />
  6154. <Content Include="Areas\PersonnelManagement\Views\SRFinal\Index.js" />
  6155. <Content Include="Areas\PersonnelManagement\Views\SRFinal\Form.cshtml" />
  6156. <Content Include="Areas\PersonnelManagement\Views\SRFinal\Form.js" />
  6157. <Content Include="Areas\PersonnelManagement\Views\SRAchievement\Index.cshtml" />
  6158. <Content Include="Areas\PersonnelManagement\Views\SRAchievement\Index.js" />
  6159. <Content Include="Areas\PersonnelManagement\Views\SRAchievement\Form.cshtml" />
  6160. <Content Include="Areas\PersonnelManagement\Views\SRAchievement\Form.js" />
  6161. <Content Include="Areas\PersonnelManagement\Views\SRWinning\Index.cshtml" />
  6162. <Content Include="Areas\PersonnelManagement\Views\SRWinning\Index.js" />
  6163. <Content Include="Areas\PersonnelManagement\Views\SRWinning\Form.cshtml" />
  6164. <Content Include="Areas\PersonnelManagement\Views\SRWinning\Form.js" />
  6165. <Content Include="Areas\PersonnelManagement\Views\SRWorkload\Index.cshtml" />
  6166. <Content Include="Areas\PersonnelManagement\Views\SRWorkload\Index.js" />
  6167. <Content Include="Areas\PersonnelManagement\Views\SRWorkload\Form.cshtml" />
  6168. <Content Include="Areas\PersonnelManagement\Views\SRWorkload\Form.js" />
  6169. <Content Include="Areas\PersonnelManagement\Views\SREncouragement\Index.cshtml" />
  6170. <Content Include="Areas\PersonnelManagement\Views\SREncouragement\Index.js" />
  6171. <Content Include="Areas\PersonnelManagement\Views\SREncouragement\Form.cshtml" />
  6172. <Content Include="Areas\PersonnelManagement\Views\SREncouragement\Form.js" />
  6173. <Content Include="Areas\PersonnelManagement\Views\SRDocument\Index.cshtml" />
  6174. <Content Include="Areas\PersonnelManagement\Views\SRDocument\Index.js" />
  6175. <Content Include="Areas\PersonnelManagement\Views\SRDocument\Form.cshtml" />
  6176. <Content Include="Areas\PersonnelManagement\Views\SRDocument\Form.js" />
  6177. <Content Include="Areas\PersonnelManagement\Views\MeetingManagement\Index.cshtml" />
  6178. <Content Include="Areas\PersonnelManagement\Views\MeetingManagement\Index.js" />
  6179. <Content Include="Areas\PersonnelManagement\Views\MeetingManagement\Form.cshtml" />
  6180. <Content Include="Areas\PersonnelManagement\Views\MeetingManagement\Form.js" />
  6181. <Content Include="Areas\PersonnelManagement\Views\TeacherPassport\Index.cshtml" />
  6182. <Content Include="Areas\PersonnelManagement\Views\TeacherPassport\Index.js" />
  6183. <Content Include="Areas\PersonnelManagement\Views\TeacherPassport\Form.cshtml" />
  6184. <Content Include="Areas\PersonnelManagement\Views\TeacherPassport\Form.js" />
  6185. <Content Include="Areas\PersonnelManagement\Views\TeacherGoAbroad\Index.cshtml" />
  6186. <Content Include="Areas\PersonnelManagement\Views\TeacherGoAbroad\Index.js" />
  6187. <Content Include="Areas\PersonnelManagement\Views\TeacherGoAbroad\Form.cshtml" />
  6188. <Content Include="Areas\PersonnelManagement\Views\TeacherGoAbroad\Form.js" />
  6189. <Content Include="Areas\PersonnelManagement\Views\Sal_SalaryTemplate\Index.cshtml" />
  6190. <Content Include="Areas\PersonnelManagement\Views\Sal_SalaryTemplate\Index.js" />
  6191. <Content Include="Areas\PersonnelManagement\Views\Sal_SalaryTemplate\Form.cshtml" />
  6192. <Content Include="Areas\PersonnelManagement\Views\Sal_SalaryTemplate\Form.js" />
  6193. <Content Include="Areas\PersonnelManagement\Views\Sal_SalaryTemplateItem\Index.cshtml" />
  6194. <Content Include="Areas\PersonnelManagement\Views\Sal_SalaryTemplateItem\Index.js" />
  6195. <Content Include="Areas\PersonnelManagement\Views\Sal_SalaryTemplateItem\Form.cshtml" />
  6196. <Content Include="Areas\PersonnelManagement\Views\Sal_SalaryTemplateItem\Form.js" />
  6197. <Content Include="Areas\PersonnelManagement\Views\Sal_UserSalary\Index.cshtml" />
  6198. <Content Include="Areas\PersonnelManagement\Views\Sal_UserSalary\Index.js" />
  6199. <Content Include="Areas\PersonnelManagement\Views\Sal_UserSalary\Form.cshtml" />
  6200. <Content Include="Areas\PersonnelManagement\Views\Sal_UserSalary\Form.js" />
  6201. <Content Include="Areas\PersonnelManagement\Views\Sal_UserSalaryItem\Index.cshtml" />
  6202. <Content Include="Areas\PersonnelManagement\Views\Sal_UserSalaryItem\Index.js" />
  6203. <Content Include="Areas\PersonnelManagement\Views\Sal_UserSalaryItem\Form.cshtml" />
  6204. <Content Include="Areas\PersonnelManagement\Views\Sal_UserSalaryItem\Form.js" />
  6205. <Content Include="Areas\EducationalAdministration\Views\PM_EducationExperience\Index.cshtml" />
  6206. <Content Include="Areas\EducationalAdministration\Views\PM_EducationExperience\Index.js" />
  6207. <Content Include="Areas\EducationalAdministration\Views\PM_EducationExperience\Form.cshtml" />
  6208. <Content Include="Areas\EducationalAdministration\Views\PM_EducationExperience\Form.js" />
  6209. <Content Include="Areas\EducationalAdministration\Views\PM_TechnicalPost\Index.cshtml" />
  6210. <Content Include="Areas\EducationalAdministration\Views\PM_TechnicalPost\Index.js" />
  6211. <Content Include="Areas\EducationalAdministration\Views\PM_TechnicalPost\Form.cshtml" />
  6212. <Content Include="Areas\EducationalAdministration\Views\PM_TechnicalPost\Form.js" />
  6213. <Content Include="Areas\EducationalAdministration\Views\PM_WorkerTechnology\Index.cshtml" />
  6214. <Content Include="Areas\EducationalAdministration\Views\PM_WorkerTechnology\Index.js" />
  6215. <Content Include="Areas\EducationalAdministration\Views\PM_WorkerTechnology\Form.cshtml" />
  6216. <Content Include="Areas\EducationalAdministration\Views\PM_WorkerTechnology\Form.js" />
  6217. <Content Include="Areas\EducationalAdministration\Views\PM_Resume\Index.cshtml" />
  6218. <Content Include="Areas\EducationalAdministration\Views\PM_Resume\Index.js" />
  6219. <Content Include="Areas\EducationalAdministration\Views\PM_Resume\Form.cshtml" />
  6220. <Content Include="Areas\EducationalAdministration\Views\PM_Resume\Form.js" />
  6221. <Content Include="Areas\EducationalAdministration\Views\PM_FamilySituation\Index.cshtml" />
  6222. <Content Include="Areas\EducationalAdministration\Views\PM_FamilySituation\Index.js" />
  6223. <Content Include="Areas\EducationalAdministration\Views\PM_FamilySituation\Form.cshtml" />
  6224. <Content Include="Areas\EducationalAdministration\Views\PM_FamilySituation\Form.js" />
  6225. <Content Include="Areas\EducationalAdministration\Views\Thermography\Index.cshtml" />
  6226. <Content Include="Areas\EducationalAdministration\Views\Thermography\Index.js" />
  6227. <Content Include="Areas\EducationalAdministration\Views\Thermography\Form.cshtml" />
  6228. <Content Include="Areas\EducationalAdministration\Views\Thermography\Form.js" />
  6229. <Content Include="Areas\AdmissionsPlatform\Views\AP_OnlineUserInfo\Index.cshtml" />
  6230. <Content Include="Areas\AdmissionsPlatform\Views\AP_OnlineUserInfo\Index.js" />
  6231. <Content Include="Areas\AdmissionsPlatform\Views\AP_OnlineUserInfo\Form.cshtml" />
  6232. <Content Include="Areas\AdmissionsPlatform\Views\AP_OnlineUserInfo\Form.js" />
  6233. <Content Include="Areas\AdmissionsPlatform\Views\AP_OnlineStudentInfo\Index.cshtml" />
  6234. <Content Include="Areas\AdmissionsPlatform\Views\AP_OnlineStudentInfo\Index.js" />
  6235. <Content Include="Areas\AdmissionsPlatform\Views\AP_OnlineStudentInfo\Form.cshtml" />
  6236. <Content Include="Areas\AdmissionsPlatform\Views\AP_OnlineStudentInfo\Form.js" />
  6237. <Content Include="Areas\PersonnelManagement\Views\TeacherPunishment\Index.cshtml" />
  6238. <Content Include="Areas\PersonnelManagement\Views\TeacherPunishment\Index.js" />
  6239. <Content Include="Areas\PersonnelManagement\Views\TeacherPunishment\Form.cshtml" />
  6240. <Content Include="Areas\PersonnelManagement\Views\TeacherPunishment\Form.js" />
  6241. <Content Include="Areas\PersonnelManagement\Views\ContractCategory\Index.cshtml" />
  6242. <Content Include="Areas\PersonnelManagement\Views\ContractCategory\Index.js" />
  6243. <Content Include="Areas\PersonnelManagement\Views\ContractCategory\Form.cshtml" />
  6244. <Content Include="Areas\PersonnelManagement\Views\ContractCategory\Form.js" />
  6245. <Content Include="Areas\PersonnelManagement\Views\ContractManagement\Index.cshtml" />
  6246. <Content Include="Areas\PersonnelManagement\Views\ContractManagement\Index.js" />
  6247. <Content Include="Areas\PersonnelManagement\Views\ContractManagement\Form.cshtml" />
  6248. <Content Include="Areas\PersonnelManagement\Views\ContractManagement\Form.js" />
  6249. <Content Include="Areas\EducationalAdministration\Views\SignUpAboutOnline\Index.cshtml" />
  6250. <Content Include="Areas\EducationalAdministration\Views\SignUpAboutOnline\Index.js" />
  6251. <Content Include="Areas\EducationalAdministration\Views\SignUpAboutOnline\Form.cshtml" />
  6252. <Content Include="Areas\EducationalAdministration\Views\SignUpAboutOnline\Form.js" />
  6253. <Content Include="Areas\EducationalAdministration\Views\SignUpAboutTrain\Index.cshtml" />
  6254. <Content Include="Areas\EducationalAdministration\Views\SignUpAboutTrain\Index.js" />
  6255. <Content Include="Areas\EducationalAdministration\Views\SignUpAboutTrain\Form.cshtml" />
  6256. <Content Include="Areas\EducationalAdministration\Views\SignUpAboutTrain\Form.js" />
  6257. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasicTwo\Index.cshtml" />
  6258. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasicTwo\Index.js" />
  6259. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasicTwo\Form.cshtml" />
  6260. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasicTwo\Form.js" />
  6261. <Content Include="Areas\StudentWork\Views\SW_Ask_Type\Index.cshtml" />
  6262. <Content Include="Areas\StudentWork\Views\SW_Ask_Type\Index.js" />
  6263. <Content Include="Areas\StudentWork\Views\SW_Ask_Type\Form.cshtml" />
  6264. <Content Include="Areas\StudentWork\Views\SW_Ask_Type\Form.js" />
  6265. <Content Include="Areas\LogisticsManagement\Views\APStuHealthRecords\Index.cshtml" />
  6266. <Content Include="Areas\LogisticsManagement\Views\APStuHealthRecords\Index.js" />
  6267. <Content Include="Areas\LogisticsManagement\Views\APStuHealthRecords\Form.cshtml" />
  6268. <Content Include="Areas\LogisticsManagement\Views\APStuHealthRecords\Form.js" />
  6269. <Content Include="Areas\LogisticsManagement\Views\MSRMilitaryServiceRegistration\Index.cshtml" />
  6270. <Content Include="Areas\LogisticsManagement\Views\MSRMilitaryServiceRegistration\Index.js" />
  6271. <Content Include="Areas\LogisticsManagement\Views\MSRMilitaryServiceRegistration\Form.cshtml" />
  6272. <Content Include="Areas\LogisticsManagement\Views\MSRMilitaryServiceRegistration\Form.js" />
  6273. <Content Include="Areas\LogisticsManagement\Views\MSRIntentionManagement\Index.cshtml" />
  6274. <Content Include="Areas\LogisticsManagement\Views\MSRIntentionManagement\Index.js" />
  6275. <Content Include="Areas\LogisticsManagement\Views\MSRIntentionManagement\Form.cshtml" />
  6276. <Content Include="Areas\LogisticsManagement\Views\MSRIntentionManagement\Form.js" />
  6277. <Content Include="Areas\LogisticsManagement\Views\MSRMilitaryRecord\Index.cshtml" />
  6278. <Content Include="Areas\LogisticsManagement\Views\MSRMilitaryRecord\Index.js" />
  6279. <Content Include="Areas\LogisticsManagement\Views\MSRMilitaryRecord\Form.cshtml" />
  6280. <Content Include="Areas\LogisticsManagement\Views\MSRMilitaryRecord\Form.js" />
  6281. <Content Include="Areas\EducationalAdministration\Views\StuInfoGraduate\Index.cshtml" />
  6282. <Content Include="Areas\EducationalAdministration\Views\StuInfoGraduate\Index.js" />
  6283. <Content Include="Areas\EducationalAdministration\Views\StuInfoGraduate\Form.cshtml" />
  6284. <Content Include="Areas\EducationalAdministration\Views\StuInfoGraduate\Form.js" />
  6285. <Content Include="Areas\LogisticsManagement\Views\ListenClassRecord\Index.cshtml" />
  6286. <Content Include="Areas\LogisticsManagement\Views\ListenClassRecord\Index.js" />
  6287. <Content Include="Areas\LogisticsManagement\Views\ListenClassRecord\Form.cshtml" />
  6288. <Content Include="Areas\LogisticsManagement\Views\ListenClassRecord\Form.js" />
  6289. <Content Include="Areas\StudentWork\Views\SW_HolidayGo\Index.cshtml" />
  6290. <Content Include="Areas\StudentWork\Views\SW_HolidayGo\Index.js" />
  6291. <Content Include="Areas\StudentWork\Views\SW_HolidayGo\Form.cshtml" />
  6292. <Content Include="Areas\StudentWork\Views\SW_HolidayGo\Form.js" />
  6293. <Content Include="Areas\StudentWork\Views\SW_Ask_NotHaveAll\Index.cshtml" />
  6294. <Content Include="Areas\StudentWork\Views\SW_Ask_NotHaveAll\Index.js" />
  6295. <Content Include="Areas\StudentWork\Views\SW_Ask_NotHaveAll\Form.cshtml" />
  6296. <Content Include="Areas\StudentWork\Views\SW_Ask_NotHaveAll\Form.js" />
  6297. <Content Include="Areas\StudentWork\Views\SW_Ask_NotHaveAll_Type\Index.cshtml" />
  6298. <Content Include="Areas\StudentWork\Views\SW_Ask_NotHaveAll_Type\Index.js" />
  6299. <Content Include="Areas\StudentWork\Views\SW_Ask_NotHaveAll_Type\Form.cshtml" />
  6300. <Content Include="Areas\StudentWork\Views\SW_Ask_NotHaveAll_Type\Form.js" />
  6301. <Content Include="Areas\AdmissionsPlatform\Views\AP_IntegralSet\Index.cshtml" />
  6302. <Content Include="Areas\AdmissionsPlatform\Views\AP_IntegralSet\Index.js" />
  6303. <Content Include="Areas\AdmissionsPlatform\Views\AP_IntegralSet\Form.cshtml" />
  6304. <Content Include="Areas\AdmissionsPlatform\Views\AP_IntegralSet\Form.js" />
  6305. <Content Include="Areas\AdmissionsPlatform\Views\AP_IntegralDetails\Index.cshtml" />
  6306. <Content Include="Areas\AdmissionsPlatform\Views\AP_IntegralDetails\Index.js" />
  6307. <Content Include="Areas\AdmissionsPlatform\Views\AP_IntegralDetails\Form.cshtml" />
  6308. <Content Include="Areas\AdmissionsPlatform\Views\AP_IntegralDetails\Form.js" />
  6309. <Content Include="Areas\AdmissionsPlatform\Views\AP_TeacherBankCard\Index.cshtml" />
  6310. <Content Include="Areas\AdmissionsPlatform\Views\AP_TeacherBankCard\Index.js" />
  6311. <Content Include="Areas\AdmissionsPlatform\Views\AP_TeacherBankCard\Form.cshtml" />
  6312. <Content Include="Areas\AdmissionsPlatform\Views\AP_TeacherBankCard\Form.js" />
  6313. <Content Include="Areas\AdmissionsPlatform\Views\AP_CompanyPaymentAccount\Index.cshtml" />
  6314. <Content Include="Areas\AdmissionsPlatform\Views\AP_CompanyPaymentAccount\Index.js" />
  6315. <Content Include="Areas\AdmissionsPlatform\Views\AP_CompanyPaymentAccount\Form.cshtml" />
  6316. <Content Include="Areas\AdmissionsPlatform\Views\AP_CompanyPaymentAccount\Form.js" />
  6317. <Content Include="Areas\EducationalAdministration\Views\BCdCultureDegree\Index.cshtml" />
  6318. <Content Include="Areas\EducationalAdministration\Views\BCdCultureDegree\Index.js" />
  6319. <Content Include="Areas\EducationalAdministration\Views\BCdCultureDegree\Form.cshtml" />
  6320. <Content Include="Areas\EducationalAdministration\Views\BCdCultureDegree\Form.js" />
  6321. <Content Include="Areas\LogisticsManagement\Views\EditonManagement\Index.cshtml" />
  6322. <Content Include="Areas\LogisticsManagement\Views\EditonManagement\Index.js" />
  6323. <Content Include="Areas\LogisticsManagement\Views\EditonManagement\Form.cshtml" />
  6324. <Content Include="Areas\LogisticsManagement\Views\EditonManagement\Form.js" />
  6325. <Content Include="Areas\EducationalAdministration\Views\StuEnrollAmountRecord\Index.cshtml" />
  6326. <Content Include="Areas\EducationalAdministration\Views\StuEnrollAmountRecord\Index.js" />
  6327. <Content Include="Areas\EducationalAdministration\Views\StuEnrollAmountRecord\Form.cshtml" />
  6328. <Content Include="Areas\EducationalAdministration\Views\StuEnrollAmountRecord\Form.js" />
  6329. <Content Include="Areas\LogisticsManagement\Views\AQ_XJ\Index.cshtml" />
  6330. <Content Include="Areas\LogisticsManagement\Views\AQ_XJ\Index.js" />
  6331. <Content Include="Areas\LogisticsManagement\Views\AQ_XJ\Form.cshtml" />
  6332. <Content Include="Areas\LogisticsManagement\Views\AQ_XJ\Form.js" />
  6333. <Content Include="Areas\LogisticsManagement\Views\AJ_FY\Index.cshtml" />
  6334. <Content Include="Areas\LogisticsManagement\Views\AJ_FY\Index.js" />
  6335. <Content Include="Areas\LogisticsManagement\Views\AJ_FY\Form.cshtml" />
  6336. <Content Include="Areas\LogisticsManagement\Views\AJ_FY\Form.js" />
  6337. <Content Include="Areas\LogisticsManagement\Views\SupportManagement\Index.cshtml" />
  6338. <Content Include="Areas\LogisticsManagement\Views\SupportManagement\Index.js" />
  6339. <Content Include="Areas\LogisticsManagement\Views\SupportManagement\Form.cshtml" />
  6340. <Content Include="Areas\LogisticsManagement\Views\SupportManagement\Form.js" />
  6341. <Content Include="Areas\EducationalAdministration\Views\PBPost\Index.cshtml" />
  6342. <Content Include="Areas\EducationalAdministration\Views\PBPost\Index.js" />
  6343. <Content Include="Areas\EducationalAdministration\Views\PBPost\Form.cshtml" />
  6344. <Content Include="Areas\EducationalAdministration\Views\PBPost\Form.js" />
  6345. <Content Include="Areas\PersonnelManagement\Views\PMMeeting\Index.cshtml" />
  6346. <Content Include="Areas\PersonnelManagement\Views\PMMeeting\Index.js" />
  6347. <Content Include="Areas\PersonnelManagement\Views\PMMeeting\Form.cshtml" />
  6348. <Content Include="Areas\PersonnelManagement\Views\PMMeeting\Form.js" />
  6349. <Content Include="Areas\PersonnelManagement\Views\PMActivists\Index.cshtml" />
  6350. <Content Include="Areas\PersonnelManagement\Views\PMActivists\Index.js" />
  6351. <Content Include="Areas\PersonnelManagement\Views\PMActivists\Form.cshtml" />
  6352. <Content Include="Areas\PersonnelManagement\Views\PMActivists\Form.js" />
  6353. <Content Include="Areas\LogisticsManagement\Views\Acc_CleanManagement\Index.cshtml" />
  6354. <Content Include="Areas\LogisticsManagement\Views\Acc_CleanManagement\Index.js" />
  6355. <Content Include="Areas\LogisticsManagement\Views\Acc_CleanManagement\Form.cshtml" />
  6356. <Content Include="Areas\LogisticsManagement\Views\Acc_CleanManagement\Form.js" />
  6357. <Content Include="Areas\LogisticsManagement\Views\Acc_Reward\Index.cshtml" />
  6358. <Content Include="Areas\LogisticsManagement\Views\Acc_Reward\Index.js" />
  6359. <Content Include="Areas\LogisticsManagement\Views\Acc_Reward\Form.cshtml" />
  6360. <Content Include="Areas\LogisticsManagement\Views\Acc_Reward\Form.js" />
  6361. <Content Include="Areas\LogisticsManagement\Views\Acc_Punishment\Index.cshtml" />
  6362. <Content Include="Areas\LogisticsManagement\Views\Acc_Punishment\Index.js" />
  6363. <Content Include="Areas\LogisticsManagement\Views\Acc_Punishment\Form.cshtml" />
  6364. <Content Include="Areas\LogisticsManagement\Views\Acc_Punishment\Form.js" />
  6365. <Content Include="Areas\LogisticsManagement\Views\Acc_GoodsDemage\Index.cshtml" />
  6366. <Content Include="Areas\LogisticsManagement\Views\Acc_GoodsDemage\Index.js" />
  6367. <Content Include="Areas\LogisticsManagement\Views\Acc_GoodsDemage\Form.cshtml" />
  6368. <Content Include="Areas\LogisticsManagement\Views\Acc_GoodsDemage\Form.js" />
  6369. <Content Include="Areas\EducationalAdministration\Views\StuInfoFreshSus\Index.cshtml" />
  6370. <Content Include="Areas\EducationalAdministration\Views\StuInfoFreshSus\Index.js" />
  6371. <Content Include="Areas\EducationalAdministration\Views\StuInfoFreshSus\Form.cshtml" />
  6372. <Content Include="Areas\EducationalAdministration\Views\StuInfoFreshSus\Form.js" />
  6373. <Content Include="Areas\EducationalAdministration\Views\BC_JobRequirement\Index.cshtml" />
  6374. <Content Include="Areas\EducationalAdministration\Views\BC_JobRequirement\Index.js" />
  6375. <Content Include="Areas\EducationalAdministration\Views\BC_JobRequirement\Form.cshtml" />
  6376. <Content Include="Areas\EducationalAdministration\Views\BC_JobRequirement\Form.js" />
  6377. <Content Include="Areas\EducationalAdministration\Views\BC_PersonnelRequiement\Index.cshtml" />
  6378. <Content Include="Areas\EducationalAdministration\Views\BC_PersonnelRequiement\Index.js" />
  6379. <Content Include="Areas\EducationalAdministration\Views\BC_PersonnelRequiement\Form.cshtml" />
  6380. <Content Include="Areas\EducationalAdministration\Views\BC_PersonnelRequiement\Form.js" />
  6381. <Content Include="Areas\EducationalAdministration\Views\BC_TrainingLecture\Index.cshtml" />
  6382. <Content Include="Areas\EducationalAdministration\Views\BC_TrainingLecture\Index.js" />
  6383. <Content Include="Areas\EducationalAdministration\Views\BC_TrainingLecture\Form.cshtml" />
  6384. <Content Include="Areas\EducationalAdministration\Views\BC_TrainingLecture\Form.js" />
  6385. <Content Include="Areas\EducationalAdministration\Views\BC_SupplyAndDemandMetting\Index.cshtml" />
  6386. <Content Include="Areas\EducationalAdministration\Views\BC_SupplyAndDemandMetting\Index.js" />
  6387. <Content Include="Areas\EducationalAdministration\Views\BC_SupplyAndDemandMetting\Form.cshtml" />
  6388. <Content Include="Areas\EducationalAdministration\Views\BC_SupplyAndDemandMetting\Form.js" />
  6389. <Content Include="Areas\EducationalAdministration\Views\BC_SpecialDestination\Index.cshtml" />
  6390. <Content Include="Areas\EducationalAdministration\Views\BC_SpecialDestination\Index.js" />
  6391. <Content Include="Areas\EducationalAdministration\Views\BC_SpecialDestination\Form.cshtml" />
  6392. <Content Include="Areas\EducationalAdministration\Views\BC_SpecialDestination\Form.js" />
  6393. <Content Include="Areas\EducationalAdministration\Views\BC_EPI\Index.cshtml" />
  6394. <Content Include="Areas\EducationalAdministration\Views\BC_EPI\Index.js" />
  6395. <Content Include="Areas\EducationalAdministration\Views\BC_EPI\Form.cshtml" />
  6396. <Content Include="Areas\EducationalAdministration\Views\BC_EPI\Form.js" />
  6397. <Content Include="Areas\LogisticsManagement\Views\ADR_Record\Index.cshtml" />
  6398. <Content Include="Areas\LogisticsManagement\Views\ADR_Record\Index.js" />
  6399. <Content Include="Areas\LogisticsManagement\Views\ADR_Record\Form.cshtml" />
  6400. <Content Include="Areas\LogisticsManagement\Views\ADR_Record\Form.js" />
  6401. <Content Include="Areas\EducationalAdministration\Views\ADR_Device\Index.cshtml" />
  6402. <Content Include="Areas\EducationalAdministration\Views\ADR_Device\Index.js" />
  6403. <Content Include="Areas\EducationalAdministration\Views\ADR_Device\Form.cshtml" />
  6404. <Content Include="Areas\EducationalAdministration\Views\ADR_Device\Form.js" />
  6405. <Content Include="Areas\EducationalAdministration\Views\ADR_DeviceLog\Index.cshtml" />
  6406. <Content Include="Areas\EducationalAdministration\Views\ADR_DeviceLog\Index.js" />
  6407. <Content Include="Areas\EducationalAdministration\Views\ADR_DeviceLog\Form.cshtml" />
  6408. <Content Include="Areas\EducationalAdministration\Views\ADR_DeviceLog\Form.js" />
  6409. <Content Include="Areas\PersonnelManagement\Views\ADR_Restriction\Index.cshtml" />
  6410. <Content Include="Areas\PersonnelManagement\Views\ADR_Restriction\Index.js" />
  6411. <Content Include="Areas\PersonnelManagement\Views\ADR_Restriction\Form.cshtml" />
  6412. <Content Include="Areas\PersonnelManagement\Views\ADR_Restriction\Form.js" />
  6413. <Content Include="Areas\PersonnelManagement\Views\ADR_AddApply\Index.cshtml" />
  6414. <Content Include="Areas\PersonnelManagement\Views\ADR_AddApply\Index.js" />
  6415. <Content Include="Areas\PersonnelManagement\Views\ADR_AddApply\Form.cshtml" />
  6416. <Content Include="Areas\PersonnelManagement\Views\ADR_AddApply\Form.js" />
  6417. <Content Include="Areas\AssetManagementSystem\Views\Ass_Acceptance\Index.cshtml" />
  6418. <Content Include="Areas\AssetManagementSystem\Views\Ass_Acceptance\Index.js" />
  6419. <Content Include="Areas\AssetManagementSystem\Views\Ass_Acceptance\Form.cshtml" />
  6420. <Content Include="Areas\AssetManagementSystem\Views\Ass_Acceptance\Form.js" />
  6421. <Content Include="Areas\EducationalAdministration\Views\LoginUserBind\Index.cshtml" />
  6422. <Content Include="Areas\EducationalAdministration\Views\LoginUserBind\Index.js" />
  6423. <Content Include="Areas\EducationalAdministration\Views\LoginUserBind\Form.cshtml" />
  6424. <Content Include="Areas\EducationalAdministration\Views\Sys_InformationPush\Index.cshtml" />
  6425. <Content Include="Areas\EducationalAdministration\Views\Sys_InformationPush\Index.js" />
  6426. <Content Include="Areas\EducationalAdministration\Views\Sys_InformationPush\Form.cshtml" />
  6427. <Content Include="Areas\EducationalAdministration\Views\Sys_InformationPush\Form.js" />
  6428. <Content Include="Areas\EducationalAdministration\Views\StuLeaveManagement\Index.cshtml" />
  6429. <Content Include="Areas\EducationalAdministration\Views\StuLeaveManagement\Index.js" />
  6430. <Content Include="Areas\EducationalAdministration\Views\StuLeaveManagement\Form.cshtml" />
  6431. <Content Include="Areas\EducationalAdministration\Views\StuLeaveManagement\Form.js" />
  6432. <Content Include="Areas\EducationalAdministration\Views\EATalentTrain\Index.cshtml" />
  6433. <Content Include="Areas\EducationalAdministration\Views\EATalentTrain\Index.js" />
  6434. <Content Include="Areas\EducationalAdministration\Views\EATalentTrain\Form.cshtml" />
  6435. <Content Include="Areas\EducationalAdministration\Views\EATalentTrain\Form.js" />
  6436. <Content Include="Areas\EducationalAdministration\Views\Sys_DefaultPwdConfig\Index.cshtml" />
  6437. <Content Include="Areas\EducationalAdministration\Views\Sys_DefaultPwdConfig\Index.js" />
  6438. <Content Include="Areas\EducationalAdministration\Views\Sys_DefaultPwdConfig\Form.cshtml" />
  6439. <Content Include="Areas\EducationalAdministration\Views\Sys_DefaultPwdConfig\Form.js" />
  6440. <Content Include="Areas\PersonnelManagement\Views\MeetingSignInRecord\Index.cshtml" />
  6441. <Content Include="Areas\PersonnelManagement\Views\MeetingSignInRecord\Index.js" />
  6442. <Content Include="Areas\PersonnelManagement\Views\MeetingSignInRecord\Form.cshtml" />
  6443. <Content Include="Areas\PersonnelManagement\Views\MeetingSignInRecord\Form.js" />
  6444. <Content Include="Areas\PersonnelManagement\Views\MeetingMinutes\Index.cshtml" />
  6445. <Content Include="Areas\PersonnelManagement\Views\MeetingMinutes\Index.js" />
  6446. <Content Include="Areas\PersonnelManagement\Views\MeetingMinutes\Form.cshtml" />
  6447. <Content Include="Areas\PersonnelManagement\Views\MeetingMinutes\Form.js" />
  6448. <Content Include="Areas\PersonnelManagement\Views\ResearchGER\Index.cshtml" />
  6449. <Content Include="Areas\PersonnelManagement\Views\ResearchGER\Index.js" />
  6450. <Content Include="Areas\PersonnelManagement\Views\ResearchGER\Form.cshtml" />
  6451. <Content Include="Areas\PersonnelManagement\Views\ResearchGER\Form.js" />
  6452. <Content Include="Areas\PersonnelManagement\Views\ReleaseMetting\Index.cshtml" />
  6453. <Content Include="Areas\PersonnelManagement\Views\ReleaseMetting\Index.js" />
  6454. <Content Include="Areas\PersonnelManagement\Views\ReleaseMetting\Form.cshtml" />
  6455. <Content Include="Areas\PersonnelManagement\Views\ReleaseMetting\Form.js" />
  6456. <Content Include="Areas\PersonnelManagement\Views\StudyGuide\Index.cshtml" />
  6457. <Content Include="Areas\PersonnelManagement\Views\StudyGuide\Index.js" />
  6458. <Content Include="Areas\PersonnelManagement\Views\StudyGuide\Form.cshtml" />
  6459. <Content Include="Areas\PersonnelManagement\Views\StudyGuide\Form.js" />
  6460. <Content Include="Areas\PersonnelManagement\Views\ResourceImport\Index.cshtml" />
  6461. <Content Include="Areas\PersonnelManagement\Views\ResourceImport\Index.js" />
  6462. <Content Include="Areas\PersonnelManagement\Views\ResourceImport\Form.cshtml" />
  6463. <Content Include="Areas\PersonnelManagement\Views\ResourceImport\Form.js" />
  6464. <Content Include="Areas\LR_Desktop\Views\SSO_Drag_CollectManage\Index.cshtml" />
  6465. <Content Include="Areas\LR_Desktop\Views\SSO_Drag_CollectManage\Index.js" />
  6466. <Content Include="Areas\LR_Desktop\Views\SSO_Drag_CollectManage\Form.cshtml" />
  6467. <Content Include="Areas\LR_Desktop\Views\SSO_Drag_CollectManage\Form.js" />
  6468. <Content Include="Areas\CustomFunction\Views\SRProjectLevel\Index.cshtml" />
  6469. <Content Include="Areas\CustomFunction\Views\SRProjectLevel\Index.js" />
  6470. <Content Include="Areas\CustomFunction\Views\SRProjectLevel\Form.cshtml" />
  6471. <Content Include="Areas\CustomFunction\Views\SRProjectLevel\Form.js" />
  6472. <Content Include="Areas\CustomFunction\Views\SRProjectType\Index.cshtml" />
  6473. <Content Include="Areas\CustomFunction\Views\SRProjectType\Index.js" />
  6474. <Content Include="Areas\CustomFunction\Views\SRProjectType\Form.cshtml" />
  6475. <Content Include="Areas\CustomFunction\Views\SRProjectType\Form.js" />
  6476. <Content Include="Areas\CustomFunction\Views\SRProjectPlan\Index.cshtml" />
  6477. <Content Include="Areas\CustomFunction\Views\SRProjectPlan\Index.js" />
  6478. <Content Include="Areas\CustomFunction\Views\SRProjectPlan\Form.cshtml" />
  6479. <Content Include="Areas\CustomFunction\Views\SRProjectPlan\Form.js" />
  6480. <Content Include="Areas\CustomFunction\Views\SRProjectWork\Index.cshtml" />
  6481. <Content Include="Areas\CustomFunction\Views\SRProjectWork\Index.js" />
  6482. <Content Include="Areas\CustomFunction\Views\SRProjectWork\Form.cshtml" />
  6483. <Content Include="Areas\CustomFunction\Views\SRProjectWork\Form.js" />
  6484. <Content Include="Areas\EducationalAdministration\Views\StuScholarshipManage\Index.cshtml" />
  6485. <Content Include="Areas\EducationalAdministration\Views\StuScholarshipManage\Index.js" />
  6486. <Content Include="Areas\EducationalAdministration\Views\StuScholarshipManage\Form.cshtml" />
  6487. <Content Include="Areas\EducationalAdministration\Views\StuScholarshipManage\Form.js" />
  6488. <Content Include="Areas\EducationalAdministration\Views\StuSubsideManage\Index.cshtml" />
  6489. <Content Include="Areas\EducationalAdministration\Views\StuSubsideManage\Index.js" />
  6490. <Content Include="Areas\EducationalAdministration\Views\StuSubsideManage\Form.cshtml" />
  6491. <Content Include="Areas\EducationalAdministration\Views\StuSubsideManage\Form.js" />
  6492. <Content Include="Areas\CustomFunction\Views\SRProjectBasic\Index.cshtml" />
  6493. <Content Include="Areas\CustomFunction\Views\SRProjectBasic\Index.js" />
  6494. <Content Include="Areas\CustomFunction\Views\SRProjectBasic\Form.cshtml" />
  6495. <Content Include="Areas\CustomFunction\Views\SRProjectBasic\Form.js" />
  6496. <Content Include="Areas\CustomFunction\Views\SRProjectPeople\Index.cshtml" />
  6497. <Content Include="Areas\CustomFunction\Views\SRProjectPeople\Index.js" />
  6498. <Content Include="Areas\CustomFunction\Views\SRProjectPeople\Form.cshtml" />
  6499. <Content Include="Areas\CustomFunction\Views\SRProjectPeople\Form.js" />
  6500. <Content Include="Areas\CustomFunction\Views\SRProjectAchievement\Index.cshtml" />
  6501. <Content Include="Areas\CustomFunction\Views\SRProjectAchievement\Index.js" />
  6502. <Content Include="Areas\CustomFunction\Views\SRProjectAchievement\Form.cshtml" />
  6503. <Content Include="Areas\CustomFunction\Views\SRProjectAchievement\Form.js" />
  6504. <Content Include="Areas\CustomFunction\Views\PaperManage\Index.cshtml" />
  6505. <Content Include="Areas\CustomFunction\Views\PaperManage\Index.js" />
  6506. <Content Include="Areas\CustomFunction\Views\PaperManage\Form.cshtml" />
  6507. <Content Include="Areas\CustomFunction\Views\PaperManage\Form.js" />
  6508. <Content Include="Areas\CustomFunction\Views\FundsTypeManage\Index.cshtml" />
  6509. <Content Include="Areas\CustomFunction\Views\FundsTypeManage\Index.js" />
  6510. <Content Include="Areas\CustomFunction\Views\FundsTypeManage\Form.cshtml" />
  6511. <Content Include="Areas\CustomFunction\Views\FundsTypeManage\Form.js" />
  6512. <Content Include="Areas\CustomFunction\Views\FundsManageMain\Index.cshtml" />
  6513. <Content Include="Areas\CustomFunction\Views\FundsManageMain\Index.js" />
  6514. <Content Include="Areas\CustomFunction\Views\FundsManageMain\Form.cshtml" />
  6515. <Content Include="Areas\CustomFunction\Views\FundsManageMain\Form.js" />
  6516. <Content Include="Areas\CustomFunction\Views\FundsManageChild\Index.cshtml" />
  6517. <Content Include="Areas\CustomFunction\Views\FundsManageChild\Index.js" />
  6518. <Content Include="Areas\CustomFunction\Views\FundsManageChild\Form.cshtml" />
  6519. <Content Include="Areas\CustomFunction\Views\FundsManageChild\Form.js" />
  6520. <Content Include="Areas\CustomFunction\Views\ExpendedManageMain\Index.cshtml" />
  6521. <Content Include="Areas\CustomFunction\Views\ExpendedManageMain\Index.js" />
  6522. <Content Include="Areas\CustomFunction\Views\ExpendedManageMain\Form.cshtml" />
  6523. <Content Include="Areas\CustomFunction\Views\ExpendedManageMain\Form.js" />
  6524. <Content Include="Areas\CustomFunction\Views\ExpendedManageChild\Index.cshtml" />
  6525. <Content Include="Areas\CustomFunction\Views\ExpendedManageChild\Index.js" />
  6526. <Content Include="Areas\CustomFunction\Views\ExpendedManageChild\Form.cshtml" />
  6527. <Content Include="Areas\CustomFunction\Views\ExpendedManageChild\Form.js" />
  6528. <Content Include="Areas\CustomFunction\Views\SRAchievements\Index.cshtml" />
  6529. <Content Include="Areas\CustomFunction\Views\SRAchievements\Index.js" />
  6530. <Content Include="Areas\CustomFunction\Views\SRAchievements\Form.cshtml" />
  6531. <Content Include="Areas\CustomFunction\Views\SRAchievements\Form.js" />
  6532. </ItemGroup>
  6533. <ItemGroup>
  6534. <Folder Include="Areas\LR_Desktop\Models\" />
  6535. <Folder Include="Areas\LR_Desktop\Views\Shared\" />
  6536. <Folder Include="Areas\LR_ReportTestModule\Models\" />
  6537. <Folder Include="Areas\LR_ReportTestModule\Views\Shared\" />
  6538. <Folder Include="Areas\LR_WebChatModule\Views\User\" />
  6539. <Folder Include="Areas\LR_WorkFlowModule\Views\WfEngine\" />
  6540. </ItemGroup>
  6541. <ItemGroup>
  6542. <Content Include="packages.config" />
  6543. </ItemGroup>
  6544. <ItemGroup>
  6545. <Content Include="Views\Login\Index.cshtml" />
  6546. </ItemGroup>
  6547. <ItemGroup>
  6548. <Content Include="XmlConfig\database.config">
  6549. <SubType>Designer</SubType>
  6550. </Content>
  6551. <Content Include="XmlConfig\ioc.config">
  6552. <SubType>Designer</SubType>
  6553. </Content>
  6554. <Content Include="XmlConfig\log4net.config" />
  6555. <Content Include="XmlConfig\system.config">
  6556. <SubType>Designer</SubType>
  6557. </Content>
  6558. </ItemGroup>
  6559. <ItemGroup>
  6560. <Content Include="Views\Home\AdminDefault.cshtml" />
  6561. </ItemGroup>
  6562. <ItemGroup>
  6563. <Content Include="Views\Home\AdminDesktop.cshtml" />
  6564. </ItemGroup>
  6565. <ItemGroup>
  6566. <Content Include="Views\Error\ErrorMessage.cshtml" />
  6567. </ItemGroup>
  6568. <ItemGroup>
  6569. <ProjectReference Include="..\Learun.Application.Organization\Learun.Application.Organization.csproj">
  6570. <Project>{E9877A25-801B-4605-AD35-E6306916513C}</Project>
  6571. <Name>Learun.Application.Organization</Name>
  6572. </ProjectReference>
  6573. <ProjectReference Include="..\Learun.Framework.Module\Learun.Application.Module\Learun.Application.AppMagager\Learun.Application.AppMagager.csproj">
  6574. <Project>{8F770F8B-06B3-43DA-886F-15D41CEC62EE}</Project>
  6575. <Name>Learun.Application.AppMagager</Name>
  6576. </ProjectReference>
  6577. <ProjectReference Include="..\Learun.Framework.Module\Learun.Application.Module\Learun.Application.Base\Learun.Application.Base.csproj">
  6578. <Project>{0CDD0DC8-74CF-4C71-923C-66204A8923D3}</Project>
  6579. <Name>Learun.Application.Base</Name>
  6580. </ProjectReference>
  6581. <ProjectReference Include="..\Learun.Framework.Module\Learun.Application.Module\Learun.Application.CRM\Learun.Application.CRM.csproj">
  6582. <Project>{81E208BC-39B6-4CA3-81F1-C847D47330D1}</Project>
  6583. <Name>Learun.Application.CRM</Name>
  6584. </ProjectReference>
  6585. <ProjectReference Include="..\Learun.Framework.Module\Learun.Application.Module\Learun.Application.Excel\Learun.Application.Excel.csproj">
  6586. <Project>{10BAA80B-16F5-4514-902D-F9F7FA608BDD}</Project>
  6587. <Name>Learun.Application.Excel</Name>
  6588. </ProjectReference>
  6589. <ProjectReference Include="..\Learun.Framework.Module\Learun.Application.Module\Learun.Application.Extention\Learun.Application.Extention.csproj">
  6590. <Project>{4D033392-BBB8-4B5F-9144-A42E7695847E}</Project>
  6591. <Name>Learun.Application.Extention</Name>
  6592. </ProjectReference>
  6593. <ProjectReference Include="..\Learun.Framework.Module\Learun.Application.Module\Learun.Application.Form\Learun.Application.Form.csproj">
  6594. <Project>{9164926B-150A-47D6-B384-A41AA4A7BC5D}</Project>
  6595. <Name>Learun.Application.Form</Name>
  6596. </ProjectReference>
  6597. <ProjectReference Include="..\Learun.Framework.Module\Learun.Application.Module\Learun.Application.IM\Learun.Application.IM.csproj">
  6598. <Project>{DB34DFC9-7227-41FA-88AA-832DBF247811}</Project>
  6599. <Name>Learun.Application.IM</Name>
  6600. </ProjectReference>
  6601. <ProjectReference Include="..\Learun.Framework.Module\Learun.Application.Module\Learun.Application.Language\Learun.Application.Language.csproj">
  6602. <Project>{36083FBB-CE7F-4EE0-8459-C4B60A2DD070}</Project>
  6603. <Name>Learun.Application.Language</Name>
  6604. </ProjectReference>
  6605. <ProjectReference Include="..\Learun.Framework.Module\Learun.Application.Module\Learun.Application.Mapping\Learun.Application.Mapping.csproj">
  6606. <Project>{79f8e2f1-08e7-4336-93e0-512b39f9dd54}</Project>
  6607. <Name>Learun.Application.Mapping</Name>
  6608. </ProjectReference>
  6609. <ProjectReference Include="..\Learun.Framework.Module\Learun.Application.Module\Learun.Application.Message\Learun.Application.Message.csproj">
  6610. <Project>{211fa31a-b9d8-4f48-80cc-573b9410828e}</Project>
  6611. <Name>Learun.Application.Message</Name>
  6612. </ProjectReference>
  6613. <ProjectReference Include="..\Learun.Framework.Module\Learun.Application.Module\Learun.Application.OA\Learun.Application.OA.csproj">
  6614. <Project>{5F3FDF79-A47E-4782-A090-DD0DC2D5CDC1}</Project>
  6615. <Name>Learun.Application.OA</Name>
  6616. </ProjectReference>
  6617. <ProjectReference Include="..\Learun.Framework.Module\Learun.Application.Module\Learun.Application.Report\Learun.Application.Report.csproj">
  6618. <Project>{886B15B8-7B60-4872-85D1-7F47AC0951EF}</Project>
  6619. <Name>Learun.Application.Report</Name>
  6620. </ProjectReference>
  6621. <ProjectReference Include="..\Learun.Framework.Module\Learun.Application.Module\Learun.Application.TwoDevelopment\Learun.Application.TwoDevelopment.csproj">
  6622. <Project>{56F9A112-FD96-4809-98F4-0D7C5DE0711B}</Project>
  6623. <Name>Learun.Application.TwoDevelopment</Name>
  6624. </ProjectReference>
  6625. <ProjectReference Include="..\Learun.Framework.Module\Learun.Application.Module\Learun.Application.WeChat\Learun.Application.WeChat.csproj">
  6626. <Project>{36FA9414-767E-4806-9E45-2075216B1070}</Project>
  6627. <Name>Learun.Application.WeChat</Name>
  6628. </ProjectReference>
  6629. <ProjectReference Include="..\Learun.Framework.Module\Learun.Application.Module\Learun.Application.WorkFlow\Learun.Application.WorkFlow.csproj">
  6630. <Project>{88D8E99D-DF26-4506-83C5-51E354818BEF}</Project>
  6631. <Name>Learun.Application.WorkFlow</Name>
  6632. </ProjectReference>
  6633. <ProjectReference Include="..\Learun.Framework.Module\Learun.Cache\Learun.Cache.Base\Learun.Cache.Base.csproj">
  6634. <Project>{975F2CB8-605C-4ADD-B365-B97BF844F0FE}</Project>
  6635. <Name>Learun.Cache.Base</Name>
  6636. </ProjectReference>
  6637. <ProjectReference Include="..\Learun.Framework.Module\Learun.Cache\Learun.Cache.Factory\Learun.Cache.Factory.csproj">
  6638. <Project>{68902FCF-C439-4010-B17B-2499C972EE33}</Project>
  6639. <Name>Learun.Cache.Factory</Name>
  6640. </ProjectReference>
  6641. <ProjectReference Include="..\Learun.Framework.Module\Learun.Cache\Learun.Cache.Redis\Learun.Cache.Redis.csproj">
  6642. <Project>{13808645-2013-4896-8ee2-65144e222c69}</Project>
  6643. <Name>Learun.Cache.Redis</Name>
  6644. </ProjectReference>
  6645. <ProjectReference Include="..\Learun.Framework.Module\Learun.Db\Learun.DataBase.EF.Oracle\Learun.DataBase.Oracle.csproj">
  6646. <Project>{82069f3a-ab45-4f8b-b2bf-a36b14208f41}</Project>
  6647. <Name>Learun.DataBase.Oracle</Name>
  6648. </ProjectReference>
  6649. <ProjectReference Include="..\Learun.Framework.Module\Learun.Db\Learun.DataBase.EF.Sqlserver\Learun.DataBase.SqlServer.csproj">
  6650. <Project>{890532f8-5205-4ee9-965c-84500cad24de}</Project>
  6651. <Name>Learun.DataBase.SqlServer</Name>
  6652. </ProjectReference>
  6653. <ProjectReference Include="..\Learun.Framework.Module\Learun.Db\Learun.DataBase.MySql\Learun.DataBase.MySqlEx.csproj">
  6654. <Project>{fe4cb79e-7f98-4683-bc4a-5173a5bc5636}</Project>
  6655. <Name>Learun.DataBase.MySqlEx</Name>
  6656. </ProjectReference>
  6657. <ProjectReference Include="..\Learun.Framework.Module\Learun.Db\Learun.DataBase.Repository\Learun.DataBase.Repository.csproj">
  6658. <Project>{7f5e2a6c-c859-494a-8577-75bf9603a80c}</Project>
  6659. <Name>Learun.DataBase.Repository</Name>
  6660. </ProjectReference>
  6661. <ProjectReference Include="..\Learun.Framework.Module\Learun.Db\Learun.DataBase\Learun.DataBase.csproj">
  6662. <Project>{c329f9e1-4327-4769-9d08-07e6fec41005}</Project>
  6663. <Name>Learun.DataBase</Name>
  6664. </ProjectReference>
  6665. <ProjectReference Include="..\Learun.Framework.Module\Learun.Ioc\Learun.Ioc.csproj">
  6666. <Project>{81c03609-ae0d-414c-829b-16b990487add}</Project>
  6667. <Name>Learun.Ioc</Name>
  6668. </ProjectReference>
  6669. <ProjectReference Include="..\Learun.Framework.Module\Learun.Log\Learun.Loger.csproj">
  6670. <Project>{D27E14DC-B68C-408D-A2E3-FDB38665ECBB}</Project>
  6671. <Name>Learun.Loger</Name>
  6672. </ProjectReference>
  6673. <ProjectReference Include="..\Learun.Framework.Module\Learun.Util\Learun.Util.Operat\Learun.Util.Operat.csproj">
  6674. <Project>{AD556B7A-E0D1-41BD-9D5B-18F8502E9F33}</Project>
  6675. <Name>Learun.Util.Operat</Name>
  6676. </ProjectReference>
  6677. <ProjectReference Include="..\Learun.Framework.Module\Learun.Util\Learun.Util\Learun.Util.csproj">
  6678. <Project>{CF8AE293-88AB-436C-9720-A8386BA5D7B7}</Project>
  6679. <Name>Learun.Util</Name>
  6680. </ProjectReference>
  6681. <ProjectReference Include="..\Learun.Framework.Module\Learun.Workflow\Learun.Workflow.Engine\Learun.Workflow.Engine.csproj">
  6682. <Project>{1d192591-b85a-41db-ae3a-4bf9765786c1}</Project>
  6683. <Name>Learun.Workflow.Engine</Name>
  6684. </ProjectReference>
  6685. <ProjectReference Include="..\Quanjiang.DigitalScholl.WebLicense\Quanjiang.DigitalScholl.WebLicense.csproj">
  6686. <Project>{4D841EAD-3FD8-4FAC-BC67-C4CE6C0D1181}</Project>
  6687. <Name>Quanjiang.DigitalScholl.WebLicense</Name>
  6688. </ProjectReference>
  6689. <ProjectReference Include="..\Quanjiang.DigitalSchool.Aspose\Quanjiang.DigitalSchool.Aspose.csproj">
  6690. <Project>{767d20c4-b983-4940-bf97-74d5479ca558}</Project>
  6691. <Name>Quanjiang.DigitalSchool.Aspose</Name>
  6692. </ProjectReference>
  6693. </ItemGroup>
  6694. <ItemGroup>
  6695. <Content Include="Areas\EducationalAdministration\Views\web.config" />
  6696. <Content Include="Areas\LR_OrganizationModule\Views\User\StudentIndex.cshtml" />
  6697. <Content Include="Areas\EducationalAdministration\Views\LanMail\Index.cshtml" />
  6698. <Content Include="Areas\EducationalAdministration\Views\SYS_SendMessage\FormView.cshtml" />
  6699. <Content Include="Areas\EducationalAdministration\Views\SYS_ReceiveMessage\FormView.cshtml" />
  6700. <Content Include="Areas\EducationalAdministration\Views\SYS_ReceiveMessage\FormCh.cshtml" />
  6701. <Content Include="Areas\EducationalAdministration\Views\EmpInfo\FormView.cshtml" />
  6702. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasic\FormView.cshtml" />
  6703. <Content Include="Areas\PersonnelManagement\Views\web.config" />
  6704. <Content Include="Areas\EducationalAdministration\Views\JournalSend\FormView.cshtml" />
  6705. <Content Include="Areas\PersonnelManagement\Views\TimeTable\Index.cshtml" />
  6706. <Content Include="Areas\PersonnelManagement\Views\TimeTable\Attendance.cshtml" />
  6707. <Content Include="Areas\PersonnelManagement\Views\TimeTable\AttendanceDetail.cshtml" />
  6708. <Content Include="Areas\EducationalAdministration\Views\Sys_SendFile\FormView.cshtml" />
  6709. <Content Include="Areas\EducationalAdministration\Views\Sys_SendFile\ReadList.cshtml" />
  6710. <Content Include="Areas\EducationalAdministration\Views\Sys_SendComplaint\FormView.cshtml" />
  6711. <Content Include="Areas\EducationalAdministration\Views\Sys_SendComplaint\IndexList.cshtml" />
  6712. <Content Include="Areas\LR_OrganizationModule\Views\User\LookForm.cshtml" />
  6713. <Content Include="Areas\EducationalAdministration\Views\Sys_SendComplaint\FormList.cshtml" />
  6714. <Content Include="Areas\EducationalAdministration\Views\Sys_SendComplaint\FormListView.cshtml" />
  6715. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveComplaint\FormView.cshtml" />
  6716. <Content Include="Areas\EducationalAdministration\Views\Sys_SendComplaint\ReplyList.cshtml" />
  6717. <Content Include="Areas\Permission\Views\web.config" />
  6718. <Content Include="Areas\Permission\Views\Perm_UserPermission\SelectForm.cshtml" />
  6719. <Content Include="Areas\Ask\Views\web.config" />
  6720. <Content Include="Areas\LR_ReportModule\Views\ReportTemplate\WfSchemeReport.cshtml" />
  6721. <Content Include="Areas\Ask\Views\Ask_Main\AnswerIndex.cshtml" />
  6722. <Content Include="Areas\Ask\Views\Ask_Main\AnswerQuery.cshtml" />
  6723. <Content Include="Areas\LogisticsManagement\Views\web.config" />
  6724. <Content Include="Areas\Ask\Views\Ask_Main\StudentIndex.cshtml" />
  6725. <Content Include="Areas\Ask\Views\Ask_Main\Paper.cshtml" />
  6726. <Content Include="Areas\Ask\Views\Ask_Main\PaperView.cshtml" />
  6727. <Content Include="Areas\LogisticsManagement\Views\Accommodation\DormitoryAdd.cshtml" />
  6728. <Content Include="Areas\LogisticsManagement\Views\Accommodation\Allocation.cshtml" />
  6729. <Content Include="Areas\Ask\Views\Ask_Main\PaperAdminView.cshtml" />
  6730. <Content Include="Areas\Permission\Views\Perm_Function\TeacherIndex.cshtml" />
  6731. <Content Include="Areas\Permission\Views\Perm_Function\FormTeacher.cshtml" />
  6732. <Content Include="Areas\LogisticsManagement\Views\Accommodation\Floor.cshtml" />
  6733. <Content Include="Areas\LogisticsManagement\Views\Accommodation\Unit.cshtml" />
  6734. <Content Include="Areas\LogisticsManagement\Views\Accommodation\Corridor.cshtml" />
  6735. <Content Include="Areas\LogisticsManagement\Views\Accommodation\Dormitory.cshtml" />
  6736. <Content Include="Areas\LogisticsManagement\Views\Accommodation\Room.cshtml" />
  6737. <Content Include="Areas\EducationalAdministration\Views\OpenLessonPlanOfElective\StudentIndex.cshtml" />
  6738. <Content Include="Areas\EducationalAdministration\Views\StuSelectLessonListOfElective\AuditIndex.cshtml" />
  6739. <Content Include="Areas\EducationalAdministration\Views\StuSelectLessonListOfElective\FinishIndex.cshtml" />
  6740. <Content Include="Areas\Permission\Views\Perm_UserPermission\GirdSelectIndex.cshtml" />
  6741. <Content Include="Areas\EducationalAdministration\Views\ArrangeExamTerm\ExamIndex.cshtml" />
  6742. <Content Include="Areas\EducationalAdministration\Views\ArrangeExamTerm\ExamIndexOfTeacher.cshtml" />
  6743. <Content Include="Areas\LR_WorkFlowModule\Views\WfMyTask\CustmerWorkFlowFormAll.cshtml" />
  6744. <Content Include="Areas\ReceiveSendFeeManagement\Views\web.config" />
  6745. <Content Include="Areas\PersonnelManagement\Views\TimeTable\Leave.cshtml" />
  6746. <Content Include="Areas\ReceiveSendFeeManagement\Views\FinaChargesStandard\EditForm.cshtml" />
  6747. <Content Include="Areas\ReceiveSendFeeManagement\Views\FinaChargeBank\ShowIndex.cshtml" />
  6748. <Content Include="Areas\ReceiveSendFeeManagement\Views\FinaChargeItem\ShowIndex.cshtml" />
  6749. <Content Include="Areas\EducationalAdministration\Views\StuAttendanceLeave\CheckForm.cshtml" />
  6750. <Content Include="Areas\ReceiveSendFeeManagement\Views\FinaChargesStandard\ShowIndex.cshtml" />
  6751. <Content Include="Areas\ReceiveSendFeeManagement\Views\FinaReplaceMode\ShowIndex.cshtml" />
  6752. <Content Include="Areas\ReceiveSendFeeManagement\Views\FinaRefundItem\ShowIndex.cshtml" />
  6753. <Content Include="Areas\EducationalAdministration\Views\BookBorrow\Form.cshtml" />
  6754. <Content Include="Areas\EducationalAdministration\Views\BookBorrow\Index.cshtml" />
  6755. <Content Include="Areas\EducationalAdministration\Views\BookCard\Form.cshtml" />
  6756. <Content Include="Areas\EducationalAdministration\Views\BookCard\Index.cshtml" />
  6757. <Content Include="Areas\EducationalAdministration\Views\BookClass\Form.cshtml" />
  6758. <Content Include="Areas\EducationalAdministration\Views\BookClass\Index.cshtml" />
  6759. <Content Include="Areas\EducationalAdministration\Views\BookInfo\Form.cshtml" />
  6760. <Content Include="Areas\EducationalAdministration\Views\BookInfo\Index.cshtml" />
  6761. <Content Include="Areas\EducationalAdministration\Views\BookLocation\Form.cshtml" />
  6762. <Content Include="Areas\EducationalAdministration\Views\BookLocation\Index.cshtml" />
  6763. <Content Include="Areas\EducationalAdministration\Views\BookLose\Form.cshtml" />
  6764. <Content Include="Areas\EducationalAdministration\Views\BookLose\Index.cshtml" />
  6765. <Content Include="Areas\EducationalAdministration\Views\ArrangeExamTerm\ExamIndexOfStudent.cshtml" />
  6766. <Content Include="Areas\EducationalAdministration\Views\TeachAttendance\Form.cshtml" />
  6767. <Content Include="Areas\EducationalAdministration\Views\TeachAttendance\Index.cshtml" />
  6768. <Content Include="Areas\EducationalAdministration\Views\EmpInfo\FormAdd.cshtml" />
  6769. <Content Include="Content\layui\font\iconfont.eot" />
  6770. <Content Include="Content\layui\font\iconfont.ttf" />
  6771. <Content Include="Content\layui\font\iconfont.woff" />
  6772. <Content Include="Areas\PersonnelManagement\Views\TimeTable\IndexInEducation.cshtml" />
  6773. <Content Include="Areas\EducationalAdministration\Views\TeachPlan\Form.cshtml" />
  6774. <Content Include="Areas\EducationalAdministration\Views\TeachPlan\Index.cshtml" />
  6775. <Content Include="Areas\EducationalAdministration\Views\TeachSwitch\Form.cshtml" />
  6776. <Content Include="Areas\EducationalAdministration\Views\TeachSwitch\Index.cshtml" />
  6777. <Content Include="Areas\LR_OAModule\Views\Notice\ViewForm.cshtml" />
  6778. <Content Include="Areas\LR_OAModule\Views\Notice\ViewIndex.cshtml" />
  6779. <Content Include="Areas\EducationalAdministration\Views\StuScore\ClassIndex.cshtml" />
  6780. <Content Include="Areas\PersonnelManagement\Views\TimeTable\IndexInEducationModify.cshtml" />
  6781. <Content Include="Areas\PersonnelManagement\Views\TimeTable\ModifyLessonForm.cshtml" />
  6782. <Content Include="Areas\EducationalAdministration\Views\StuScore\ScoreQueryIndex.cshtml" />
  6783. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\AllocationClass.cshtml" />
  6784. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\AllocationDormitory.cshtml" />
  6785. <Content Include="Content\model\北京金隅科技学校缴费单.docx" />
  6786. <Content Include="Content\model\缴费单.docx" />
  6787. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\Report.cshtml" />
  6788. <Content Include="Areas\EducationalAdministration\Views\StuScore\Monitor.cshtml" />
  6789. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\CheckIn.cshtml" />
  6790. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\IsHelp.cshtml" />
  6791. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\Military.cshtml" />
  6792. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\IsPhoto.cshtml" />
  6793. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\GetCloth.cshtml" />
  6794. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\GetClothSize.cshtml" />
  6795. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\GetArticles.cshtml" />
  6796. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\IsPay.cshtml" />
  6797. <Content Include="Areas\EducationalAdministration\Views\StuScore\AllScoreQueryIndex.cshtml" />
  6798. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\CheckInUrl.cshtml" />
  6799. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\SubsidizeUrl.cshtml" />
  6800. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\MilitaryUrl.cshtml" />
  6801. <Content Include="Areas\EducationalAdministration\Views\StuScore\ScoreInputCancelIndex.cshtml" />
  6802. <Content Include="Areas\EducationalAdministration\Views\StuScore\ScoreStatisticAnalysis.cshtml" />
  6803. <Content Include="Areas\EducationalAdministration\Views\StuScore\ScoreInputCancelForm.cshtml" />
  6804. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\CardPrint.cshtml" />
  6805. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\NewAllocationDormitory.cshtml" />
  6806. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\NewAllocationBed.cshtml" />
  6807. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\FormView.cshtml" />
  6808. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\StudentStatus.cshtml" />
  6809. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\EnrollTypeForm.cshtml" />
  6810. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\AllocationBed.cshtml" />
  6811. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\AllocationClass.cshtml" />
  6812. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\AllocationDormitory.cshtml" />
  6813. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\CollectFileIndex.cshtml" />
  6814. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\Form.cshtml" />
  6815. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\FormView.cshtml" />
  6816. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\GetKeyIndex.cshtml" />
  6817. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\Index.cshtml" />
  6818. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\IndexOfStudent.cshtml" />
  6819. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\PayFeeForm.cshtml" />
  6820. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\PayFeeIndex.cshtml" />
  6821. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\RegisterIndex.cshtml" />
  6822. <Content Include="Areas\EducationalAdministration\Views\StuInfoFreshOnlineService\AnswerForm.cshtml" />
  6823. <Content Include="Areas\EducationalAdministration\Views\StuInfoFreshOnlineService\AnswerFormView.cshtml" />
  6824. <Content Include="Areas\EducationalAdministration\Views\StuInfoFreshOnlineService\AnswerIndex.cshtml" />
  6825. <Content Include="Areas\EducationalAdministration\Views\StuInfoFreshOnlineService\Form.cshtml" />
  6826. <Content Include="Areas\EducationalAdministration\Views\StuInfoFreshOnlineService\FormView.cshtml" />
  6827. <Content Include="Areas\EducationalAdministration\Views\StuInfoFreshOnlineService\Index.cshtml" />
  6828. <Content Include="Areas\EducationalAdministration\Views\StuInfoFreshOnlineService\IndexList.cshtml" />
  6829. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\FormOfStudent.cshtml" />
  6830. <Content Include="Areas\EducationalAdministration\Views\OpenLessonPlanOfElective\MergeIndex.cshtml" />
  6831. <Content Include="Areas\EducationalAdministration\Views\CdMajor\IndexOfElective.cshtml" />
  6832. <Content Include="Areas\EducationalAdministration\Views\StuSelectLessonListOfElective\QueryStuSelectResult.cshtml" />
  6833. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\ImportBedForm.cshtml" />
  6834. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\ExportBedForm.cshtml" />
  6835. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\PrintSignFlow.cshtml" />
  6836. <Content Include="Areas\EducationalAdministration\Views\StuScore\InputScoreIndex.cshtml" />
  6837. <Content Include="Areas\EducationalAdministration\Views\OpenLessonPlan\Form.cshtml" />
  6838. <Content Include="Areas\EducationalAdministration\Views\OpenLessonPlan\Index.cshtml" />
  6839. <Content Include="Areas\EducationalAdministration\Views\StuSelectLessonListOfElectivePre\AuditForm.cshtml" />
  6840. <Content Include="Areas\EducationalAdministration\Views\StuSelectLessonListOfElectivePre\AuditIndex.cshtml" />
  6841. <Content Include="Areas\EducationalAdministration\Views\StuSelectLessonListOfElectivePre\FinishIndex.cshtml" />
  6842. <Content Include="Areas\EducationalAdministration\Views\StuSelectLessonListOfElectivePre\Index.cshtml" />
  6843. <Content Include="Areas\EducationalAdministration\Views\StuSelectLessonListOfElectivePre\QueryStuSelectResult.cshtml" />
  6844. <Content Include="Areas\EducationalAdministration\Views\OpenLessonPlan\FormOfClass.cshtml" />
  6845. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\StatisticIndex.cshtml" />
  6846. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\StatisticsArea.cshtml" />
  6847. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\PayAfter.cshtml" />
  6848. <Content Include="Areas\EducationalAdministration\Views\OpenLessonPlanOfElective\ModifyForm.cshtml" />
  6849. <Content Include="Areas\EducationalAdministration\Views\Statistics\TeacherWorkload.cshtml" />
  6850. <Content Include="Areas\PersonnelManagement\Views\MP_BrowseRecord\IndexFile.cshtml" />
  6851. <Content Include="Areas\EvaluationTeach\Views\Eval_Main\AnswerIndex.cshtml" />
  6852. <Content Include="Areas\EvaluationTeach\Views\Eval_Main\TeacherIndex.cshtml" />
  6853. <Content Include="Areas\EvaluationTeach\Views\Eval_Main\Form.cshtml" />
  6854. <Content Include="Areas\EvaluationTeach\Views\Eval_Main\Index.cshtml" />
  6855. <Content Include="Areas\EvaluationTeach\Views\Eval_Main\Paper.cshtml" />
  6856. <Content Include="Areas\EvaluationTeach\Views\Eval_Main\PaperAdminView.cshtml" />
  6857. <Content Include="Areas\EvaluationTeach\Views\Eval_Main\PaperView.cshtml" />
  6858. <Content Include="Areas\EvaluationTeach\Views\Eval_Main\StudentIndex.cshtml" />
  6859. <Content Include="Areas\EvaluationTeach\Views\Eval_Question\Form.cshtml" />
  6860. <Content Include="Areas\EvaluationTeach\Views\Eval_Question\Index.cshtml" />
  6861. <Content Include="Areas\EvaluationTeach\Views\Eval_QuestionItems\Form.cshtml" />
  6862. <Content Include="Areas\EvaluationTeach\Views\Eval_QuestionItems\Index.cshtml" />
  6863. <Content Include="Areas\EvaluationTeach\Views\web.config" />
  6864. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonTermAttemper\Form.cshtml" />
  6865. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonTermAttemper\FormView.cshtml" />
  6866. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonTermAttemper\Index.cshtml" />
  6867. <Content Include="Areas\PersonnelManagement\Views\TimeTable\IndexInEducationSelect.cshtml" />
  6868. <Content Include="Areas\LR_WorkFlowModule\Views\WfMyTask\Release.cshtml" />
  6869. <Content Include="Areas\LR_WorkFlowModule\Views\WfMyTask\Form.cshtml" />
  6870. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveFile\Form.cshtml" />
  6871. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveFile\Index.cshtml" />
  6872. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveDocument\FormView.cshtml" />
  6873. <Content Include="Areas\EvaluationTeach\Views\Eval_Main\TeacherIndex2.cshtml" />
  6874. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasicChange\Form.cshtml" />
  6875. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasicChange\FormView.cshtml" />
  6876. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasicChange\Index.cshtml" />
  6877. <Content Include="Areas\EducationalAdministration\Views\StuScoreNotPass\Form.cshtml" />
  6878. <Content Include="Areas\EducationalAdministration\Views\StuScoreNotPass\Index.cshtml" />
  6879. <Content Include="Areas\EducationalAdministration\Views\StuScoreNotPass\InputScoreIndex.cshtml" />
  6880. <Content Include="Areas\EducationalAdministration\Views\StuScoreNotPass\Monitor.cshtml" />
  6881. <Content Include="Areas\EducationalAdministration\Views\StuScoreNotPassTwo\InputScoreIndex.cshtml" />
  6882. <Content Include="Areas\EducationalAdministration\Views\StuScoreNotPassTwo\Monitor.cshtml" />
  6883. <Content Include="Areas\EducationalAdministration\Views\CertificateManage\Form.cshtml" />
  6884. <Content Include="Areas\EducationalAdministration\Views\CertificateManage\Index.cshtml" />
  6885. <Content Include="Areas\EducationalAdministration\Views\CertificateResult\Form.cshtml" />
  6886. <Content Include="Areas\EducationalAdministration\Views\CertificateResult\Index.cshtml" />
  6887. <Content Include="Areas\LR_NewWorkFlow\Views\NWFDelegate\Form.cshtml" />
  6888. <Content Include="Areas\LR_NewWorkFlow\Views\NWFDelegate\Index.cshtml" />
  6889. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\AppointForm.cshtml" />
  6890. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\AuditFlowForm.cshtml" />
  6891. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\BatchAuditIndex.cshtml" />
  6892. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\CreateForm.cshtml" />
  6893. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\Index.cshtml" />
  6894. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\LookFlowForm.cshtml" />
  6895. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\LookNodeForm.cshtml" />
  6896. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\MonitorDetailsIndex.cshtml" />
  6897. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\MonitorForm.cshtml" />
  6898. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\MonitorIndex.cshtml" />
  6899. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\NWFContainerForm.cshtml" />
  6900. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\ReleaseForm.cshtml" />
  6901. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\SignAuditFlowForm.cshtml" />
  6902. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\SignFlowForm.cshtml" />
  6903. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\AuditorFieldForm.cshtml" />
  6904. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\AuditorNodeForm.cshtml" />
  6905. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\ButtonForm.cshtml" />
  6906. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\ConditionFieldForm.cshtml" />
  6907. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\Form.cshtml" />
  6908. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\HistoryForm.cshtml" />
  6909. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\ImportForm.cshtml" />
  6910. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\Index.cshtml" />
  6911. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\LevelForm.cshtml" />
  6912. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\LineForm.cshtml" />
  6913. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\NodeForm.cshtml" />
  6914. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\PostForm.cshtml" />
  6915. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\PreviewForm.cshtml" />
  6916. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\RoleForm.cshtml" />
  6917. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\UserForm.cshtml" />
  6918. <Content Include="Areas\LR_NewWorkFlow\Views\NWFScheme\WorkformForm.cshtml" />
  6919. <Content Include="Areas\LR_NewWorkFlow\Views\web.config" />
  6920. <Content Include="Content\laydate\src\theme\default\font\iconfont.eot" />
  6921. <Content Include="Content\laydate\src\theme\default\font\iconfont.ttf" />
  6922. <Content Include="Content\laydate\src\theme\default\font\iconfont.woff" />
  6923. <Content Include="Content\laydate\theme\default\font\iconfont.eot" />
  6924. <Content Include="Content\laydate\theme\default\font\iconfont.ttf" />
  6925. <Content Include="Content\laydate\theme\default\font\iconfont.woff" />
  6926. <Content Include="Areas\LR_Message\Views\LR_StrategyInfo\Form.cshtml" />
  6927. <Content Include="Areas\LR_Message\Views\LR_StrategyInfo\Index.cshtml" />
  6928. <Content Include="Areas\LR_Message\Views\web.config" />
  6929. <Content Include="Areas\LR_AuthorizeModule\Views\DataAuthorize\CustomerFormIndex.cshtml" />
  6930. <Content Include="Areas\EducationalAdministration\Views\ScoreStatistics\Form.cshtml" />
  6931. <Content Include="Areas\EducationalAdministration\Views\ScoreStatistics\Index.cshtml" />
  6932. <Content Include="Areas\EducationalAdministration\Views\ClassInfo\FormType.cshtml" />
  6933. <Content Include="Areas\EducationalAdministration\Views\PracticeBase\Form.cshtml" />
  6934. <Content Include="Areas\EducationalAdministration\Views\PracticeBase\Index.cshtml" />
  6935. <Content Include="Areas\EducationalAdministration\Views\StuGrant\Form.cshtml" />
  6936. <Content Include="Areas\EducationalAdministration\Views\StuGrant\Index.cshtml" />
  6937. <Content Include="Areas\Ask\Views\Ask_Question\AnalysisIndex.cshtml" />
  6938. <Content Include="Areas\EducationalAdministration\Views\EvaCodeOfContuct\Form.cshtml" />
  6939. <Content Include="Areas\EducationalAdministration\Views\EvaCodeOfContuct\Index.cshtml" />
  6940. <Content Include="Areas\EducationalAdministration\Views\EvaDormitoryInterior\Form.cshtml" />
  6941. <Content Include="Areas\EducationalAdministration\Views\EvaDormitoryInterior\Index.cshtml" />
  6942. <Content Include="Areas\EducationalAdministration\Views\EvaHygieve\Form.cshtml" />
  6943. <Content Include="Areas\EducationalAdministration\Views\EvaHygieve\Index.cshtml" />
  6944. <Content Include="Areas\EducationalAdministration\Views\EvaViolationOfDiscipline\Form.cshtml" />
  6945. <Content Include="Areas\EducationalAdministration\Views\EvaViolationOfDiscipline\Index.cshtml" />
  6946. <Content Include="Areas\EducationalAdministration\Views\Sys_SendFile\FormDocument.cshtml" />
  6947. <Content Include="Areas\EducationalAdministration\Views\Sys_SendFile\IndexDocument.cshtml" />
  6948. <Content Include="Areas\EducationalAdministration\Views\Sys_SendFile\ReadListDocument.cshtml" />
  6949. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveFile\FormDocument.cshtml" />
  6950. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveFile\IndexDocument.cshtml" />
  6951. <Content Include="Areas\EducationalAdministration\Views\Sys_SendFile\FormDocumentView.cshtml" />
  6952. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveFile\FormReadDocument.cshtml" />
  6953. <Content Include="Areas\EducationalAdministration\Views\LessonInfo\FormNoMajor.cshtml" />
  6954. <Content Include="Areas\EducationalAdministration\Views\LessonInfo\IndexNoMajor.cshtml" />
  6955. <Content Include="Areas\LR_SystemModule\Views\Log\UseStatistics.cshtml" />
  6956. <Content Include="Areas\LR_SystemModule\Views\Log\OnlineUserIndex.cshtml" />
  6957. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonSync\Form.cshtml" />
  6958. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonSync\Index.cshtml" />
  6959. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonTerm\EmptyByConditionForm.cshtml" />
  6960. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonTerm\SyncByConditionForm.cshtml" />
  6961. <Content Include="Areas\EducationalAdministration\Views\LeaveSchoolA\Form.cshtml" />
  6962. <Content Include="Areas\EducationalAdministration\Views\LeaveSchoolA\Index.cshtml" />
  6963. <Content Include="Areas\LR_LGManager\Views\CorporateMaterialApply\Form.cshtml" />
  6964. <Content Include="Areas\LR_LGManager\Views\CorporateMaterialApply\Index.cshtml" />
  6965. <Content Include="Areas\LR_LGManager\Views\CorporateMaterialItem\Form.cshtml" />
  6966. <Content Include="Areas\LR_LGManager\Views\CorporateMaterialItem\Index.cshtml" />
  6967. <Content Include="Areas\LR_LGManager\Views\StampApply\Form.cshtml" />
  6968. <Content Include="Areas\LR_LGManager\Views\StampApply\Index.cshtml" />
  6969. <Content Include="Areas\LR_LGManager\Views\StampApply\FormView.cshtml" />
  6970. <Content Include="Areas\LR_LGManager\Views\CorporateMaterialApply\FormView.cshtml" />
  6971. <Content Include="Areas\PersonnelManagement\Views\OvertimeApplication\Form.cshtml" />
  6972. <Content Include="Areas\PersonnelManagement\Views\OvertimeApplication\Index.cshtml" />
  6973. <Content Include="Areas\PersonnelManagement\Views\TimeTable\AttendanceStatistic.cshtml" />
  6974. <Content Include="Areas\EducationalAdministration\Views\StuCancelExam\Detail.cshtml" />
  6975. <Content Include="Areas\PersonnelManagement\Views\CommunityInfo\QrcodeForm.cshtml" />
  6976. <Content Include="Areas\EducationalAdministration\Views\StuScore\InputScoreIndexInTeacher.cshtml" />
  6977. <Content Include="Areas\EducationalAdministration\Views\StuScoreNotPass\InputScoreIndexInTeacher.cshtml" />
  6978. <Content Include="Areas\EducationalAdministration\Views\StuScoreNotPassTwo\InputScoreIndexInTeacher.cshtml" />
  6979. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonTermOfElective\EmptyByConditionForm.cshtml" />
  6980. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonTermOfElective\SyncByConditionForm.cshtml" />
  6981. <Content Include="Areas\EducationalAdministration\Views\StuScore\InputScoreIndexOfElective.cshtml" />
  6982. <Content Include="Areas\EducationalAdministration\Views\StuScore\InputScoreIndexOfElectiveInTeacher.cshtml" />
  6983. <Content Include="Areas\PersonnelManagement\Views\EpidemicReport\PersonnelCategoryReport.cshtml" />
  6984. <Content Include="Areas\PersonnelManagement\Views\EpidemicReport\VehicleReport.cshtml" />
  6985. <Content Include="Areas\PersonnelManagement\Views\EpidemicReport\OutReasonReport.cshtml" />
  6986. <Content Include="Areas\PersonnelManagement\Views\EpidemicReport\ProviceReport.cshtml" />
  6987. <Content Include="Areas\PersonnelManagement\Views\TimeTable\AttendanceList.cshtml" />
  6988. <Content Include="Areas\PersonnelManagement\Views\EpidemicSituationCopy\Form.cshtml" />
  6989. <Content Include="Areas\PersonnelManagement\Views\EpidemicSituationCopy\Index.cshtml" />
  6990. <Content Include="Areas\PersonnelManagement\Views\EpidemicSituationCopy\IndexReport.cshtml" />
  6991. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasic\MyClass.cshtml" />
  6992. <Content Include="Areas\PersonnelManagement\Views\WP_FileList\SecuritySetting.cshtml" />
  6993. <Content Include="Areas\LR_OAModule\Views\ResourceFile\BcIndex.cshtml" />
  6994. <Content Include="Areas\PersonnelManagement\Views\BC_PopQuiz\Report.cshtml" />
  6995. <Content Include="Areas\EducationalAdministration\Views\StuAttendance\Index.cshtml" />
  6996. <Content Include="Areas\EducationalAdministration\Views\StuAttendance\IndexOfUnrecord.cshtml" />
  6997. <Content Include="Areas\EducationalAdministration\Views\EmpInfo\FormEdit.cshtml" />
  6998. <Content Include="Areas\EducationalAdministration\Views\EmpInfo\FormModify.cshtml" />
  6999. <Content Include="Areas\AdmissionsPlatform\Views\web.config" />
  7000. <Content Include="Areas\AdmissionsPlatform\Views\AP_OnlineUserInfo\RegistrateIndex.cshtml" />
  7001. <Content Include="Areas\EducationalAdministration\Views\Thermography\SubmitIndex.cshtml" />
  7002. <Content Include="Areas\EducationalAdministration\Views\ClassroomBuilding\QRPrint.cshtml" />
  7003. <Content Include="Areas\EducationalAdministration\Views\R_EnterBuilding\Form.cshtml" />
  7004. <Content Include="Areas\EducationalAdministration\Views\R_EnterBuilding\Index.cshtml" />
  7005. <Content Include="Areas\EducationalAdministration\Views\R_EnterSchool\Form.cshtml" />
  7006. <Content Include="Areas\EducationalAdministration\Views\R_EnterSchool\Index.cshtml" />
  7007. <Content Include="Areas\PersonnelManagement\Views\Sal_UserSalary\IndexOfMy.cshtml" />
  7008. <Content Include="Areas\PersonnelManagement\Views\Sal_UserSalary\FormView.cshtml" />
  7009. <Content Include="Areas\EducationalAdministration\Views\EmpInfo\Print.cshtml" />
  7010. <Content Include="Areas\EducationalAdministration\Views\Thermography\StatisticIndex.cshtml" />
  7011. <Content Include="Areas\PersonnelManagement\Views\ContractManagement\FormView.cshtml" />
  7012. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\htPrint.cshtml" />
  7013. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\PersonalFiling.cshtml" />
  7014. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\ContractFiling.cshtml" />
  7015. <Content Include="Areas\PersonnelManagement\Views\StuSaverecord\Form.cshtml" />
  7016. <Content Include="Areas\PersonnelManagement\Views\StuSaverecord\Index.cshtml" />
  7017. <Content Include="Areas\EducationalAdministration\Views\R_EnterSchool\DeptReport.cshtml" />
  7018. <Content Include="Areas\EducationalAdministration\Views\R_EnterSchool\MajorReport.cshtml" />
  7019. <Content Include="Areas\EducationalAdministration\Views\R_EnterSchool\ClassReport.cshtml" />
  7020. <Content Include="Areas\EducationalAdministration\Views\R_EnterBuilding\ClassReport.cshtml" />
  7021. <Content Include="Areas\EducationalAdministration\Views\R_EnterBuilding\DeptReport.cshtml" />
  7022. <Content Include="Areas\EducationalAdministration\Views\R_EnterBuilding\MajorReport.cshtml" />
  7023. <Content Include="Areas\PersonnelManagement\Views\ContractManagement\FormRenew.cshtml" />
  7024. <Content Include="Areas\PersonnelManagement\Views\ContractManagement\FormTerminate.cshtml" />
  7025. <Content Include="Areas\PersonnelManagement\Views\ContractManagement\FormRemove.cshtml" />
  7026. <Content Include="Areas\StudentWork\Views\web.config" />
  7027. <Content Include="Areas\StudentWork\Views\SW_Ask_Main\AnswerIndex.cshtml" />
  7028. <Content Include="Areas\StudentWork\Views\SW_Ask_Main\AnswerQuery.cshtml" />
  7029. <Content Include="Areas\StudentWork\Views\SW_Ask_Main\Form.cshtml" />
  7030. <Content Include="Areas\StudentWork\Views\SW_Ask_Main\Index.cshtml" />
  7031. <Content Include="Areas\StudentWork\Views\SW_Ask_Main\Paper.cshtml" />
  7032. <Content Include="Areas\StudentWork\Views\SW_Ask_Main\PaperAdminView.cshtml" />
  7033. <Content Include="Areas\StudentWork\Views\SW_Ask_Main\PaperView.cshtml" />
  7034. <Content Include="Areas\StudentWork\Views\SW_Ask_Main\StudentIndex.cshtml" />
  7035. <Content Include="Areas\StudentWork\Views\SW_Ask_Main_Question\Form.cshtml" />
  7036. <Content Include="Areas\StudentWork\Views\SW_Ask_Main_Question\Index.cshtml" />
  7037. <Content Include="Areas\StudentWork\Views\SW_Ask_QuestionItems\Form.cshtml" />
  7038. <Content Include="Areas\StudentWork\Views\SW_Ask_QuestionItems\Index.cshtml" />
  7039. <Content Include="Areas\StudentWork\Views\SW_Ask_Question\Form.cshtml" />
  7040. <Content Include="Areas\StudentWork\Views\SW_Ask_Question\Index.cshtml" />
  7041. <Content Include="Areas\StudentWork\Views\SW_Ask_Question\MainIndex.cshtml" />
  7042. <Content Include="Areas\StudentWork\Views\SW_Ask_Question\SelectIndex.cshtml" />
  7043. <Content Include="Areas\LogisticsManagement\Views\APAppointmentPsychologist\Form.cshtml" />
  7044. <Content Include="Areas\LogisticsManagement\Views\APAppointmentPsychologist\Index.cshtml" />
  7045. <Content Include="Areas\StudentWork\Views\SW_Ask_Type\FormView.cshtml" />
  7046. <Content Include="Areas\EducationalAdministration\Views\StuScore\ScoreQueryAllIndex.cshtml" />
  7047. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasic\CreateGraduateNo.cshtml" />
  7048. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasic\CreateGraduateNoForm.cshtml" />
  7049. <Content Include="Areas\EducationalAdministration\Views\StuScore\ScoreQueryAllIndexTeacher.cshtml" />
  7050. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasic\Graduate.cshtml" />
  7051. <Content Include="Areas\StudentWork\Views\SW_Ask_Main\ApplyIndex.cshtml" />
  7052. <Content Include="Areas\StudentWork\Views\SW_HolidayGo\StatisticIndex.cshtml" />
  7053. <Content Include="Areas\StudentWork\Views\SW_Ask_NotHaveAll_Type\AddIndex.cshtml" />
  7054. <Content Include="Areas\EducationalAdministration\Views\StuScore\GraduateScoreQueryAllIndex.cshtml" />
  7055. <Content Include="Areas\StudentWork\Views\SW_Ask_Batch\Form.cshtml" />
  7056. <Content Include="Areas\StudentWork\Views\SW_Ask_Batch\Index.cshtml" />
  7057. <Content Include="Areas\StudentWork\Views\SW_Ask_Batch_Type\AddIndex.cshtml" />
  7058. <Content Include="Areas\StudentWork\Views\SW_Ask_Batch_Type\Form.cshtml" />
  7059. <Content Include="Areas\StudentWork\Views\SW_Ask_Batch_Type\Index.cshtml" />
  7060. <Content Include="Areas\AdmissionsPlatform\Views\AP_OnlineUserInfo\BindTeacherForm.cshtml" />
  7061. <Content Include="Areas\AdmissionsPlatform\Views\AP_OnlineUserInfo\PaymentForm.cshtml" />
  7062. <Content Include="Areas\AdmissionsPlatform\Views\AP_OnlineUserInfo\ReportForm.cshtml" />
  7063. <Content Include="Areas\AdmissionsPlatform\Views\AP_OnlineUserInfo\RegistrateForm.cshtml" />
  7064. <Content Include="Areas\LogisticsManagement\Views\CompanyNews\Form.cshtml" />
  7065. <Content Include="Areas\LogisticsManagement\Views\CompanyNews\Index.cshtml" />
  7066. <Content Include="Areas\EducationalAdministration\Views\StuEnroll\AmountForm.cshtml" />
  7067. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\MonitorIndexRenShi.cshtml" />
  7068. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\MonitorIndexXingZhen.cshtml" />
  7069. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\MonitorIndexZiChan.cshtml" />
  7070. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\MonitorIndexGongWen.cshtml" />
  7071. <Content Include="Areas\EducationalAdministration\Views\Sys_SendFile\IndexParty.cshtml" />
  7072. <Content Include="Areas\EducationalAdministration\Views\Sys_SendFile\FormParty.cshtml" />
  7073. <Content Include="Areas\EducationalAdministration\Views\Sys_SendFile\FormPartyView.cshtml" />
  7074. <Content Include="Areas\EducationalAdministration\Views\Sys_SendFile\ReadListParty.cshtml" />
  7075. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveFile\IndexParty.cshtml" />
  7076. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveFile\FormParty.cshtml" />
  7077. <Content Include="Areas\PersonnelManagement\Views\StuSaverecord\IndexForTeacher.cshtml" />
  7078. <Content Include="Areas\PersonnelManagement\Views\StuSaverecord\IndexForStudent.cshtml" />
  7079. <Content Include="Areas\EducationalAdministration\Views\StuConsumption\IndexForTeacher.cshtml" />
  7080. <Content Include="Areas\EducationalAdministration\Views\StuConsumption\IndexForStudent.cshtml" />
  7081. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\FormDC.cshtml" />
  7082. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\IndexDC.cshtml" />
  7083. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\AllocationClassDC.cshtml" />
  7084. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasic\IndexInClass.cshtml" />
  7085. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasic\IndexOfDC.cshtml" />
  7086. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasic\FormOfDC.cshtml" />
  7087. <Content Include="Areas\EducationalAdministration\Views\EmpInfo\IndexOfDC.cshtml" />
  7088. <Content Include="Areas\AssetManagementSystem\Views\Allocation\Form.cshtml" />
  7089. <Content Include="Areas\AssetManagementSystem\Views\Allocation\Index.cshtml" />
  7090. <Content Include="Areas\AssetManagementSystem\Views\AssReport\AssAddReport.cshtml" />
  7091. <Content Include="Areas\AssetManagementSystem\Views\AssReport\AssStatusReport.cshtml" />
  7092. <Content Include="Areas\AssetManagementSystem\Views\AssReport\AssTypeReport.cshtml" />
  7093. <Content Include="Areas\AssetManagementSystem\Views\AssScrap\Form.cshtml" />
  7094. <Content Include="Areas\AssetManagementSystem\Views\AssScrap\FormView.cshtml" />
  7095. <Content Include="Areas\AssetManagementSystem\Views\AssScrap\Index.cshtml" />
  7096. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsChangeItem\Form.cshtml" />
  7097. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsChangeItem\Index.cshtml" />
  7098. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsChange\Form.cshtml" />
  7099. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsChange\Index.cshtml" />
  7100. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoApply\Form.cshtml" />
  7101. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoApply\FormJY.cshtml" />
  7102. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoApply\FormJYHC.cshtml" />
  7103. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoApply\FormPurchase.cshtml" />
  7104. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoApply\FormPurchaseJY.cshtml" />
  7105. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoApply\FormView.cshtml" />
  7106. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoApply\FormViewJY.cshtml" />
  7107. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoApply\Index.cshtml" />
  7108. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoApply\IndexJY.cshtml" />
  7109. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoApply\IndexJYHC.cshtml" />
  7110. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoItemApply\Form.cshtml" />
  7111. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoItemApply\FormPurchase.cshtml" />
  7112. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoItemApply\Index.cshtml" />
  7113. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoItem\Form.cshtml" />
  7114. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoItem\FormView.cshtml" />
  7115. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoItem\Index.cshtml" />
  7116. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoItem\IndexOfMy.cshtml" />
  7117. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoItem\IndexScrap.cshtml" />
  7118. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoItem\IndexTwo.cshtml" />
  7119. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfoItem\QRPrint.cshtml" />
  7120. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfo\Form.cshtml" />
  7121. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsInfo\Index.cshtml" />
  7122. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsOutApplyIncomplete\Form.cshtml" />
  7123. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsOutApplyIncomplete\FormItem.cshtml" />
  7124. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsOutApplyIncomplete\Index.cshtml" />
  7125. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsOutApply\Form.cshtml" />
  7126. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsOutApply\FormView.cshtml" />
  7127. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsOutApply\Index.cshtml" />
  7128. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsOutItemApply\Form.cshtml" />
  7129. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsOutItemApply\Index.cshtml" />
  7130. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsType\Form.cshtml" />
  7131. <Content Include="Areas\AssetManagementSystem\Views\Ass_AssetsType\Index.cshtml" />
  7132. <Content Include="Areas\AssetManagementSystem\Views\Ass_InventoryItemApply\Form.cshtml" />
  7133. <Content Include="Areas\AssetManagementSystem\Views\Ass_InventoryItemApply\Index.cshtml" />
  7134. <Content Include="Areas\AssetManagementSystem\Views\Ass_Inventory\Form.cshtml" />
  7135. <Content Include="Areas\AssetManagementSystem\Views\Ass_Inventory\FormView.cshtml" />
  7136. <Content Include="Areas\AssetManagementSystem\Views\Ass_Inventory\Index.cshtml" />
  7137. <Content Include="Areas\AssetManagementSystem\Views\Ass_PurchaseApply\Form.cshtml" />
  7138. <Content Include="Areas\AssetManagementSystem\Views\Ass_PurchaseApply\FormView.cshtml" />
  7139. <Content Include="Areas\AssetManagementSystem\Views\Ass_PurchaseApply\Index.cshtml" />
  7140. <Content Include="Areas\AssetManagementSystem\Views\Ass_PurchaseItemApply\Form.cshtml" />
  7141. <Content Include="Areas\AssetManagementSystem\Views\Ass_PurchaseItemApply\Index.cshtml" />
  7142. <Content Include="Areas\AssetManagementSystem\Views\Ass_PurchaseItem\Form.cshtml" />
  7143. <Content Include="Areas\AssetManagementSystem\Views\Ass_PurchaseItem\Index.cshtml" />
  7144. <Content Include="Areas\AssetManagementSystem\Views\Ass_Purchase\Form.cshtml" />
  7145. <Content Include="Areas\AssetManagementSystem\Views\Ass_Purchase\FormView.cshtml" />
  7146. <Content Include="Areas\AssetManagementSystem\Views\Ass_Purchase\Index.cshtml" />
  7147. <Content Include="Areas\AssetManagementSystem\Views\Ass_Purchase\StartForm.cshtml" />
  7148. <Content Include="Areas\AssetManagementSystem\Views\Ass_ReceiveItem\Form.cshtml" />
  7149. <Content Include="Areas\AssetManagementSystem\Views\Ass_ReceiveItem\Index.cshtml" />
  7150. <Content Include="Areas\AssetManagementSystem\Views\Ass_Receive\Form.cshtml" />
  7151. <Content Include="Areas\AssetManagementSystem\Views\Ass_Receive\Index.cshtml" />
  7152. <Content Include="Areas\AssetManagementSystem\Views\Ass_Recycle\Form.cshtml" />
  7153. <Content Include="Areas\AssetManagementSystem\Views\Ass_Recycle\Index.cshtml" />
  7154. <Content Include="Areas\AssetManagementSystem\Views\Ass_RepairItem\Form.cshtml" />
  7155. <Content Include="Areas\AssetManagementSystem\Views\Ass_RepairItem\Index.cshtml" />
  7156. <Content Include="Areas\AssetManagementSystem\Views\Ass_Repair\Form.cshtml" />
  7157. <Content Include="Areas\AssetManagementSystem\Views\Ass_Repair\FormView.cshtml" />
  7158. <Content Include="Areas\AssetManagementSystem\Views\Ass_Repair\Index.cshtml" />
  7159. <Content Include="Areas\AssetManagementSystem\Views\Ass_ScrapItem\Form.cshtml" />
  7160. <Content Include="Areas\AssetManagementSystem\Views\Ass_ScrapItem\Index.cshtml" />
  7161. <Content Include="Areas\AssetManagementSystem\Views\Ass_Storage\Form.cshtml" />
  7162. <Content Include="Areas\AssetManagementSystem\Views\Ass_Storage\Index.cshtml" />
  7163. <Content Include="Areas\AssetManagementSystem\Views\Ass_Supplier\Form.cshtml" />
  7164. <Content Include="Areas\AssetManagementSystem\Views\Ass_Supplier\Index.cshtml" />
  7165. <Content Include="Areas\AssetManagementSystem\Views\Ass_UserChangeInfo\Form.cshtml" />
  7166. <Content Include="Areas\AssetManagementSystem\Views\Ass_UserChangeInfo\Index.cshtml" />
  7167. <Content Include="Areas\AssetManagementSystem\Views\Ass_Warning\Form.cshtml" />
  7168. <Content Include="Areas\AssetManagementSystem\Views\Ass_Warning\Index.cshtml" />
  7169. <Content Include="Areas\AssetManagementSystem\Views\web.config" />
  7170. <Content Include="Areas\EducationalAdministration\Views\ArrangeLessonTerm\ClearByConditionForm.cshtml" />
  7171. <Content Include="Areas\EducationalAdministration\Views\JournalSend\IndexOfDC.cshtml" />
  7172. <Content Include="Areas\EducationalAdministration\Views\JournalSend\FormOfDC.cshtml" />
  7173. <Content Include="Areas\AssetManagementSystem\Views\Ass_Receive\FormView.cshtml" />
  7174. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\SchoolUniform.cshtml" />
  7175. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\SelectUserForm.cshtml" />
  7176. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\SignForm.cshtml" />
  7177. <Content Include="Areas\LR_NewWorkFlow\Views\StampInfo\EqualForm.cshtml" />
  7178. <Content Include="Areas\LR_NewWorkFlow\Views\StampInfo\Form.cshtml" />
  7179. <Content Include="Areas\LR_NewWorkFlow\Views\StampInfo\Index.cshtml" />
  7180. <Content Include="Areas\LR_NewWorkFlow\Views\StampInfo\StampDetailIndex.cshtml" />
  7181. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\AddTaskForm.cshtml" />
  7182. <Content Include="Areas\LR_CodeGeneratorModule\Views\TemplatePC\WxCustmerCodeIndex.cshtml" />
  7183. <Content Include="Areas\LR_CodeGeneratorModule\Views\CodeSchema\Form.cshtml" />
  7184. <Content Include="Areas\LR_CodeGeneratorModule\Views\CodeSchema\Index.cshtml" />
  7185. <Content Include="Areas\EducationalAdministration\Views\StuInfoBasic\Print.cshtml" />
  7186. <Content Include="Areas\LR_DisplayBoard\Views\LR_KBConfigInfo\ChartForm.cshtml" />
  7187. <Content Include="Areas\LR_DisplayBoard\Views\LR_KBConfigInfo\ColStatisForm.cshtml" />
  7188. <Content Include="Areas\LR_DisplayBoard\Views\LR_KBConfigInfo\StatisticsForm.cshtml" />
  7189. <Content Include="Areas\LR_DisplayBoard\Views\LR_KBConfigInfo\TableForm.cshtml" />
  7190. <Content Include="Areas\LR_DisplayBoard\Views\LR_KBFeaManage\Form.cshtml" />
  7191. <Content Include="Areas\LR_DisplayBoard\Views\LR_KBFeaManage\Index.cshtml" />
  7192. <Content Include="Areas\LR_DisplayBoard\Views\LR_KBKanBanInfo\Form.cshtml" />
  7193. <Content Include="Areas\LR_DisplayBoard\Views\LR_KBKanBanInfo\Index.cshtml" />
  7194. <Content Include="Areas\LR_DisplayBoard\Views\LR_KBKanBanInfo\PreviewForm.cshtml" />
  7195. <Content Include="Areas\LR_DisplayBoard\Views\web.config" />
  7196. <Content Include="Areas\LR_PortalSite\Views\Article\Form.cshtml" />
  7197. <Content Include="Areas\LR_PortalSite\Views\Article\Index.cshtml" />
  7198. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\AddTabForm.cshtml" />
  7199. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\BottomMenuForm.cshtml" />
  7200. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\BottomMenuIndex.cshtml" />
  7201. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\Index.cshtml" />
  7202. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\ModuleForm1.cshtml" />
  7203. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\ModuleForm2.cshtml" />
  7204. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\ModuleForm3.cshtml" />
  7205. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\ModuleForm4.cshtml" />
  7206. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\ModuleForm5.cshtml" />
  7207. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\PictureForm.cshtml" />
  7208. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\SelectModuleForm.cshtml" />
  7209. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\SetTextForm.cshtml" />
  7210. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\TopMenuForm.cshtml" />
  7211. <Content Include="Areas\LR_PortalSite\Views\HomeConfig\TopMenuIndex.cshtml" />
  7212. <Content Include="Areas\LR_PortalSite\Views\Page\Form.cshtml" />
  7213. <Content Include="Areas\LR_PortalSite\Views\Page\Index.cshtml" />
  7214. <Content Include="Areas\LR_PortalSite\Views\Page\SelectForm.cshtml" />
  7215. <Content Include="Areas\LR_PortalSite\Views\Page\SetCategoryForm.cshtml" />
  7216. <Content Include="Areas\LR_PortalSite\Views\Page\SetContentForm.cshtml" />
  7217. <Content Include="Areas\LR_PortalSite\Views\Page\SetNameForm.cshtml" />
  7218. <Content Include="Areas\LR_PortalSite\Views\web.config" />
  7219. <Content Include="Areas\LR_TaskScheduling\Views\TaskDesign\AddDetailedForm.cshtml" />
  7220. <Content Include="Areas\LR_TaskScheduling\Views\TaskDesign\Form.cshtml" />
  7221. <Content Include="Areas\LR_TaskScheduling\Views\TaskDesign\Index.cshtml" />
  7222. <Content Include="Areas\LR_TaskScheduling\Views\TaskDesign\SelectExpressForm.cshtml" />
  7223. <Content Include="Areas\LR_TaskScheduling\Views\TSLog\Form.cshtml" />
  7224. <Content Include="Areas\LR_TaskScheduling\Views\TSLog\Index.cshtml" />
  7225. <Content Include="Areas\LR_TaskScheduling\Views\TSScheme\AddDetailedForm.cshtml" />
  7226. <Content Include="Areas\LR_TaskScheduling\Views\TSScheme\Form.cshtml" />
  7227. <Content Include="Areas\LR_TaskScheduling\Views\TSScheme\Index.cshtml" />
  7228. <Content Include="Areas\LR_TaskScheduling\Views\TSScheme\SelectExpressForm.cshtml" />
  7229. <Content Include="Areas\LR_TaskScheduling\Views\web.config" />
  7230. <Content Include="Content\laypage\laypage.min.js.map" />
  7231. <Content Include="Areas\LR_CodeDemo\Views\GantProject\Form.cshtml" />
  7232. <Content Include="Areas\LR_CodeDemo\Views\GantProject\Gant.cshtml" />
  7233. <Content Include="Areas\LR_CodeDemo\Views\GantProject\Index.cshtml" />
  7234. <Content Include="Areas\LR_CodeDemo\Views\GantProject\Project.cshtml" />
  7235. <Content Include="Areas\LR_CodeDemo\Views\GantProject\ProjectDetail.cshtml" />
  7236. <Content Include="Areas\LR_CodeDemo\Views\GanttDemo\Index1.cshtml" />
  7237. <Content Include="Areas\LR_CodeDemo\Views\GanttDemo\Index2.cshtml" />
  7238. <Content Include="Areas\LR_CodeDemo\Views\GanttDemo\Index3.cshtml" />
  7239. <Content Include="Areas\LR_CodeDemo\Views\GanttDemo\Index4.cshtml" />
  7240. <Content Include="Areas\LR_CodeDemo\Views\ImgShow\Demo1.cshtml" />
  7241. <Content Include="Areas\LR_CodeDemo\Views\ImgShow\Demo2.cshtml" />
  7242. <Content Include="Areas\LR_CodeDemo\Views\ImgShow\Demo3.cshtml" />
  7243. <Content Include="Areas\LR_CodeDemo\Views\StockDemo\Form.cshtml" />
  7244. <Content Include="Areas\LR_CodeDemo\Views\StockDemo\Index.cshtml" />
  7245. <Content Include="Areas\LR_CodeDemo\Views\StockDemo\Stock.cshtml" />
  7246. <Content Include="Areas\LR_CodeDemo\Views\WorkOrder\Form.cshtml" />
  7247. <Content Include="Areas\LR_CodeDemo\Views\WorkOrder\Index.cshtml" />
  7248. <Content Include="Areas\LR_SystemModule\Views\Files\FileAuthAddFrom.cshtml" />
  7249. <Content Include="Areas\LR_SystemModule\Views\Files\FileAuthFrom.cshtml" />
  7250. <Content Include="Areas\LR_SystemModule\Views\Files\FileAuthIndex.cshtml" />
  7251. <Content Include="Areas\LR_SystemModule\Views\Files\FileHistroyIndex.cshtml" />
  7252. <Content Include="Areas\LR_SystemModule\Views\Files\FolderForm.cshtml" />
  7253. <Content Include="Areas\LR_SystemModule\Views\Files\FolderIndex.cshtml" />
  7254. <Content Include="Areas\LR_SystemModule\Views\Files\Form.cshtml" />
  7255. <Content Include="Areas\LR_SystemModule\Views\Files\Index.cshtml" />
  7256. <Content Include="Areas\LogisticsManagement\Views\ADR_Record\AttendanceReportByWeek.cshtml" />
  7257. <Content Include="Areas\LogisticsManagement\Views\ADR_Record\Report.mrt" />
  7258. <Content Include="Areas\EducationalAdministration\Views\EADateArrange\InitByConditionForm.cshtml" />
  7259. <Content Include="Areas\LogisticsManagement\Views\ADR_Record\StatisticIndex.cshtml" />
  7260. <Content Include="Areas\LogisticsManagement\Views\ADR_Record\StatisticDetailIndex.cshtml" />
  7261. <Content Include="Areas\EducationalAdministration\Views\StuScore\StuScoreQueryIndex.cshtml" />
  7262. <Content Include="Areas\AdmissionsPlatform\Views\AP_OnlineUserInfo\DropOutIndex.cshtml" />
  7263. <Content Include="Areas\AdmissionsPlatform\Views\AP_OnlineUserInfo\PaymentIndex.cshtml" />
  7264. <Content Include="Areas\AdmissionsPlatform\Views\AP_OnlineUserInfo\ReportIndex.cshtml" />
  7265. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\LoanForm.cshtml" />
  7266. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\OnsitePayForm.cshtml" />
  7267. <Content Include="Areas\EducationalAdministration\Views\Sys_SendFile\IssueForm.cshtml" />
  7268. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveFile\SpecifyReceiverForm.cshtml" />
  7269. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveDocument\IssueForm.cshtml" />
  7270. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveDocument\ReadList.cshtml" />
  7271. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveFile\IndexGWJS.cshtml" />
  7272. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\StatusView.cshtml" />
  7273. <Content Include="Areas\EducationalAdministration\Views\StuInfoFresh\StatisticClassIndex.cshtml" />
  7274. <Content Include="Areas\LR_Desktop\Views\WeChatDevelop\Form.cshtml" />
  7275. <Content Include="Areas\LR_Desktop\Views\WeChatDevelop\Index.cshtml" />
  7276. <Content Include="Areas\PersonnelManagement\Views\Sal_UserSalary\ImportForm.cshtml" />
  7277. <Content Include="Areas\EducationalAdministration\Views\EmpInfo\ImportForm.cshtml" />
  7278. <Content Include="Areas\LR_OAModule\Views\Notice\IndexFlow.cshtml" />
  7279. <Content Include="Areas\LR_OAModule\Views\Notice\FormFlow.cshtml" />
  7280. <Content Include="Areas\LR_OAModule\Views\Notice\FormFlowView.cshtml" />
  7281. <Content Include="Areas\AssetManagementSystem\Views\Ass_AllocationItem\Form.cshtml" />
  7282. <Content Include="Areas\AssetManagementSystem\Views\Ass_AllocationItem\Index.cshtml" />
  7283. <Content Include="Areas\AssetManagementSystem\Views\Ass_Acceptance\ViewForm.cshtml" />
  7284. <Content Include="Areas\EducationalAdministration\Views\LoginUserBind\BindAccountIndex.cshtml" />
  7285. <Content Include="Areas\EducationalAdministration\Views\StuAttendanceLeave\IndexInStudent.cshtml" />
  7286. <Content Include="Areas\EducationalAdministration\Views\StuLeaveManagement\CheckForm.cshtml" />
  7287. <Content Include="Areas\EducationalAdministration\Views\StuLeaveManagement\CheckIndex.cshtml" />
  7288. <Content Include="Areas\EducationalAdministration\Views\Thermography\IndexResult.cshtml" />
  7289. <Content Include="Areas\PersonnelManagement\Views\MeetingManagement\FormView.cshtml" />
  7290. <Content Include="Areas\PersonnelManagement\Views\MeetingManagement\IndexOfMyApply.cshtml" />
  7291. <Content Include="Areas\PersonnelManagement\Views\FundExaminer\Form.cshtml" />
  7292. <Content Include="Areas\PersonnelManagement\Views\FundExaminer\Index.cshtml" />
  7293. <Content Include="Areas\PersonnelManagement\Views\MeetingNotice\Form.cshtml" />
  7294. <Content Include="Areas\PersonnelManagement\Views\MeetingNotice\Index.cshtml" />
  7295. <Content Include="Areas\PersonnelManagement\Views\ResearchMent\Form.cshtml" />
  7296. <Content Include="Areas\PersonnelManagement\Views\ResearchMent\Index.cshtml" />
  7297. <Content Include="Areas\LR_Desktop\Views\MessageRind\Form.cshtml" />
  7298. <Content Include="Areas\LR_Desktop\Views\MessageRind\Index.cshtml" />
  7299. <Content Include="Areas\LR_Desktop\Views\MessageRind\UnreadIndex.cshtml" />
  7300. <Content Include="Areas\LR_Desktop\Views\SSO_Drag_CardSortManage\Form.cshtml" />
  7301. <Content Include="Areas\LR_Desktop\Views\SSO_Drag_CardSortManage\Index.cshtml" />
  7302. <Content Include="Areas\LR_Desktop\Views\SSO_Drag_DesktopManage\Form.cshtml" />
  7303. <Content Include="Areas\LR_Desktop\Views\SSO_Drag_DesktopManage\Index.cshtml" />
  7304. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\StatisticCountIndex.cshtml" />
  7305. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\StatisticTimeForm.cshtml" />
  7306. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\StatisticTimeIndex.cshtml" />
  7307. <Content Include="Areas\LR_ReportModule\Views\ReportTemplate\NWFSchemeReport.cshtml" />
  7308. <Content Include="Areas\EducationalAdministration\Views\Sys_ReceiveDocument\PrintView.cshtml" />
  7309. <Content Include="Areas\LR_SystemModule\Views\Log\ApiIndex.cshtml" />
  7310. <Content Include="Areas\LR_SystemModule\Views\Log\ApiIndex.cshtml" />
  7311. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\ContractFilingMonitor.cshtml" />
  7312. <Content Include="Areas\Permission\Views\Perm_FunctionVisit\IndexForCount.cshtml" />
  7313. <Content Include="Areas\Ask\Views\Ask_MainOfTeacher\AnswerIndex.cshtml" />
  7314. <Content Include="Areas\Ask\Views\Ask_MainOfTeacher\AnswerQuery.cshtml" />
  7315. <Content Include="Areas\Ask\Views\Ask_MainOfTeacher\Form.cshtml" />
  7316. <Content Include="Areas\Ask\Views\Ask_MainOfTeacher\Index.cshtml" />
  7317. <Content Include="Areas\Ask\Views\Ask_MainOfTeacher\Paper.cshtml" />
  7318. <Content Include="Areas\Ask\Views\Ask_MainOfTeacher\PaperAdminView.cshtml" />
  7319. <Content Include="Areas\Ask\Views\Ask_MainOfTeacher\PaperView.cshtml" />
  7320. <Content Include="Areas\Ask\Views\Ask_MainOfTeacher\TeacherIndex.cshtml" />
  7321. <Content Include="Areas\LR_OrganizationModule\Views\User\FamilyIndex.cshtml" />
  7322. <Content Include="Areas\PersonnelManagement\Views\MeetingManagement\IndexOfMyJoin.cshtml" />
  7323. <Content Include="Areas\CustomFunction\Views\web.config" />
  7324. <Content Include="Areas\EducationalAdministration\Views\Dispatch\Form.cshtml" />
  7325. <Content Include="Areas\EducationalAdministration\Views\Dispatch\FormView.cshtml" />
  7326. <Content Include="Areas\EducationalAdministration\Views\Dispatch\Index.cshtml" />
  7327. <Content Include="Areas\EducationalAdministration\Views\Dispatch\Print.cshtml" />
  7328. <Content Include="Areas\EducationalAdministration\Views\StuInfoSemster\Form.cshtml" />
  7329. <Content Include="Areas\EducationalAdministration\Views\StuInfoSemster\Index.cshtml" />
  7330. <Content Include="Areas\PersonnelManagement\Views\LeagueMember\ModifyForm.cshtml" />
  7331. <Content Include="Areas\EducationalAdministration\Views\StuSubsideManage\CheckForm.cshtml" />
  7332. <Content Include="Areas\EducationalAdministration\Views\StuSubsideManage\CheckIndex.cshtml" />
  7333. <Content Include="Areas\PersonnelManagement\Views\WorkStudyPositionApply\FormView.cshtml" />
  7334. <Content Include="Areas\PersonnelManagement\Views\WorkStudyPositionApply\CheckIndex.cshtml" />
  7335. <Content Include="Areas\EducationalAdministration\Views\Dispatch\ReadForm.cshtml" />
  7336. <Content Include="Areas\EducationalAdministration\Views\Dispatch\SelectForm.cshtml" />
  7337. <Content Include="Areas\EducationalAdministration\Views\Dispatch\ReadIndex.cshtml" />
  7338. <Content Include="Areas\LR_OAModule\Views\LostArticleInfo\Form.cshtml" />
  7339. <Content Include="Areas\LR_OAModule\Views\LostArticleInfo\FormClaim.cshtml" />
  7340. <Content Include="Areas\LR_OAModule\Views\LostArticleInfo\FormView.cshtml" />
  7341. <Content Include="Areas\LR_OAModule\Views\LostArticleInfo\Index.cshtml" />
  7342. <Content Include="Areas\PersonnelManagement\Views\MP_ManagementPlan\Form.cshtml" />
  7343. <Content Include="Areas\PersonnelManagement\Views\MP_ManagementPlan\Index.cshtml" />
  7344. <Content Include="Areas\PersonnelManagement\Views\MP_ManagementPlan\IndexChildren.cshtml" />
  7345. <Content Include="Areas\PersonnelManagement\Views\MP_ManagementPlan\IndexManagement.cshtml" />
  7346. <Content Include="Areas\PersonnelManagement\Views\MP_ManagementPlan\UploadForm.cshtml" />
  7347. <Content Include="Areas\PersonnelManagement\Views\MP_PerformanceTracking\Form.cshtml" />
  7348. <Content Include="Areas\PersonnelManagement\Views\MP_PerformanceTracking\Index.cshtml" />
  7349. <Content Include="Areas\PersonnelManagement\Views\MP_PerformanceTracking\IndexChildren.cshtml" />
  7350. <Content Include="Areas\PersonnelManagement\Views\MP_PerformanceTracking\IndexManagement.cshtml" />
  7351. <Content Include="Areas\PersonnelManagement\Views\MP_PerformanceTracking\UploadForm.cshtml" />
  7352. <Content Include="Areas\PersonnelManagement\Views\MP_QualityObjectives\Form.cshtml" />
  7353. <Content Include="Areas\PersonnelManagement\Views\MP_QualityObjectives\Index.cshtml" />
  7354. <Content Include="Areas\PersonnelManagement\Views\MP_QualityObjectives\IndexChildren.cshtml" />
  7355. <Content Include="Areas\PersonnelManagement\Views\MP_QualityObjectives\IndexManagement.cshtml" />
  7356. <Content Include="Areas\PersonnelManagement\Views\MP_QualityObjectives\UploadForm.cshtml" />
  7357. <Content Include="Areas\LR_FormModule\Views\FormRelation\ColFieldForm.cshtml" />
  7358. <Content Include="Areas\LR_FormModule\Views\FormRelation\Form.cshtml" />
  7359. <Content Include="Areas\LR_FormModule\Views\FormRelation\Index.cshtml" />
  7360. <Content Include="Areas\LR_FormModule\Views\FormRelation\PreviewIndex.cshtml" />
  7361. <Content Include="Areas\LR_FormModule\Views\FormRelation\QueryFieldForm.cshtml" />
  7362. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\LeaderLeaveFiling.cshtml" />
  7363. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\LeaderLeaveFilingMonitor.cshtml" />
  7364. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\LeaveFiling.cshtml" />
  7365. <Content Include="Areas\LR_NewWorkFlow\Views\NWFProcess\LeaveFilingMonitor.cshtml" />
  7366. <Content Include="Areas\EducationalAdministration\Views\FillinFrom\Form.cshtml" />
  7367. <Content Include="Areas\EducationalAdministration\Views\FillinFrom\FormIndex.cshtml" />
  7368. <Content Include="Areas\EducationalAdministration\Views\FillinFrom\FormPeople.cshtml" />
  7369. <Content Include="Areas\EducationalAdministration\Views\FillinFrom\Index.cshtml" />
  7370. <Content Include="Areas\LR_Desktop\Views\CalculateProject\Form.cshtml" />
  7371. <Content Include="Areas\LR_Desktop\Views\CalculateProject\Index.cshtml" />
  7372. <Content Include="Areas\LR_Desktop\Views\FormulaChild\Form.cshtml" />
  7373. <Content Include="Areas\LR_Desktop\Views\FormulaChild\Index.cshtml" />
  7374. <Content Include="Areas\LR_Desktop\Views\FormulaMain\Form.cshtml" />
  7375. <Content Include="Areas\LR_Desktop\Views\FormulaMain\FormChild.cshtml" />
  7376. <Content Include="Areas\LR_Desktop\Views\FormulaMain\Index.cshtml" />
  7377. <Content Include="Areas\LR_Desktop\Views\QualityReport\Form.cshtml" />
  7378. <Content Include="Areas\LR_Desktop\Views\QualityReport\FormView.cshtml" />
  7379. <Content Include="Areas\LR_Desktop\Views\QualityReport\Index.cshtml" />
  7380. <Content Include="Areas\LR_Desktop\Views\QualityReport\IndexReport.cshtml" />
  7381. <Content Include="Areas\PersonnelManagement\Views\FD_BudgetFile\Form.cshtml" />
  7382. <Content Include="Areas\PersonnelManagement\Views\FD_BudgetFile\Index.cshtml" />
  7383. <Content Include="Areas\ReceiveSendFeeManagement\Views\FD_BudgetBasics\Form.cshtml" />
  7384. <Content Include="Areas\ReceiveSendFeeManagement\Views\FD_BudgetBasics\Index.cshtml" />
  7385. <Content Include="Areas\ReceiveSendFeeManagement\Views\FD_IncomeManage\Form.cshtml" />
  7386. <Content Include="Areas\ReceiveSendFeeManagement\Views\FD_IncomeManage\Form2.cshtml" />
  7387. <Content Include="Areas\ReceiveSendFeeManagement\Views\FD_IncomeManage\Form3.cshtml" />
  7388. <Content Include="Areas\ReceiveSendFeeManagement\Views\FD_IncomeManage\Index.cshtml" />
  7389. <Content Include="Areas\ReceiveSendFeeManagement\Views\FD_PayManage\Form.cshtml" />
  7390. <Content Include="Areas\ReceiveSendFeeManagement\Views\FD_PayManage\FormPublic.cshtml" />
  7391. <Content Include="Areas\ReceiveSendFeeManagement\Views\FD_PayManage\Index.cshtml" />
  7392. <Content Include="Areas\ReceiveSendFeeManagement\Views\FD_PayManage\PrintPublic.cshtml" />
  7393. <Content Include="Areas\ReceiveSendFeeManagement\Views\FD_PayManage\PrintSpecial.cshtml" />
  7394. <Content Include="Areas\CustomFunction\Views\SRProjectBasic\IndexTJ.cshtml" />
  7395. <Content Include="Areas\CustomFunction\Views\SRProjectAchievement\IndexYJ.cshtml" />
  7396. <Content Include="Areas\CustomFunction\Views\SRProjectBasic\IndexCompleted.cshtml" />
  7397. <Content Include="Areas\CustomFunction\Views\SRProjectBasic\IndexNoCompleted.cshtml" />
  7398. <Content Include="Areas\CustomFunction\Views\SRProjectBasic\FormNoCompleted.cshtml" />
  7399. <Content Include="Areas\CustomFunction\Views\PaperManage\IndexReport.cshtml" />
  7400. <Content Include="Areas\CustomFunction\Views\FundsManageMain\IndexCheck.cshtml" />
  7401. <Content Include="Areas\CustomFunction\Views\ExpendedManageMain\IndexCheck.cshtml" />
  7402. <Content Include="Areas\CustomFunction\Views\FundsManageMain\IndexStatistics.cshtml" />
  7403. <Content Include="Areas\CustomFunction\Views\ExpendedManageMain\IndexStatistics.cshtml" />
  7404. <Content Include="Areas\CustomFunction\Views\SRAchievements\IndexStatistics.cshtml" />
  7405. <Content Include="Areas\CustomFunction\Views\SRAchievements\IndexStatisticsForPeople.cshtml" />
  7406. <None Include="Properties\PublishProfiles\CustomProfile.pubxml" />
  7407. <Content Include="Areas\PersonnelManagement\Views\MeetingManagement\IndexOfMyJoin.cshtml" />
  7408. <Content Include="Areas\PersonnelManagement\Views\MeetingSignInRecord\IndexAttendance.cshtml" />
  7409. <Content Include="Areas\PersonnelManagement\Views\MeetingSignInRecord\FormViewAttendance.cshtml" />
  7410. <Content Include="Areas\PersonnelManagement\Views\MeetingManagement\IndexStatistics.cshtml" />
  7411. <None Include="Properties\PublishProfiles\FolderProfile.pubxml" />
  7412. <Content Include="Views\Login\Default-beifen.cshtml" />
  7413. <None Include="Properties\PublishProfiles\FolderProfile1.pubxml" />
  7414. <Content Include="Views\SSOSystem\GoTo.cshtml" />
  7415. <Content Include="Views\SSOSystem\_LayoutSSO.cshtml" />
  7416. <Content Include="Views\SSOSystem\Index.cshtml" />
  7417. <Content Include="Views\SSOSystem\Work.cshtml" />
  7418. <Content Include="Views\SSOSystem\UserService.cshtml" />
  7419. <Content Include="Views\SSOSystem\NewsDetail.cshtml" />
  7420. <Content Include="Views\SSOSystem\NewsList.cshtml" />
  7421. <Content Include="Views\ShowRegister\Index.cshtml" />
  7422. <Content Include="Views\SSOSystem\Check.cshtml" />
  7423. <Content Include="Views\Home\GoTo.cshtml" />
  7424. <Content Include="Views\SSOSystem\FirstLogin.cshtml" />
  7425. <Content Include="Views\Home\DataBaseInit.cshtml" />
  7426. <Content Include="Views\Home\Guide.cshtml" />
  7427. <Content Include="Views\Home\HomeOfStudent.cshtml" />
  7428. <Content Include="Views\SSOSystem\_LayoutSSOTwo.cshtml" />
  7429. <Content Include="Views\SSOSystem\newsTwo.cshtml" />
  7430. <Content Include="Views\SSOSystem\workTwo.cshtml" />
  7431. <Content Include="Views\Home\NeedToDoForm.cshtml" />
  7432. <Content Include="Views\SSOSystem\NewList.cshtml" />
  7433. <Content Include="Views\SSOSystem\LanMail.cshtml" />
  7434. <Content Include="Views\SSOSystem\ReceiveFileList.cshtml" />
  7435. <Content Include="Views\SSOSystem\TaskList.cshtml" />
  7436. <Content Include="Views\SSOSystem\NoLogin.cshtml" />
  7437. <Content Include="Views\Shared\_WorkFlowNewForm.cshtml" />
  7438. <Content Include="Views\Login\PageOne.cshtml" />
  7439. <Content Include="Views\Login\PageTwo.cshtml" />
  7440. <Content Include="Views\Login\PageThree.cshtml" />
  7441. <Content Include="Views\Login\PageFour.cshtml" />
  7442. <Content Include="Views\Login\PageFive.cshtml" />
  7443. <Content Include="Views\Home\ChangePwd.cshtml" />
  7444. <Content Include="Views\UserCenter\IndexInTeacher.cshtml" />
  7445. <Content Include="Views\OnlineRegistrate\MajorInfo.cshtml" />
  7446. <Content Include="Views\OnlineRegistrate\MajorIntroduce.cshtml" />
  7447. <Content Include="Views\OnlineRegistrate\SignUp.cshtml" />
  7448. <Content Include="Views\OnlineRegistrate\SignUpSuccess.cshtml" />
  7449. <Content Include="Views\OnlineRegistrate\PaymentMoney.cshtml" />
  7450. <Content Include="Views\OnlineRegistrate\Login.cshtml" />
  7451. <Content Include="Views\OnlineRegistrate\RegistrateForm.cshtml" />
  7452. <Content Include="Views\OnlineRegistrate\RegistrateFormEdit.cshtml" />
  7453. <Content Include="Views\OnlineRegistrate\PasswordEdit.cshtml" />
  7454. <Content Include="Views\OnlineRegistrate\UseGuid.cshtml" />
  7455. <Content Include="Views\Login\PageSix.cshtml" />
  7456. <Content Include="Views\Home\DesktopNavigation.cshtml" />
  7457. <Content Include="Views\Home\DesktopNavigation1.cshtml" />
  7458. <Content Include="Views\Home\DesktopNavigation2.cshtml" />
  7459. <Content Include="Views\Home\DesktopNavigation3.cshtml" />
  7460. <Content Include="Views\Home\DesktopNavigation4.cshtml" />
  7461. <Content Include="Views\Home\AdminNavigation.cshtml" />
  7462. <Content Include="Views\UserCenter\IndexForDC.cshtml" />
  7463. <Content Include="Views\Shared\_AdminForDC.cshtml" />
  7464. <Content Include="Views\Home\AdminDefaultForDC.cshtml" />
  7465. <Content Include="Views\Home\AdminTheme5.cshtml" />
  7466. <Content Include="Views\Shared\_AllIndex.cshtml" />
  7467. <Content Include="Views\Shared\_jqGrid.cshtml" />
  7468. <Content Include="Views\Shared\_ReportForm.cshtml" />
  7469. <Content Include="Views\UserCenter\LanguageForm.cshtml" />
  7470. <Content Include="Views\Login\LoginForWeixin.cshtml" />
  7471. <Content Include="Views\Login\RegisterBind.cshtml" />
  7472. <Content Include="Views\Login\DefaultWxLogin.cshtml" />
  7473. <Content Include="Views\Login\PageFiveWxLogin.cshtml" />
  7474. <Content Include="Views\Login\PageFourWxLogin.cshtml" />
  7475. <Content Include="Views\Login\PageOneWxLogin.cshtml" />
  7476. <Content Include="Views\Login\PageSixWxLogin.cshtml" />
  7477. <Content Include="Views\Login\PageThreeWxLogin.cshtml" />
  7478. <Content Include="Views\Login\PageTwoWxLogin.cshtml" />
  7479. <Content Include="Views\Home\SSOApplication.cshtml" />
  7480. <Content Include="Views\Home\GoToApplication.cshtml" />
  7481. <Content Include="Views\SSOSystem\DragModelOne.cshtml" />
  7482. <Content Include="Views\SSOSystem\DragModelThree.cshtml" />
  7483. <Content Include="Views\SSOSystem\DragModelTwo.cshtml" />
  7484. <Content Include="Views\SSOSystem\DragNoLogin.cshtml" />
  7485. <Content Include="Views\SSOSystem\DragNoWxLogin.cshtml" />
  7486. <Content Include="Views\SSOSystem\_LayoutSSODrag.cshtml" />
  7487. <Content Include="Views\Login\PageSeven.cshtml" />
  7488. <Content Include="Views\Login\PageSevenWxLogin.cshtml" />
  7489. <None Include="Properties\PublishProfiles\FolderProfile2.pubxml" />
  7490. <None Include="Properties\PublishProfiles\FolderProfile3.pubxml" />
  7491. <None Include="Properties\PublishProfiles\FolderProfile4.pubxml" />
  7492. <None Include="Properties\PublishProfiles\learunadms6.1.pubxml" />
  7493. </ItemGroup>
  7494. <ItemGroup>
  7495. <WCFMetadata Include="Connected Services\" />
  7496. </ItemGroup>
  7497. <ItemGroup>
  7498. <Analyzer Include="..\packages\Microsoft.DependencyValidation.Analyzers.0.10.0\analyzers\dotnet\cs\Microsoft.DependencyValidation.Analyzers.resources.dll" />
  7499. <Analyzer Include="..\packages\Microsoft.DependencyValidation.Analyzers.0.10.0\analyzers\dotnet\Microsoft.DependencyValidation.Analyzers.dll" />
  7500. </ItemGroup>
  7501. <ItemGroup>
  7502. <Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
  7503. <Service Include="{C0C07587-41A7-46C8-8FBD-3F9C8EBE2DDC}" />
  7504. </ItemGroup>
  7505. <PropertyGroup>
  7506. <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
  7507. <VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
  7508. </PropertyGroup>
  7509. <PropertyGroup>
  7510. <AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
  7511. </PropertyGroup>
  7512. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  7513. <Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" />
  7514. <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" Condition="false" />
  7515. <Target Name="MvcBuildViews" AfterTargets="AfterBuild" Condition="'$(MvcBuildViews)'=='true'">
  7516. <AspNetCompiler VirtualPath="temp" PhysicalPath="$(WebProjectOutputDir)" />
  7517. </Target>
  7518. <ProjectExtensions>
  7519. <VisualStudio>
  7520. <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
  7521. <WebProjectProperties>
  7522. <UseIIS>False</UseIIS>
  7523. <AutoAssignPort>True</AutoAssignPort>
  7524. <DevelopmentServerPort>20472</DevelopmentServerPort>
  7525. <DevelopmentServerVPath>/</DevelopmentServerVPath>
  7526. <IISUrl>http://localhost:20873/</IISUrl>
  7527. <NTLMAuthentication>False</NTLMAuthentication>
  7528. <UseCustomServer>False</UseCustomServer>
  7529. <CustomServerUrl>
  7530. </CustomServerUrl>
  7531. <SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
  7532. </WebProjectProperties>
  7533. </FlavorProperties>
  7534. </VisualStudio>
  7535. </ProjectExtensions>
  7536. <Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
  7537. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  7538. <PropertyGroup>
  7539. <ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。启用“NuGet 程序包还原”可下载这些程序包。有关详细信息,请参阅 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText>
  7540. </PropertyGroup>
  7541. <Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
  7542. </Target>
  7543. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  7544. Other similar extension points exist, see Microsoft.Common.targets.
  7545. <Target Name="BeforeBuild">
  7546. </Target>
  7547. <Target Name="AfterBuild">
  7548. </Target> -->
  7549. </Project>