├── .gitattributes ├── .gitignore ├── LICENSE ├── Media ├── License.txt ├── PrestoCoverageIcon.png ├── PrestoCoverage_Both_Original.svg ├── PrestoCoverage_Doc_Check_Green.svg └── PrestoCoverage_Doc_Marked_Green.ai ├── PrestoCoverage ├── PrestoCoverage.sln └── PrestoCoverage │ ├── CoverageMargin.cs │ ├── CoverageMarginFactory.cs │ ├── Extensions │ └── VSExtensions.cs │ ├── GeneralSettings.Designer.cs │ ├── GeneralSettings.settings │ ├── Interfaces │ └── ITagReloader.cs │ ├── Key.snk │ ├── Loaders │ └── CoverletLoader.cs │ ├── Models │ ├── Coverage.cs │ └── PrestoConfiguration.cs │ ├── Options │ ├── OptionsDialogPageControl.xaml │ └── OptionsDialogPageControl.xaml.cs │ ├── OptionsDialogPage.cs │ ├── PrestoCoverage.csproj │ ├── PrestoCoverageContainerDiscoverer.cs │ ├── PrestoCoverageCore.cs │ ├── PrestoCoveragePackage.cs │ ├── PrestoCoveragePackage.vsct │ ├── Properties │ └── AssemblyInfo.cs │ ├── Resources │ ├── PrestoCoveragePackage.ico │ └── TestCommand.png │ ├── TestCommand.cs │ ├── VSPackage.resx │ ├── app.config │ ├── packages.config │ └── source.extension.vsixmanifest ├── PrestoCoverageSample ├── PrestoCoverage.Sample.Standard20 │ ├── Class1.cs │ └── PrestoCoverage.Sample.Standard20.csproj ├── PrestoCoverage.Sample.core21 │ ├── PrestoCoverage.Sample.core21.csproj │ └── SampleClass.cs ├── PrestoCoverage.Sample.net450 │ ├── Class1.cs │ ├── PrestoCoverage.Sample.net450.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── PrestoCoverage.UnitTest.nunit.net450 │ ├── PrestoCoverage.UnitTest.nunit.net450.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TestClass.cs │ └── packages.config ├── PrestoCoverage.UnitTest.nunit.net461 │ ├── PrestoCoverage.UnitTest.nunit.net461.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TestClass.cs │ └── packages.config ├── PrestoCoverage.UnitTest.xunit.core21 │ ├── PrestoCoverage.UnitTest.xunit.core21.csproj │ ├── UnitTest1.cs │ └── runtest.ps1 └── PrestoCoverageSample.sln └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/LICENSE -------------------------------------------------------------------------------- /Media/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/Media/License.txt -------------------------------------------------------------------------------- /Media/PrestoCoverageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/Media/PrestoCoverageIcon.png -------------------------------------------------------------------------------- /Media/PrestoCoverage_Both_Original.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/Media/PrestoCoverage_Both_Original.svg -------------------------------------------------------------------------------- /Media/PrestoCoverage_Doc_Check_Green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/Media/PrestoCoverage_Doc_Check_Green.svg -------------------------------------------------------------------------------- /Media/PrestoCoverage_Doc_Marked_Green.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/Media/PrestoCoverage_Doc_Marked_Green.ai -------------------------------------------------------------------------------- /PrestoCoverage/PrestoCoverage.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverage/PrestoCoverage.sln -------------------------------------------------------------------------------- /PrestoCoverage/PrestoCoverage/CoverageMargin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverage/PrestoCoverage/CoverageMargin.cs -------------------------------------------------------------------------------- /PrestoCoverage/PrestoCoverage/CoverageMarginFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverage/PrestoCoverage/CoverageMarginFactory.cs -------------------------------------------------------------------------------- /PrestoCoverage/PrestoCoverage/Extensions/VSExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverage/PrestoCoverage/Extensions/VSExtensions.cs -------------------------------------------------------------------------------- /PrestoCoverage/PrestoCoverage/GeneralSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverage/PrestoCoverage/GeneralSettings.Designer.cs -------------------------------------------------------------------------------- /PrestoCoverage/PrestoCoverage/GeneralSettings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverage/PrestoCoverage/GeneralSettings.settings -------------------------------------------------------------------------------- /PrestoCoverage/PrestoCoverage/Interfaces/ITagReloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverage/PrestoCoverage/Interfaces/ITagReloader.cs -------------------------------------------------------------------------------- /PrestoCoverage/PrestoCoverage/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverage/PrestoCoverage/Key.snk -------------------------------------------------------------------------------- /PrestoCoverage/PrestoCoverage/Loaders/CoverletLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverage/PrestoCoverage/Loaders/CoverletLoader.cs -------------------------------------------------------------------------------- /PrestoCoverage/PrestoCoverage/Models/Coverage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverage/PrestoCoverage/Models/Coverage.cs -------------------------------------------------------------------------------- /PrestoCoverage/PrestoCoverage/Models/PrestoConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverage/PrestoCoverage/Models/PrestoConfiguration.cs -------------------------------------------------------------------------------- /PrestoCoverage/PrestoCoverage/Options/OptionsDialogPageControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverage/PrestoCoverage/Options/OptionsDialogPageControl.xaml -------------------------------------------------------------------------------- /PrestoCoverage/PrestoCoverage/Options/OptionsDialogPageControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverage/PrestoCoverage/Options/OptionsDialogPageControl.xaml.cs -------------------------------------------------------------------------------- /PrestoCoverage/PrestoCoverage/OptionsDialogPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverage/PrestoCoverage/OptionsDialogPage.cs -------------------------------------------------------------------------------- /PrestoCoverage/PrestoCoverage/PrestoCoverage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverage/PrestoCoverage/PrestoCoverage.csproj -------------------------------------------------------------------------------- /PrestoCoverage/PrestoCoverage/PrestoCoverageContainerDiscoverer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverage/PrestoCoverage/PrestoCoverageContainerDiscoverer.cs -------------------------------------------------------------------------------- /PrestoCoverage/PrestoCoverage/PrestoCoverageCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverage/PrestoCoverage/PrestoCoverageCore.cs -------------------------------------------------------------------------------- /PrestoCoverage/PrestoCoverage/PrestoCoveragePackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverage/PrestoCoverage/PrestoCoveragePackage.cs -------------------------------------------------------------------------------- /PrestoCoverage/PrestoCoverage/PrestoCoveragePackage.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverage/PrestoCoverage/PrestoCoveragePackage.vsct -------------------------------------------------------------------------------- /PrestoCoverage/PrestoCoverage/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverage/PrestoCoverage/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PrestoCoverage/PrestoCoverage/Resources/PrestoCoveragePackage.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverage/PrestoCoverage/Resources/PrestoCoveragePackage.ico -------------------------------------------------------------------------------- /PrestoCoverage/PrestoCoverage/Resources/TestCommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverage/PrestoCoverage/Resources/TestCommand.png -------------------------------------------------------------------------------- /PrestoCoverage/PrestoCoverage/TestCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverage/PrestoCoverage/TestCommand.cs -------------------------------------------------------------------------------- /PrestoCoverage/PrestoCoverage/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverage/PrestoCoverage/VSPackage.resx -------------------------------------------------------------------------------- /PrestoCoverage/PrestoCoverage/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverage/PrestoCoverage/app.config -------------------------------------------------------------------------------- /PrestoCoverage/PrestoCoverage/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverage/PrestoCoverage/packages.config -------------------------------------------------------------------------------- /PrestoCoverage/PrestoCoverage/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverage/PrestoCoverage/source.extension.vsixmanifest -------------------------------------------------------------------------------- /PrestoCoverageSample/PrestoCoverage.Sample.Standard20/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverageSample/PrestoCoverage.Sample.Standard20/Class1.cs -------------------------------------------------------------------------------- /PrestoCoverageSample/PrestoCoverage.Sample.Standard20/PrestoCoverage.Sample.Standard20.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverageSample/PrestoCoverage.Sample.Standard20/PrestoCoverage.Sample.Standard20.csproj -------------------------------------------------------------------------------- /PrestoCoverageSample/PrestoCoverage.Sample.core21/PrestoCoverage.Sample.core21.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverageSample/PrestoCoverage.Sample.core21/PrestoCoverage.Sample.core21.csproj -------------------------------------------------------------------------------- /PrestoCoverageSample/PrestoCoverage.Sample.core21/SampleClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverageSample/PrestoCoverage.Sample.core21/SampleClass.cs -------------------------------------------------------------------------------- /PrestoCoverageSample/PrestoCoverage.Sample.net450/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverageSample/PrestoCoverage.Sample.net450/Class1.cs -------------------------------------------------------------------------------- /PrestoCoverageSample/PrestoCoverage.Sample.net450/PrestoCoverage.Sample.net450.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverageSample/PrestoCoverage.Sample.net450/PrestoCoverage.Sample.net450.csproj -------------------------------------------------------------------------------- /PrestoCoverageSample/PrestoCoverage.Sample.net450/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverageSample/PrestoCoverage.Sample.net450/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PrestoCoverageSample/PrestoCoverage.UnitTest.nunit.net450/PrestoCoverage.UnitTest.nunit.net450.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverageSample/PrestoCoverage.UnitTest.nunit.net450/PrestoCoverage.UnitTest.nunit.net450.csproj -------------------------------------------------------------------------------- /PrestoCoverageSample/PrestoCoverage.UnitTest.nunit.net450/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverageSample/PrestoCoverage.UnitTest.nunit.net450/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PrestoCoverageSample/PrestoCoverage.UnitTest.nunit.net450/TestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverageSample/PrestoCoverage.UnitTest.nunit.net450/TestClass.cs -------------------------------------------------------------------------------- /PrestoCoverageSample/PrestoCoverage.UnitTest.nunit.net450/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverageSample/PrestoCoverage.UnitTest.nunit.net450/packages.config -------------------------------------------------------------------------------- /PrestoCoverageSample/PrestoCoverage.UnitTest.nunit.net461/PrestoCoverage.UnitTest.nunit.net461.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverageSample/PrestoCoverage.UnitTest.nunit.net461/PrestoCoverage.UnitTest.nunit.net461.csproj -------------------------------------------------------------------------------- /PrestoCoverageSample/PrestoCoverage.UnitTest.nunit.net461/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverageSample/PrestoCoverage.UnitTest.nunit.net461/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PrestoCoverageSample/PrestoCoverage.UnitTest.nunit.net461/TestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverageSample/PrestoCoverage.UnitTest.nunit.net461/TestClass.cs -------------------------------------------------------------------------------- /PrestoCoverageSample/PrestoCoverage.UnitTest.nunit.net461/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverageSample/PrestoCoverage.UnitTest.nunit.net461/packages.config -------------------------------------------------------------------------------- /PrestoCoverageSample/PrestoCoverage.UnitTest.xunit.core21/PrestoCoverage.UnitTest.xunit.core21.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverageSample/PrestoCoverage.UnitTest.xunit.core21/PrestoCoverage.UnitTest.xunit.core21.csproj -------------------------------------------------------------------------------- /PrestoCoverageSample/PrestoCoverage.UnitTest.xunit.core21/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverageSample/PrestoCoverage.UnitTest.xunit.core21/UnitTest1.cs -------------------------------------------------------------------------------- /PrestoCoverageSample/PrestoCoverage.UnitTest.xunit.core21/runtest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverageSample/PrestoCoverage.UnitTest.xunit.core21/runtest.ps1 -------------------------------------------------------------------------------- /PrestoCoverageSample/PrestoCoverageSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/PrestoCoverageSample/PrestoCoverageSample.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p10tyr/PrestoCoverage/HEAD/README.md --------------------------------------------------------------------------------