{"id":511,"date":"2013-02-05T16:23:10","date_gmt":"2013-02-05T16:23:10","guid":{"rendered":"http:\/\/dev.anyons.net\/?p=511"},"modified":"2022-07-12T14:48:33","modified_gmt":"2022-07-12T05:48:33","slug":"file-upload-%ec%a0%9c%ec%9e%91%ec%8b%9c%ec%97%90-%ed%8c%8c%ec%9d%bc-%ec%82%ac%ec%9d%b4%ec%a6%88-3m-%ec%a0%9c%ed%95%9c","status":"publish","type":"post","link":"https:\/\/anyons.net\/?p=511","title":{"rendered":"File Upload \uc81c\uc791\uc2dc\uc5d0 \ud30c\uc77c \uc0ac\uc774\uc988 3M \uc81c\ud55c \ud480\uae30"},"content":{"rendered":"<pre class=\"lang:xhtml decode:true\">&lt;?xml version=\"1.0\" encoding=\"utf-8\"?&gt;\n&lt;configuration&gt;\n    &lt;system.webServer&gt;\n        &lt;security&gt;\n            &lt;requestFiltering&gt;\n                &lt;requestLimits maxAllowedContentLength=\"104857600\" \/&gt;\n            &lt;\/requestFiltering&gt;\n        &lt;\/security&gt;\n    &lt;\/system.webServer&gt;\n&lt;\/configuration&gt;<\/pre>\n<pre class=\"lang:c# decode:true \">public static IWebHostBuilder CreateWebHostBuilder(string[] args) =&gt;\n    WebHost.CreateDefaultBuilder(args)\n    .UseStartup&lt;Startup&gt;()\n    .UseKestrel(options =&gt;\n    {\n        options.Limits.MaxRequestBodySize = 52428800; \/\/50MB\n    });\n}<\/pre>\n<pre class=\"lang:c# decode:true\">[HttpPost]\n[RequestSizeLimit(40000000)]\npublic async Task&lt;IActionResult&gt; UploadFiles(IFormFile file)\n{\n   \/\/TODO: Save file\n}<\/pre>\n<p>\uc704\uc758 \ub450 \ubc29\ubc95 \ubcf4\ub2e4\ub294 file upload \ud558\ub294 \ub531 \uadf8 \ud568\uc218\ub9cc \uc81c\uc57d\uc744 \uac70\ub294\uac83\uc774 \ub354 \uc548\uc804\ud560\uac83\ucc98\ub7fc \ubcf4\uc778\ub2e4.<\/p>\n\n","protected":false},"excerpt":{"rendered":"<p>&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;utf-8&#8243;?&gt; &lt;configuration&gt; &lt;system.webServer&gt; &lt;security&gt; &lt;requestFiltering&gt; &lt;requestLimits maxAllowedContentLength=&#8221;104857600&#8243; \/&gt; &lt;\/requestFiltering&gt; &lt;\/security&gt; &lt;\/system.webServer&gt; &lt;\/configuration&gt; public static IWebHostBuilder CreateWebHostBuilder(string[] args) =&gt; WebHost.CreateDefaultBuilder(args) .UseStartup&lt;Startup&gt;() .UseKestrel(options =&gt; { options.Limits.MaxRequestBodySize = 52428800; \/\/50MB }); } [HttpPost] [RequestSizeLimit(40000000)] public async Task&lt;IActionResult&gt; UploadFiles(IFormFile file) { \/\/TODO: Save file } <\/p>\n<p>\uc704\uc758 \ub450 \ubc29\ubc95 \ubcf4\ub2e4\ub294 file upload \ud558\ub294 \ub531 \uadf8 \ud568\uc218\ub9cc \uc81c\uc57d\uc744 \uac70\ub294\uac83\uc774 [&#8230;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[94,96,165],"tags":[156,401,31,221,222],"class_list":["post-511","post","type-post","status-publish","format-standard","hentry","category-configuration","category-programming","category-system","tag-asp-net","tag-core","tag-csharp","tag-file-upload","tag-limit","post_format-post-format-standard","odd"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>File Upload \uc81c\uc791\uc2dc\uc5d0 \ud30c\uc77c \uc0ac\uc774\uc988 3M \uc81c\ud55c \ud480\uae30 - anydragon<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/anyons.net\/?p=511\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"File Upload \uc81c\uc791\uc2dc\uc5d0 \ud30c\uc77c \uc0ac\uc774\uc988 3M \uc81c\ud55c \ud480\uae30 - anydragon\" \/>\n<meta property=\"og:description\" content=\"&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt; &lt;configuration&gt; &lt;system.webServer&gt; &lt;security&gt; &lt;requestFiltering&gt; &lt;requestLimits maxAllowedContentLength=&quot;104857600&quot; \/&gt; &lt;\/requestFiltering&gt; &lt;\/security&gt; &lt;\/system.webServer&gt; &lt;\/configuration&gt; public static IWebHostBuilder CreateWebHostBuilder(string[] args) =&gt; WebHost.CreateDefaultBuilder(args) .UseStartup&lt;Startup&gt;() .UseKestrel(options =&gt; { options.Limits.MaxRequestBodySize = 52428800; \/\/50MB }); } [HttpPost] [RequestSizeLimit(40000000)] public async Task&lt;IActionResult&gt; UploadFiles(IFormFile file) { \/\/TODO: Save file } \uc704\uc758 \ub450 \ubc29\ubc95 \ubcf4\ub2e4\ub294 file upload \ud558\ub294 \ub531 \uadf8 \ud568\uc218\ub9cc \uc81c\uc57d\uc744 \uac70\ub294\uac83\uc774 [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/anyons.net\/?p=511\" \/>\n<meta property=\"og:site_name\" content=\"anydragon\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/anydragon\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/anydragon\" \/>\n<meta property=\"article:published_time\" content=\"2013-02-05T16:23:10+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-12T05:48:33+00:00\" \/>\n<meta name=\"author\" content=\"anydragon\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@anydragon\" \/>\n<meta name=\"twitter:site\" content=\"@anydragon\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"anydragon\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/anyons.net\\\/?p=511#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/anyons.net\\\/?p=511\"},\"author\":{\"name\":\"anydragon\",\"@id\":\"https:\\\/\\\/anyons.net\\\/#\\\/schema\\\/person\\\/e848d5666536ff82e9ee531c70249f2b\"},\"headline\":\"File Upload \uc81c\uc791\uc2dc\uc5d0 \ud30c\uc77c \uc0ac\uc774\uc988 3M \uc81c\ud55c \ud480\uae30\",\"datePublished\":\"2013-02-05T16:23:10+00:00\",\"dateModified\":\"2022-07-12T05:48:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/anyons.net\\\/?p=511\"},\"wordCount\":5,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/anyons.net\\\/#\\\/schema\\\/person\\\/e848d5666536ff82e9ee531c70249f2b\"},\"keywords\":[\"asp.net\",\"core\",\"csharp\",\"file upload\",\"limit\"],\"articleSection\":[\"Configuration\",\"Programming\",\"System\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/anyons.net\\\/?p=511#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/anyons.net\\\/?p=511\",\"url\":\"https:\\\/\\\/anyons.net\\\/?p=511\",\"name\":\"File Upload \uc81c\uc791\uc2dc\uc5d0 \ud30c\uc77c \uc0ac\uc774\uc988 3M \uc81c\ud55c \ud480\uae30 - anydragon\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/anyons.net\\\/#website\"},\"datePublished\":\"2013-02-05T16:23:10+00:00\",\"dateModified\":\"2022-07-12T05:48:33+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/anyons.net\\\/?p=511#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/anyons.net\\\/?p=511\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/anyons.net\\\/?p=511#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/anyons.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"File Upload \uc81c\uc791\uc2dc\uc5d0 \ud30c\uc77c \uc0ac\uc774\uc988 3M \uc81c\ud55c \ud480\uae30\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/anyons.net\\\/#website\",\"url\":\"https:\\\/\\\/anyons.net\\\/\",\"name\":\"anydragon\",\"description\":\"mac, linux, aws, c, c++, mysql, mssql, redis, csharp, nodejs, rust, golang\",\"publisher\":{\"@id\":\"https:\\\/\\\/anyons.net\\\/#\\\/schema\\\/person\\\/e848d5666536ff82e9ee531c70249f2b\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/anyons.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/anyons.net\\\/#\\\/schema\\\/person\\\/e848d5666536ff82e9ee531c70249f2b\",\"name\":\"anydragon\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"http:\\\/\\\/anyons.net\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/bg3-scaled.jpeg\",\"url\":\"http:\\\/\\\/anyons.net\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/bg3-scaled.jpeg\",\"contentUrl\":\"http:\\\/\\\/anyons.net\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/bg3-scaled.jpeg\",\"width\":2560,\"height\":1440,\"caption\":\"anydragon\"},\"logo\":{\"@id\":\"http:\\\/\\\/anyons.net\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/bg3-scaled.jpeg\"},\"sameAs\":[\"http:\\\/\\\/anyons.net\",\"https:\\\/\\\/www.facebook.com\\\/anydragon\",\"https:\\\/\\\/x.com\\\/anydragon\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCr78KWpvmk398vPfpUTWNLg\"],\"url\":\"https:\\\/\\\/anyons.net\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"File Upload \uc81c\uc791\uc2dc\uc5d0 \ud30c\uc77c \uc0ac\uc774\uc988 3M \uc81c\ud55c \ud480\uae30 - anydragon","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/anyons.net\/?p=511","og_locale":"ko_KR","og_type":"article","og_title":"File Upload \uc81c\uc791\uc2dc\uc5d0 \ud30c\uc77c \uc0ac\uc774\uc988 3M \uc81c\ud55c \ud480\uae30 - anydragon","og_description":"&lt;?xml version=\"1.0\" encoding=\"utf-8\"?&gt; &lt;configuration&gt; &lt;system.webServer&gt; &lt;security&gt; &lt;requestFiltering&gt; &lt;requestLimits maxAllowedContentLength=\"104857600\" \/&gt; &lt;\/requestFiltering&gt; &lt;\/security&gt; &lt;\/system.webServer&gt; &lt;\/configuration&gt; public static IWebHostBuilder CreateWebHostBuilder(string[] args) =&gt; WebHost.CreateDefaultBuilder(args) .UseStartup&lt;Startup&gt;() .UseKestrel(options =&gt; { options.Limits.MaxRequestBodySize = 52428800; \/\/50MB }); } [HttpPost] [RequestSizeLimit(40000000)] public async Task&lt;IActionResult&gt; UploadFiles(IFormFile file) { \/\/TODO: Save file } \uc704\uc758 \ub450 \ubc29\ubc95 \ubcf4\ub2e4\ub294 file upload \ud558\ub294 \ub531 \uadf8 \ud568\uc218\ub9cc \uc81c\uc57d\uc744 \uac70\ub294\uac83\uc774 [...]","og_url":"https:\/\/anyons.net\/?p=511","og_site_name":"anydragon","article_publisher":"https:\/\/www.facebook.com\/anydragon","article_author":"https:\/\/www.facebook.com\/anydragon","article_published_time":"2013-02-05T16:23:10+00:00","article_modified_time":"2022-07-12T05:48:33+00:00","author":"anydragon","twitter_card":"summary_large_image","twitter_creator":"@anydragon","twitter_site":"@anydragon","twitter_misc":{"\uae00\uc4f4\uc774":"anydragon"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/anyons.net\/?p=511#article","isPartOf":{"@id":"https:\/\/anyons.net\/?p=511"},"author":{"name":"anydragon","@id":"https:\/\/anyons.net\/#\/schema\/person\/e848d5666536ff82e9ee531c70249f2b"},"headline":"File Upload \uc81c\uc791\uc2dc\uc5d0 \ud30c\uc77c \uc0ac\uc774\uc988 3M \uc81c\ud55c \ud480\uae30","datePublished":"2013-02-05T16:23:10+00:00","dateModified":"2022-07-12T05:48:33+00:00","mainEntityOfPage":{"@id":"https:\/\/anyons.net\/?p=511"},"wordCount":5,"commentCount":0,"publisher":{"@id":"https:\/\/anyons.net\/#\/schema\/person\/e848d5666536ff82e9ee531c70249f2b"},"keywords":["asp.net","core","csharp","file upload","limit"],"articleSection":["Configuration","Programming","System"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/anyons.net\/?p=511#respond"]}]},{"@type":"WebPage","@id":"https:\/\/anyons.net\/?p=511","url":"https:\/\/anyons.net\/?p=511","name":"File Upload \uc81c\uc791\uc2dc\uc5d0 \ud30c\uc77c \uc0ac\uc774\uc988 3M \uc81c\ud55c \ud480\uae30 - anydragon","isPartOf":{"@id":"https:\/\/anyons.net\/#website"},"datePublished":"2013-02-05T16:23:10+00:00","dateModified":"2022-07-12T05:48:33+00:00","breadcrumb":{"@id":"https:\/\/anyons.net\/?p=511#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/anyons.net\/?p=511"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/anyons.net\/?p=511#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/anyons.net\/"},{"@type":"ListItem","position":2,"name":"File Upload \uc81c\uc791\uc2dc\uc5d0 \ud30c\uc77c \uc0ac\uc774\uc988 3M \uc81c\ud55c \ud480\uae30"}]},{"@type":"WebSite","@id":"https:\/\/anyons.net\/#website","url":"https:\/\/anyons.net\/","name":"anydragon","description":"mac, linux, aws, c, c++, mysql, mssql, redis, csharp, nodejs, rust, golang","publisher":{"@id":"https:\/\/anyons.net\/#\/schema\/person\/e848d5666536ff82e9ee531c70249f2b"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/anyons.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":["Person","Organization"],"@id":"https:\/\/anyons.net\/#\/schema\/person\/e848d5666536ff82e9ee531c70249f2b","name":"anydragon","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"http:\/\/anyons.net\/wp-content\/uploads\/2022\/06\/bg3-scaled.jpeg","url":"http:\/\/anyons.net\/wp-content\/uploads\/2022\/06\/bg3-scaled.jpeg","contentUrl":"http:\/\/anyons.net\/wp-content\/uploads\/2022\/06\/bg3-scaled.jpeg","width":2560,"height":1440,"caption":"anydragon"},"logo":{"@id":"http:\/\/anyons.net\/wp-content\/uploads\/2022\/06\/bg3-scaled.jpeg"},"sameAs":["http:\/\/anyons.net","https:\/\/www.facebook.com\/anydragon","https:\/\/x.com\/anydragon","https:\/\/www.youtube.com\/channel\/UCr78KWpvmk398vPfpUTWNLg"],"url":"https:\/\/anyons.net\/?author=1"}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack-related-posts":[{"id":1354,"url":"https:\/\/anyons.net\/?p=1354","url_meta":{"origin":511,"position":0},"title":"[IIS7] web.config\uc5d0\uc11c HttpModules, HttpHandlers \uc0ac\uc6a9 \uc2dc \uc624\ub958 \ucc98\ub9ac","author":"anydragon","date":"2017\ub144 06\uc6d4 19\uc77c","format":false,"excerpt":"\ubb38\uc81c IIS 7\uc5d0\uc11c \uc544\ub798 \uadf8\ub9bc\uacfc \uac19\uc740 HttpModules \ub610\ub294 HttpHandlers\uc640 \uad00\ub828\ub41c \uc624\ub958\uba54\uc2dc\uc9c0\uac00 \ub098\ud0c0\ub098\uc9c0 \uc54a\uc73c\uc168\uc2b5\ub2c8\uae4c? \uc774\ub294 \ub2e4\uc74c \ucf54\ub4dc\uc640 \uac19\uc774 <httpModule> \ub610\ub294 <HttpHandlers>\ub97c \uc0ac\uc6a9\ud558\uc5ec \ubc1c\uc0dd\ud588\uc744 \uac00\ub2a5\uc131\uc774 \ub192\uc2b5\ub2c8\ub2e4. IIS 6, \uc774\uc804 \ubc84\uc804, VisualStudio \uc0c1\uc5d0\uc11c\ub294 \uc815\uc0c1 \ub3d9\uc791\ud558\uc9c0\ub9cc, IIS7\uc758 \uacbd\uc6b0\uc5d0\ub294 <system.web>\uc544\ub798 <httpModules> \ub610\ub294 <httpHandlers>\ub97c \ud3ec\ud568\ud560 \uacbd\uc6b0 Exception\uc774 \ubc1c\uc0dd\ud569\ub2c8\ub2e4. <system.web> \u00a0\u00a0<httpModules> \u00a0\u00a0\u00a0\u00a0\u00a0<add name=\"testClass\" type=\"Test.TestClass,test\" \/> \u00a0\u00a0<\/httpModules> <\/system.web>\u2026","rel":"","context":"&quot;Configuration&quot;\uc5d0\uc11c","block_context":{"text":"Configuration","link":"https:\/\/anyons.net\/?cat=94"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":2851,"url":"https:\/\/anyons.net\/?p=2851","url_meta":{"origin":511,"position":1},"title":"Ubuntu \uc5d0 \uc0c8 disk \ucd94\uac00","author":"anydragon","date":"2022\ub144 09\uc6d4 06\uc77c","format":false,"excerpt":"sudo fdisk -l # partitioning sudo parted \/dev\/sdc mklabel new disk label type? diskname mkpart partition name? partitionname file system type? [ext2]? ext4 start? 1 end? 128GB quit # format sudo mkfs.ext4 \/dev\/sdc1 sudo fdisk -l # mount sudo mount \/dev\/sdc1 \/data \u00a0","rel":"","context":"&quot;Command&quot;\uc5d0\uc11c","block_context":{"text":"Command","link":"https:\/\/anyons.net\/?cat=93"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1766,"url":"https:\/\/anyons.net\/?p=1766","url_meta":{"origin":511,"position":2},"title":"cmd \ub300\uc2e0 \uc0ac\uc6a9\ud558\ub294 powershell \uc758 prompt\uc5d0\uc11c git branch\ud655\uc778","author":"anydragon","date":"2020\ub144 07\uc6d4 30\uc77c","format":false,"excerpt":"Install-Module posh-git -Scope CurrentUser Install-Module oh-my-posh -Scope CurrentUser if (!(Test-Path -Path $PROFILE )) { New-Item -Type File -Path $PROFILE -Force } notepad.exe $PROFILE admin \uad8c\ud55c\uc73c\ub85c Set-ExecutionPolicy -Scope LocalMachine -ExecutionPolicy RemoteSigned -Force \u00a0","rel":"","context":"&quot;Command&quot;\uc5d0\uc11c","block_context":{"text":"Command","link":"https:\/\/anyons.net\/?cat=93"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":2291,"url":"https:\/\/anyons.net\/?p=2291","url_meta":{"origin":511,"position":3},"title":"NginX \uc774\uc911\ud654","author":"anydragon","date":"2021\ub144 04\uc6d4 02\uc77c","format":false,"excerpt":"upstream myserver { # \uae30\ubcf8 round robin server localhost:3000; server localhost:3001; } server { listen 8080; listen [::]:8080; # server_name xxx.anyons.net; root \/nodejsPath; location \/ { allow 192.168.1.0\/24; deny all; # First attempt to serve request as file, then # as directory, then fall back to displaying a 404. #\u2026","rel":"","context":"&quot;Configuration&quot;\uc5d0\uc11c","block_context":{"text":"Configuration","link":"https:\/\/anyons.net\/?cat=94"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":236,"url":"https:\/\/anyons.net\/?p=236","url_meta":{"origin":511,"position":4},"title":"Library \uc0dd\uc131\uc2dc Debug\uc640 Release\ub97c \ub098\ub204\uc5b4 \ube4c\ub4dc","author":"anydragon","date":"2011\ub144 12\uc6d4 07\uc77c","format":false,"excerpt":"Debug\uc5d0 \uad6c\uc131\uc18d\uc131 -> \uc77c\ubc18 -> \ub300\uc0c1\uc774\ub984\uc744 $(ProjectName) \uc5d0\uc11c $(ProjectName)D \ub85c \ubcc0\uacbd ProjectName.exp : warning LNK4070: \/OUT:ProjectName.dll directive in .EXP differs from output filename \"ProjectNameD.dll\"; ignoring directive \uc6d0\uc778 : \uc0c1\uae30 \uacbd\uace0\ub294 DLL ProjectSetting \uc5d0\uc11c Output file name \uc744 \ubc14\uafb8\uba74 \ub098\ud0c0\ub098\ub294 \ud604\uc0c1\uc785\ub2c8\ub2e4. ( ProjectName.dll -> ProjectD.dll ) .def \ud30c\uc77c\uc758 \ub0b4\uc6a9\uc911\uc5d0 \uc544\ub798 \uc640\u2026","rel":"","context":"&quot;Configuration&quot;\uc5d0\uc11c","block_context":{"text":"Configuration","link":"https:\/\/anyons.net\/?cat=94"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":689,"url":"https:\/\/anyons.net\/?p=689","url_meta":{"origin":511,"position":5},"title":"windows event log","author":"anydragon","date":"2014\ub144 06\uc6d4 21\uc77c","format":false,"excerpt":"\ucd9c\ucc98 http:\/\/mainia.tistory.com\/412 \uc774\ubca4\ud2b8\ub85c\uadf8 \uc4f0\uae30 static void Main(string[] args) { WriteEventLogEntry(\"This is an entry in the event log by daveoncsharp.com\"); } private static void WriteEventLogEntry(string message) { \/\/ Create an instance of EventLog System.Diagnostics.EventLog eventLog = new System.Diagnostics.EventLog(); \/\/ Check if the event source exists. If not create it. if (!System.Diagnostics.EventLog.SourceExists(\"TestApplication\"))\u2026","rel":"","context":"&quot;Programming&quot;\uc5d0\uc11c","block_context":{"text":"Programming","link":"https:\/\/anyons.net\/?cat=96"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/anyons.net\/index.php?rest_route=\/wp\/v2\/posts\/511","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/anyons.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/anyons.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/anyons.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/anyons.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=511"}],"version-history":[{"count":0,"href":"https:\/\/anyons.net\/index.php?rest_route=\/wp\/v2\/posts\/511\/revisions"}],"wp:attachment":[{"href":"https:\/\/anyons.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=511"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/anyons.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=511"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/anyons.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=511"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}