├── .github └── CODEOWNERS ├── .gitignore ├── App.config ├── CODEOWNERS ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── README.md ├── SiteCodeHunter.csproj └── SiteCodeHunter.sln /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @zephrfish 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | /.vs 3 | /obj 4 | -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/SCCMSiteCodeHunter/HEAD/App.config -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @zephrfish 2 | -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/SCCMSiteCodeHunter/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/SCCMSiteCodeHunter/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/SCCMSiteCodeHunter/HEAD/README.md -------------------------------------------------------------------------------- /SiteCodeHunter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/SCCMSiteCodeHunter/HEAD/SiteCodeHunter.csproj -------------------------------------------------------------------------------- /SiteCodeHunter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/SCCMSiteCodeHunter/HEAD/SiteCodeHunter.sln --------------------------------------------------------------------------------