├── .gitattributes ├── .gitignore ├── ExampleResults.html ├── LICENSE ├── NUnit HTML Report Generator.sln ├── NUnit HTML Report Generator ├── App.config ├── ExampleResults.xml ├── NUnit HTML Report Generator.csproj ├── Program.cs └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JatechUK/NUnit-HTML-Report-Generator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JatechUK/NUnit-HTML-Report-Generator/HEAD/.gitignore -------------------------------------------------------------------------------- /ExampleResults.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JatechUK/NUnit-HTML-Report-Generator/HEAD/ExampleResults.html -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JatechUK/NUnit-HTML-Report-Generator/HEAD/LICENSE -------------------------------------------------------------------------------- /NUnit HTML Report Generator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JatechUK/NUnit-HTML-Report-Generator/HEAD/NUnit HTML Report Generator.sln -------------------------------------------------------------------------------- /NUnit HTML Report Generator/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JatechUK/NUnit-HTML-Report-Generator/HEAD/NUnit HTML Report Generator/App.config -------------------------------------------------------------------------------- /NUnit HTML Report Generator/ExampleResults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JatechUK/NUnit-HTML-Report-Generator/HEAD/NUnit HTML Report Generator/ExampleResults.xml -------------------------------------------------------------------------------- /NUnit HTML Report Generator/NUnit HTML Report Generator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JatechUK/NUnit-HTML-Report-Generator/HEAD/NUnit HTML Report Generator/NUnit HTML Report Generator.csproj -------------------------------------------------------------------------------- /NUnit HTML Report Generator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JatechUK/NUnit-HTML-Report-Generator/HEAD/NUnit HTML Report Generator/Program.cs -------------------------------------------------------------------------------- /NUnit HTML Report Generator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JatechUK/NUnit-HTML-Report-Generator/HEAD/NUnit HTML Report Generator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /NUnit HTML Report Generator/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JatechUK/NUnit-HTML-Report-Generator/HEAD/NUnit HTML Report Generator/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /NUnit HTML Report Generator/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JatechUK/NUnit-HTML-Report-Generator/HEAD/NUnit HTML Report Generator/Properties/Resources.resx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JatechUK/NUnit-HTML-Report-Generator/HEAD/README.md --------------------------------------------------------------------------------