├── .gitignore ├── KAOP.sln ├── KAOP ├── Dll │ └── log4net.dll ├── KAOP.csproj ├── KAspec.cs ├── KibaAttribute.cs ├── KibaContextProperty.cs ├── KibaMessageSink.cs ├── Logger.cs └── Properties │ └── AssemblyInfo.cs ├── KAOPTest ├── AOPTest.cs ├── App.config ├── KAOPTest.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── log4net.config └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KAOP/HEAD/.gitignore -------------------------------------------------------------------------------- /KAOP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KAOP/HEAD/KAOP.sln -------------------------------------------------------------------------------- /KAOP/Dll/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KAOP/HEAD/KAOP/Dll/log4net.dll -------------------------------------------------------------------------------- /KAOP/KAOP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KAOP/HEAD/KAOP/KAOP.csproj -------------------------------------------------------------------------------- /KAOP/KAspec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KAOP/HEAD/KAOP/KAspec.cs -------------------------------------------------------------------------------- /KAOP/KibaAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KAOP/HEAD/KAOP/KibaAttribute.cs -------------------------------------------------------------------------------- /KAOP/KibaContextProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KAOP/HEAD/KAOP/KibaContextProperty.cs -------------------------------------------------------------------------------- /KAOP/KibaMessageSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KAOP/HEAD/KAOP/KibaMessageSink.cs -------------------------------------------------------------------------------- /KAOP/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KAOP/HEAD/KAOP/Logger.cs -------------------------------------------------------------------------------- /KAOP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KAOP/HEAD/KAOP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /KAOPTest/AOPTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KAOP/HEAD/KAOPTest/AOPTest.cs -------------------------------------------------------------------------------- /KAOPTest/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KAOP/HEAD/KAOPTest/App.config -------------------------------------------------------------------------------- /KAOPTest/KAOPTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KAOP/HEAD/KAOPTest/KAOPTest.csproj -------------------------------------------------------------------------------- /KAOPTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KAOP/HEAD/KAOPTest/Program.cs -------------------------------------------------------------------------------- /KAOPTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KAOP/HEAD/KAOPTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /KAOPTest/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KAOP/HEAD/KAOPTest/log4net.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KAOP/HEAD/README.md --------------------------------------------------------------------------------