├── .gitignore ├── Fast Koala.sln ├── Fast Koala ├── BuildScriptSupport │ ├── AddBuildScriptNamePrompt.Designer.cs │ ├── AddBuildScriptNamePrompt.cs │ ├── AddBuildScriptNamePrompt.resx │ ├── NodeJSBuildScriptSupportInjector.cs │ ├── PSBuildScriptSupportInjector.cs │ └── TargetsScriptInjector.cs ├── Events │ ├── AfterLoadProjectEventArgs.cs │ ├── AfterOpenProjectEventArgs.cs │ ├── AfterOpenSolutionEventArgs.cs │ ├── AppConfigFileChanged.cs │ ├── BeforeCloseProjectEventArgs.cs │ ├── BeforeCloseSolutionEventArgs.cs │ ├── BeforeUnloadProjectEventArgs.cs │ ├── QueryCloseSolutionEventArgs.cs │ ├── QueryUnloadProjectEventArgs.cs │ └── SolutionEvents.cs ├── Fast Koala.csproj ├── FastKoala.vsct ├── FastKoalaPackage.cs ├── GlobalSuppressions.cs ├── Guids.cs ├── Key.snk ├── LICENSE.txt ├── Logging │ ├── DteLogger.cs │ └── ILogger.cs ├── MSBuildXmlTransformer.cs ├── PkgCmdID.cs ├── ProjectKindsInternal.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Resources │ ├── 09.ico │ ├── 46.ico │ ├── Images.png │ ├── Package.ico │ ├── Transforms │ │ ├── App.config │ │ ├── Web.Debug.Default.config │ │ ├── Web.Debug.config │ │ ├── Web.Release.Default.config │ │ ├── Web.Release.config │ │ └── Web.config │ └── ps.png ├── SourceControl │ ├── GitExeWrapper.cs │ ├── ISccBasicFileSystem.cs │ ├── NonSccBasicFileSystem.cs │ ├── TfsExeWrapper.cs │ └── VsFileSystemManipulatorFactory.cs ├── Transformations │ ├── BuildTimeTransformationsEnabler.cs │ ├── ConfigDirPrompt.Designer.cs │ ├── ConfigDirPrompt.cs │ ├── ConfigDirPrompt.resx │ └── ConfigWatcher.cs ├── Utilities │ ├── FileUtilities.cs │ ├── IdioticProjectUnloaderBecauseMicrosoftsVSSDKIsntStable.cs │ ├── ProcessExtensions.cs │ ├── ProjectProperties.cs │ ├── ProjectTypes.cs │ └── ProjectUtilities.cs ├── VSPackage.resx ├── VsEnvironment.cs ├── XmlTransformerEngineStub.cs ├── packages.config ├── preview1.png └── source.extension.vsixmanifest ├── README.md └── preview1.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/.gitignore -------------------------------------------------------------------------------- /Fast Koala.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala.sln -------------------------------------------------------------------------------- /Fast Koala/BuildScriptSupport/AddBuildScriptNamePrompt.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/BuildScriptSupport/AddBuildScriptNamePrompt.Designer.cs -------------------------------------------------------------------------------- /Fast Koala/BuildScriptSupport/AddBuildScriptNamePrompt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/BuildScriptSupport/AddBuildScriptNamePrompt.cs -------------------------------------------------------------------------------- /Fast Koala/BuildScriptSupport/AddBuildScriptNamePrompt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/BuildScriptSupport/AddBuildScriptNamePrompt.resx -------------------------------------------------------------------------------- /Fast Koala/BuildScriptSupport/NodeJSBuildScriptSupportInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/BuildScriptSupport/NodeJSBuildScriptSupportInjector.cs -------------------------------------------------------------------------------- /Fast Koala/BuildScriptSupport/PSBuildScriptSupportInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/BuildScriptSupport/PSBuildScriptSupportInjector.cs -------------------------------------------------------------------------------- /Fast Koala/BuildScriptSupport/TargetsScriptInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/BuildScriptSupport/TargetsScriptInjector.cs -------------------------------------------------------------------------------- /Fast Koala/Events/AfterLoadProjectEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Events/AfterLoadProjectEventArgs.cs -------------------------------------------------------------------------------- /Fast Koala/Events/AfterOpenProjectEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Events/AfterOpenProjectEventArgs.cs -------------------------------------------------------------------------------- /Fast Koala/Events/AfterOpenSolutionEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Events/AfterOpenSolutionEventArgs.cs -------------------------------------------------------------------------------- /Fast Koala/Events/AppConfigFileChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Events/AppConfigFileChanged.cs -------------------------------------------------------------------------------- /Fast Koala/Events/BeforeCloseProjectEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Events/BeforeCloseProjectEventArgs.cs -------------------------------------------------------------------------------- /Fast Koala/Events/BeforeCloseSolutionEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Events/BeforeCloseSolutionEventArgs.cs -------------------------------------------------------------------------------- /Fast Koala/Events/BeforeUnloadProjectEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Events/BeforeUnloadProjectEventArgs.cs -------------------------------------------------------------------------------- /Fast Koala/Events/QueryCloseSolutionEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Events/QueryCloseSolutionEventArgs.cs -------------------------------------------------------------------------------- /Fast Koala/Events/QueryUnloadProjectEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Events/QueryUnloadProjectEventArgs.cs -------------------------------------------------------------------------------- /Fast Koala/Events/SolutionEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Events/SolutionEvents.cs -------------------------------------------------------------------------------- /Fast Koala/Fast Koala.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Fast Koala.csproj -------------------------------------------------------------------------------- /Fast Koala/FastKoala.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/FastKoala.vsct -------------------------------------------------------------------------------- /Fast Koala/FastKoalaPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/FastKoalaPackage.cs -------------------------------------------------------------------------------- /Fast Koala/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/GlobalSuppressions.cs -------------------------------------------------------------------------------- /Fast Koala/Guids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Guids.cs -------------------------------------------------------------------------------- /Fast Koala/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Key.snk -------------------------------------------------------------------------------- /Fast Koala/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/LICENSE.txt -------------------------------------------------------------------------------- /Fast Koala/Logging/DteLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Logging/DteLogger.cs -------------------------------------------------------------------------------- /Fast Koala/Logging/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Logging/ILogger.cs -------------------------------------------------------------------------------- /Fast Koala/MSBuildXmlTransformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/MSBuildXmlTransformer.cs -------------------------------------------------------------------------------- /Fast Koala/PkgCmdID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/PkgCmdID.cs -------------------------------------------------------------------------------- /Fast Koala/ProjectKindsInternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/ProjectKindsInternal.cs -------------------------------------------------------------------------------- /Fast Koala/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Fast Koala/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Resources.Designer.cs -------------------------------------------------------------------------------- /Fast Koala/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Resources.resx -------------------------------------------------------------------------------- /Fast Koala/Resources/09.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Resources/09.ico -------------------------------------------------------------------------------- /Fast Koala/Resources/46.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Resources/46.ico -------------------------------------------------------------------------------- /Fast Koala/Resources/Images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Resources/Images.png -------------------------------------------------------------------------------- /Fast Koala/Resources/Package.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Resources/Package.ico -------------------------------------------------------------------------------- /Fast Koala/Resources/Transforms/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Resources/Transforms/App.config -------------------------------------------------------------------------------- /Fast Koala/Resources/Transforms/Web.Debug.Default.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Resources/Transforms/Web.Debug.Default.config -------------------------------------------------------------------------------- /Fast Koala/Resources/Transforms/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Resources/Transforms/Web.Debug.config -------------------------------------------------------------------------------- /Fast Koala/Resources/Transforms/Web.Release.Default.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Resources/Transforms/Web.Release.Default.config -------------------------------------------------------------------------------- /Fast Koala/Resources/Transforms/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Resources/Transforms/Web.Release.config -------------------------------------------------------------------------------- /Fast Koala/Resources/Transforms/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Resources/Transforms/Web.config -------------------------------------------------------------------------------- /Fast Koala/Resources/ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Resources/ps.png -------------------------------------------------------------------------------- /Fast Koala/SourceControl/GitExeWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/SourceControl/GitExeWrapper.cs -------------------------------------------------------------------------------- /Fast Koala/SourceControl/ISccBasicFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/SourceControl/ISccBasicFileSystem.cs -------------------------------------------------------------------------------- /Fast Koala/SourceControl/NonSccBasicFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/SourceControl/NonSccBasicFileSystem.cs -------------------------------------------------------------------------------- /Fast Koala/SourceControl/TfsExeWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/SourceControl/TfsExeWrapper.cs -------------------------------------------------------------------------------- /Fast Koala/SourceControl/VsFileSystemManipulatorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/SourceControl/VsFileSystemManipulatorFactory.cs -------------------------------------------------------------------------------- /Fast Koala/Transformations/BuildTimeTransformationsEnabler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Transformations/BuildTimeTransformationsEnabler.cs -------------------------------------------------------------------------------- /Fast Koala/Transformations/ConfigDirPrompt.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Transformations/ConfigDirPrompt.Designer.cs -------------------------------------------------------------------------------- /Fast Koala/Transformations/ConfigDirPrompt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Transformations/ConfigDirPrompt.cs -------------------------------------------------------------------------------- /Fast Koala/Transformations/ConfigDirPrompt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Transformations/ConfigDirPrompt.resx -------------------------------------------------------------------------------- /Fast Koala/Transformations/ConfigWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Transformations/ConfigWatcher.cs -------------------------------------------------------------------------------- /Fast Koala/Utilities/FileUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Utilities/FileUtilities.cs -------------------------------------------------------------------------------- /Fast Koala/Utilities/IdioticProjectUnloaderBecauseMicrosoftsVSSDKIsntStable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Utilities/IdioticProjectUnloaderBecauseMicrosoftsVSSDKIsntStable.cs -------------------------------------------------------------------------------- /Fast Koala/Utilities/ProcessExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Utilities/ProcessExtensions.cs -------------------------------------------------------------------------------- /Fast Koala/Utilities/ProjectProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Utilities/ProjectProperties.cs -------------------------------------------------------------------------------- /Fast Koala/Utilities/ProjectTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Utilities/ProjectTypes.cs -------------------------------------------------------------------------------- /Fast Koala/Utilities/ProjectUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/Utilities/ProjectUtilities.cs -------------------------------------------------------------------------------- /Fast Koala/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/VSPackage.resx -------------------------------------------------------------------------------- /Fast Koala/VsEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/VsEnvironment.cs -------------------------------------------------------------------------------- /Fast Koala/XmlTransformerEngineStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/XmlTransformerEngineStub.cs -------------------------------------------------------------------------------- /Fast Koala/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/packages.config -------------------------------------------------------------------------------- /Fast Koala/preview1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/preview1.png -------------------------------------------------------------------------------- /Fast Koala/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/Fast Koala/source.extension.vsixmanifest -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/README.md -------------------------------------------------------------------------------- /preview1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimpy77/FastKoala/HEAD/preview1.png --------------------------------------------------------------------------------