├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── appveyor.yml ├── package.props ├── package.sln ├── src ├── LoggingExtension.cs ├── Properties │ └── AssemblyInfo.cs ├── Unity.Microsoft.Logging.csproj └── package.snk └── tests ├── LoggingFixture.cs └── Unity.Microsoft.Logging.Tests.csproj /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [ENikS] 2 | open_collective: unity-container 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-logging/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-logging/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-logging/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-logging/HEAD/appveyor.yml -------------------------------------------------------------------------------- /package.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-logging/HEAD/package.props -------------------------------------------------------------------------------- /package.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-logging/HEAD/package.sln -------------------------------------------------------------------------------- /src/LoggingExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-logging/HEAD/src/LoggingExtension.cs -------------------------------------------------------------------------------- /src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-logging/HEAD/src/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Unity.Microsoft.Logging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-logging/HEAD/src/Unity.Microsoft.Logging.csproj -------------------------------------------------------------------------------- /src/package.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-logging/HEAD/src/package.snk -------------------------------------------------------------------------------- /tests/LoggingFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-logging/HEAD/tests/LoggingFixture.cs -------------------------------------------------------------------------------- /tests/Unity.Microsoft.Logging.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-logging/HEAD/tests/Unity.Microsoft.Logging.Tests.csproj --------------------------------------------------------------------------------