├── .gitattributes ├── .gitignore ├── Log4NetDemo.sln ├── Log4NetDemo ├── App.config ├── Config │ └── log4net.config ├── Log4NetDemo.csproj └── Program.cs ├── README.md └── ReferenceDll ├── Readme.txt ├── log4net.dll └── log4net.xml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/10-Log4NetDemo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/10-Log4NetDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /Log4NetDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/10-Log4NetDemo/HEAD/Log4NetDemo.sln -------------------------------------------------------------------------------- /Log4NetDemo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/10-Log4NetDemo/HEAD/Log4NetDemo/App.config -------------------------------------------------------------------------------- /Log4NetDemo/Config/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/10-Log4NetDemo/HEAD/Log4NetDemo/Config/log4net.config -------------------------------------------------------------------------------- /Log4NetDemo/Log4NetDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/10-Log4NetDemo/HEAD/Log4NetDemo/Log4NetDemo.csproj -------------------------------------------------------------------------------- /Log4NetDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/10-Log4NetDemo/HEAD/Log4NetDemo/Program.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/10-Log4NetDemo/HEAD/README.md -------------------------------------------------------------------------------- /ReferenceDll/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/10-Log4NetDemo/HEAD/ReferenceDll/Readme.txt -------------------------------------------------------------------------------- /ReferenceDll/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/10-Log4NetDemo/HEAD/ReferenceDll/log4net.dll -------------------------------------------------------------------------------- /ReferenceDll/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/das2017/10-Log4NetDemo/HEAD/ReferenceDll/log4net.xml --------------------------------------------------------------------------------