question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Support for .NET Core

See original GitHub issue

This is not really an issue, just wonder if you considered this?

Someone started the question on Reddit .NET Code coverage tools for Linux/Ubuntu?

At the moment there is not a single coverage tool for dotnet core https://github.com/dotnet/corefx/issues/17107 But seems OpenCover is on track to have dotnet core support soon https://github.com/OpenCover/opencover/issues/703

After that I think it would be nice to be able to generate the report with ReportGenerator 😃

Without any changes to ReportGenerator I was able to ran it from Visual Studio Community 2017 Mac using Mono. screen shot 2017-11-07 at 22 45 40

Not sure how much work it is to convert a Mono to dotnet project.

At the moment learned that you can deploy dotnet core by adding the RuntimeIdentifiers

<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>netcoreapp2.0</TargetFramework>
    **<RuntimeIdentifiers>osx.10.12-x64</RuntimeIdentifiers>**
  </PropertyGroup>

</Project>

Publish it with $ dotnet publish -c release -r osx.10.12-x64

Then you get a console application runnable from bash

$ /Users/andre/Projects/SampleCoreConsole/bin/Release/netcoreapp2.0/osx.10.12-x64/publish/SampleCoreConsole

screen shot 2017-11-07 at 23 26 45

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Reactions:1
  • Comments:35 (14 by maintainers)

github_iconTop GitHub Comments

4reactions
danielpalmecommented, Apr 16, 2018

I released a first version which supports .NET Core: https://www.nuget.org/packages/ReportGenerator/4.0.0-alpha2

Usage is described here: https://github.com/danielpalme/ReportGenerator/tree/v4#usage

Let me know if this works for you or if you have any issues.

4reactions
danielpalmecommented, Nov 8, 2017

As you said, you can execute ReportGenerator with Mono This is possible for >2 years now, after dropping the dependency to log4net. See #26

But a dotnet core version of ReportGenerator totally makes sense. I will see what I can do about that. But it will take some time to get finished.

Read more comments on GitHub >

github_iconTop Results From Across the Web

.NET and .NET Core official support policy
But the actual end of support day is the closest Patch Tuesday starting that date, which is November 12, 2024. ASP.NET Core 2.1...
Read more >
Microsoft .NET and .NET Core - Microsoft Lifecycle
NET Core. Microsoft .NET and .NET Core follows the Modern Lifecycle Policy. Support dates are shown in the Pacific Time Zone (PT) -...
Read more >
Microsoft .NET - endoflife.date
NET Core 3.1, these releases will happen every November and every other release will be LTS. LTS releases are supported for three years...
Read more >
Microsoft Announces End of Support Date for .NET Core 3.1
NET 5 and 6, will reach its end of support on December 13, 2022. “.NET Core 3.1 will reach [the] end of support...
Read more >
Microsoft to End Support for .NET Core 3.1 in December 2022
The long-term-support (LTS) version 3.1 of Microsoft .NET Core Framework is slated to go out of support on December 13th, 2022.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found