2013/10/15

[IIS] Andorid .apk file MIME type settings

APK files are ZIP file formatted packages based on the JAR file format, with .apk file extensions. The MIME type associated with APK files is application/vnd.android.package-archive.

Extension: .apk
MIME type: application/vnd.android.package-archive

Wikipedia: APK file format

2013/10/14

[Visual Studio] 原始碼控制 Source Control 變更

在開發階段原本使用 SVN 來做原始碼控制, 開發半途開始接觸 Git, 當下並沒有太多的變更及需要 Commit, 決定變更改用 Git 來做原始碼控制.

每每到 工具 -> 設定 -> Source Control 變更成 Git 時, 由於原先設定 SVN 造成無法直接變更.

解決方法:

1. 關閉現行專案
2. 用文字編輯器開啓專案 Solution 檔 *.sln 檔案, 將下列區塊移除即可

 GlobalSection(SubversionScc) = preSolution
  Svn-Managed = True
  Manager = AnkhSVN - Subversion Support for Visual Studio
  EndGlobalSection

3. 重啟專案
4. 重新選擇 Source Control 的 plug-in