Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Net Core App 3.0 #205

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 18 additions & 0 deletions src/Deployment/nuget/dotnet-reportgenerator-cli.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,16 @@ dotnet reportgenerator [options]</description>
<dependency id="SixLabors.ImageSharp.Drawing" version="1.0.0-beta0004" />
<dependency id="Microsoft.NETCore.App" version="2.0.0" exclude="Build,Analyzers" />
</group>
<group targetFramework=".NETCoreApp3.0">
<dependency id="McMaster.NETCore.Plugins" version="0.1.1" />
<dependency id="Microsoft.Build.Utilities.Core" version="15.8.166" />
<dependency id="Microsoft.Extensions.Configuration" version="2.1.1" />
<dependency id="Microsoft.Extensions.Configuration.Binder" version="2.1.1" />
<dependency id="Microsoft.Extensions.Configuration.CommandLine" version="2.1.1" />
<dependency id="Microsoft.Extensions.Configuration.Json" version="2.1.1" />
<dependency id="SixLabors.ImageSharp.Drawing" version="1.0.0-beta0004" />
<dependency id="Microsoft.NETCore.App" version="3.0.0" exclude="Build,Analyzers" />
</group>
</dependencies>
</metadata>
<files>
Expand All @@ -53,5 +63,13 @@ dotnet reportgenerator [options]</description>
<file src="..\..\target\bin\Release\netcoreapp2.0\dotnet-reportgenerator.deps.json" target="lib\netcoreapp2.0\dotnet-reportgenerator.deps.json" />
<file src="..\..\target\bin\Release\netcoreapp2.0\dotnet-reportgenerator.dll" target="lib\netcoreapp2.0\dotnet-reportgenerator.dll" />
<file src="..\..\target\bin\Release\netcoreapp2.0\dotnet-reportgenerator.runtimeconfig.json" target="lib\netcoreapp2.0\dotnet-reportgenerator.runtimeconfig.json" />

<!-- NetCoreApp3.0 ('lib\netcoreapp3.0' directory) -->
<file src="..\..\target\bin\Release\netcoreapp3.0\appsettings.json" target="lib\netcoreapp3.0" />
<file src="..\..\target\bin\Release\netcoreapp3.0\ReportGenerator.Core.dll" target="lib\netcoreapp3.0" />
<file src="..\..\target\bin\Release\netcoreapp3.0\ReportGenerator.DotnetCorePluginLoader.dll" target="lib\netcoreapp3.0" />
<file src="..\..\target\bin\Release\netcoreapp3.0\dotnet-reportgenerator.deps.json" target="lib\netcoreapp3.0\dotnet-reportgenerator.deps.json" />
<file src="..\..\target\bin\Release\netcoreapp3.0\dotnet-reportgenerator.dll" target="lib\netcoreapp3.0\dotnet-reportgenerator.dll" />
<file src="..\..\target\bin\Release\netcoreapp3.0\dotnet-reportgenerator.runtimeconfig.json" target="lib\netcoreapp3.0\dotnet-reportgenerator.runtimeconfig.json" />
</files>
</package>
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFrameworks>netcoreapp2.0;netcoreapp3.0</TargetFrameworks>
<ApplicationIcon>ProgramIcon.ico</ApplicationIcon>
<AssemblyName>dotnet-reportgenerator</AssemblyName>
<RootNamespace>Palmmedia.ReportGenerator</RootNamespace>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFrameworks>netcoreapp2.0;netcoreapp3.0</TargetFrameworks>
<RootNamespace>ReportGenerator.DotnetCorePluginLoader</RootNamespace>
<AssemblyVersion>4.0.10.0</AssemblyVersion>
<FileVersion>4.0.10.0</FileVersion>
Expand Down