diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml index 223c1b8..148b023 100644 --- a/.github/workflows/dotnetcore.yml +++ b/.github/workflows/dotnetcore.yml @@ -14,6 +14,6 @@ jobs: with: dotnet-version: 3.1.100 - name: Build with dotnet - run: dotnet build --configuration Release + run: dotnet build --configuration Release -v detailed -clp:NoSummary --nologo - name: Run tests run: dotnet test diff --git a/ControlStrings/ControlStringFinder.cs b/ControlStrings/ControlStringFinder.cs index 983abb9..b690bcb 100644 --- a/ControlStrings/ControlStringFinder.cs +++ b/ControlStrings/ControlStringFinder.cs @@ -34,7 +34,9 @@ public IEnumerable FindAllControlStrings(string input) throw new ArgumentNullException(nameof(input)); } - // Yield return methods doesn't throw any exceptions until you try to access the results + var a = true; + + // Yield retrn methods doesn't throw any exceptions until you try to access the results // This could happen at any time, including far away from when the error was caused // So we pass error handle normally here and contain the yield return in its own bubble return FindAllControlStringsEnumeratorInternal(input); diff --git a/ControlStrings/ControlStrings.csproj b/ControlStrings/ControlStrings.csproj index 4f9b55f..89fa1b3 100644 --- a/ControlStrings/ControlStrings.csproj +++ b/ControlStrings/ControlStrings.csproj @@ -13,4 +13,12 @@ 0.2.0.0 0.2.0.0 + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + \ No newline at end of file diff --git a/Unit Tests/UnitTests.csproj b/Unit Tests/UnitTests.csproj index f83bd0d..fb09c9a 100644 --- a/Unit Tests/UnitTests.csproj +++ b/Unit Tests/UnitTests.csproj @@ -11,6 +11,7 @@ + all