This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# vim:set fileencoding=utf-8 sw=2 ai: | |
import sqlite3 | |
import datetime | |
import re | |
SQL = ''' | |
select | |
name, version, time, author, text |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#if UNITY_EDITOR_WIN | |
using System.IO; | |
using System.Text; | |
using System.Xml.Linq; | |
using SyntaxTree.VisualStudio.Unity.Bridge; | |
using UnityEditor; | |
/// <summary> | |
/// Provide a hook into Unity's Project File Generation so that StyleCop gets re-added each time | |
/// </summary> |