From 2d507909eb84834301f2f471137fde60b78bc84c Mon Sep 17 00:00:00 2001 From: Rafael Staib Date: Sun, 5 Nov 2017 23:00:15 +0100 Subject: [PATCH] Some minor changes regarding product name --- README.md | 2 +- build.ps1 | 4 ++-- src/{EventSourceAnalyzer.sln => Analyzer.sln} | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename src/{EventSourceAnalyzer.sln => Analyzer.sln} (100%) diff --git a/README.md b/README.md index fe4c40e..678231a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# ThorAnalyzer +# Thor Analyzer [![release](https://img.shields.io/github/release/ChilliCream/thor-analyzer.svg)](https://github.com/ChilliCream/thor-analyzer/releases) [![package](https://img.shields.io/nuget/v/Thor.Analyzer.svg)](https://www.nuget.org/packages/Thor.Analyzer) [![license](https://img.shields.io/github/license/ChilliCream/thor-analyzer.svg)](https://github.com/ChilliCream/thor-analyzer/blob/master/LICENSE) [![build](https://img.shields.io/appveyor/ci/rstaib/thor-analyzer/master.svg)](https://ci.appveyor.com/project/rstaib/thor-analyzer) [![tests](https://img.shields.io/appveyor/tests/rstaib/thor-analyzer/master.svg)](https://ci.appveyor.com/project/rstaib/thor-analyzer) [![coverage](https://img.shields.io/coveralls/ChilliCream/thor-analyzer.svg)](https://coveralls.io/github/ChilliCream/thor-analyzer?branch=master) An analyzer for *ETW* (Event Tracing for Windows) event sources which helps reveal frequent mistakes and also guides in best practices rules. diff --git a/build.ps1 b/build.ps1 index c752161..487ac9a 100644 --- a/build.ps1 +++ b/build.ps1 @@ -59,7 +59,7 @@ if($RunTests -or $EnableCoverage) $coveralls = [System.IO.Path]::Combine($nugetPackages, "coveralls.io", "*", "tools", "coveralls.net.exe") $coveralls = Resolve-Path $coveralls - & $openCover -register:user -target:"$runTestsCmd" -searchdirs:"$serachDirs" -oldstyle -output:coverage.xml -skipautoprops -returntargetcode -filter:"+[ChilliCream*]*" + & $openCover -register:user -target:"$runTestsCmd" -searchdirs:"$serachDirs" -oldstyle -output:coverage.xml -skipautoprops -returntargetcode -filter:"+[Thor*]*" & $coveralls --opencover coverage.xml } else @@ -78,5 +78,5 @@ if($EnableSonar) if($Pack) { - dotnet pack .\src\EventSourceAnalyzer.sln --include-symbols --include-source -c Release /p:PackageVersion=$version + dotnet pack src --include-symbols --include-source -c Release /p:PackageVersion=$version } \ No newline at end of file diff --git a/src/EventSourceAnalyzer.sln b/src/Analyzer.sln similarity index 100% rename from src/EventSourceAnalyzer.sln rename to src/Analyzer.sln