├── .gitignore ├── FileWatcher.sln ├── FileWatcher ├── App.config ├── EventProcessor.cs ├── FileWatcher.cs ├── FileWatcher.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── vso.ico ├── LICENSE ├── README.md └── SECURITY.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-filewatcher-windows/HEAD/.gitignore -------------------------------------------------------------------------------- /FileWatcher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-filewatcher-windows/HEAD/FileWatcher.sln -------------------------------------------------------------------------------- /FileWatcher/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-filewatcher-windows/HEAD/FileWatcher/App.config -------------------------------------------------------------------------------- /FileWatcher/EventProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-filewatcher-windows/HEAD/FileWatcher/EventProcessor.cs -------------------------------------------------------------------------------- /FileWatcher/FileWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-filewatcher-windows/HEAD/FileWatcher/FileWatcher.cs -------------------------------------------------------------------------------- /FileWatcher/FileWatcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-filewatcher-windows/HEAD/FileWatcher/FileWatcher.csproj -------------------------------------------------------------------------------- /FileWatcher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-filewatcher-windows/HEAD/FileWatcher/Program.cs -------------------------------------------------------------------------------- /FileWatcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-filewatcher-windows/HEAD/FileWatcher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FileWatcher/vso.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-filewatcher-windows/HEAD/FileWatcher/vso.ico -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-filewatcher-windows/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-filewatcher-windows/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-filewatcher-windows/HEAD/SECURITY.md --------------------------------------------------------------------------------