Dominik Baran

Results 8 issues of Dominik Baran

Version: 3.0.2 Repro: https://github.com/Yozer/CoverletHangs ``` dotnet build --configuration Release dotnet test CoverletHangs.sln --configuration Release --no-restore --no-build /p:CollectCoverage=True /p:CoverletOutputFormat=cobertura ``` Actual result: coverage hangs completely, the only way to stop it...

blocking-users
untriaged
stale

### VB.Net input code ```vbnet Public Sub Main() Dim v As Integer = 5 Test((v)) Console.WriteLine(v) 'prints 5 End Sub Public Sub Test(ByRef x As Integer) x = -1 End...

output logic error
VB -> C#

### VB.Net input code ```vbnet Public Shared Sub Main() Label: Dim number As Integer number += 1 If number = 1 Then GoTo Label Console.WriteLine(number) ' will print 2 End...

output logic error
VB -> C#

### VB.Net input code ```vbnet Private Sub TestMethod() For i = 1 To 2 If i = 1 Then Dim a As Integer a += 1 System.Console.WriteLine(a) End If Next...

compilation error
output logic error
VB -> C#

### VB.Net input code ```vbnet Module StringExtensions Public Sub Print(x As ITest) End Sub Public Interface ITest End Interface Public Class Test Implements ITest Public Sub Method() Print() End Sub...

compilation error
VB -> C#

### VB.Net input code ```vbnet #If Debug Console.WriteLine("A") #Else Console.WriteLine("B") #End If ``` ### Erroneous output ```C# /* TODO ERROR: Skipped IfDirectiveTrivia #If Debug */ Console.WriteLine("A"); /* TODO ERROR: Skipped...

VB -> C#

I'm using ```/warnaserror``` msbuild switch to enable warnings as errors. Currently, the messages about the bindings are warnings and the switch turns them into red error. ```xml ``` Proposals: 1....

hacktoberfest

This implements the soap:header for MetaWritter. https://learn.microsoft.com/pl-pl/dotnet/api/system.web.services.protocols.soapheader?view=netframework-4.8.1 I created new SoapHeader attribute that mimics the the SoapHeader from net framework. Users can derive from it and decorate methods on the...