├── .github └── FUNDING.yml ├── CHANGELOG.txt ├── Images └── Silk_StandIn.png ├── README.md └── StandIn ├── StandIn.sln └── StandIn ├── App.config ├── FodyWeavers.xml ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── StandIn.csproj ├── hStandIn.cs └── packages.config /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: FuzzySecurity 4 | -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xforcered/StandIn/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /Images/Silk_StandIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xforcered/StandIn/HEAD/Images/Silk_StandIn.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xforcered/StandIn/HEAD/README.md -------------------------------------------------------------------------------- /StandIn/StandIn.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xforcered/StandIn/HEAD/StandIn/StandIn.sln -------------------------------------------------------------------------------- /StandIn/StandIn/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xforcered/StandIn/HEAD/StandIn/StandIn/App.config -------------------------------------------------------------------------------- /StandIn/StandIn/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xforcered/StandIn/HEAD/StandIn/StandIn/FodyWeavers.xml -------------------------------------------------------------------------------- /StandIn/StandIn/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xforcered/StandIn/HEAD/StandIn/StandIn/Program.cs -------------------------------------------------------------------------------- /StandIn/StandIn/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xforcered/StandIn/HEAD/StandIn/StandIn/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StandIn/StandIn/StandIn.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xforcered/StandIn/HEAD/StandIn/StandIn/StandIn.csproj -------------------------------------------------------------------------------- /StandIn/StandIn/hStandIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xforcered/StandIn/HEAD/StandIn/StandIn/hStandIn.cs -------------------------------------------------------------------------------- /StandIn/StandIn/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xforcered/StandIn/HEAD/StandIn/StandIn/packages.config --------------------------------------------------------------------------------