Alamofire support delete with parameters 3月 22, 2019 修改 ParameterEncoding.swift :309 case .get, .head, .delete: 異動為 case .get, .head: Clean build folder Build 閱讀完整內容
failed to load api definition. internal server error /swagger/v1/swagger.json 1月 10, 2019 Swagger 顯示錯誤:failed to load api definition. internal server error /swagger/v1/swagger.json 解法:檢查 controller 是否都有加上[HttpGet]...標註 閱讀完整內容
Fortify 排除 "Error performing ASP.NET Precompilation" 步驟 5月 15, 2017 參考資料:https://wiki.mobilehealth.va.gov/pages/viewpage.action?pageId=26772105 Step 1: devenv Sample .sln /Rebuild Debug Step 2: sourceanalyzer -b Solution1 -clean Step 3: sourceanalyzer -b Solution1 -Xmx1280M -Xss8M -debug -logfile trans.log devenv Sample .sln /Rebuild Debug Step 3.5: 若出現錯誤 Error performing ASP.NET Precompilation 刪除專案中 obj\debug & obj\release 可排除大部分問題 Step 4: sourceanalyzer -b Solution1 -Xmx1280M -Xss8M -debug -logfile scan.log -scan -f Results.fpr 閱讀完整內容
asp.net web.config db connection加密通過Fortify掃描 12月 14, 2016 系統管理員身分開啟 cmd 前往目錄 cd C:\Windows\Microsoft.NET\Framework\v4.0.30319 執行加密 aspnet_regiis.exe -pef connectionstring連線字串.config目錄 執行解密 aspnet_regiis.exe -pectionstrings C:\~\連線字串.config目錄 connectionstrings: 指定加密的tag 加解密必須同一台電腦,或使用金鑰 閱讀完整內容
Xcode 8 Command+/ Shortcut 失效解法 9月 21, 2016 Xcode 8 Command+/ Shortcut 失效解法 終端機:sudo /usr/libexec/xpccachectl 閱讀完整內容
iOS Static Library 實作筆記 8月 24, 2016 讓Reference的專案可發佈 TARGETS→Build Settings→All Search: custom Apple LLVM 7.1Custom Compiler Flags 設定: -fembed-bitcode 發佈(匯出) {專案名}.a 選擇 Simulator → Build → Product {專案名}.a Show in Finder→ 更名 {專案名}_simulator.a→ 拉至Desktop\{專案名}資料夾 選擇 Generic iOS Device → Build →Product {專案名}.a Show in Finder→ 更名 {專案名}_device.a→ 拉至Desktop\{專案名}資料夾 開啟終端機→ 進入Desktop\{專案名}資料夾→ 執行: lipo -create "{專案名}_device.a" "{專案名}_simulator.a" -output "{專案名}.a" 閱讀完整內容