Skip to content

Commit

Permalink
Release 4.8.12
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpalme committed Jul 9, 2021
1 parent 485d1c9 commit 6ce9235
Show file tree
Hide file tree
Showing 15 changed files with 44 additions and 44 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ env:
solution: 'src\ReportGenerator.sln'
buildPlatform: Any CPU
buildConfiguration: Release
version: 4.8.11
version: 4.8.12
dotnetSDKVersion: 5.0.301
nodeVersion: 14

Expand Down
2 changes: 1 addition & 1 deletion src/AzureDevopsTask/ReportGenerator/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"version": {
"Major": 4,
"Minor": 8,
"Patch": 11
"Patch": 12
},
"instanceNameFormat": "ReportGenerator",
"groups": [
Expand Down
2 changes: 1 addition & 1 deletion src/AzureDevopsTask/vss-extension.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifestVersion": 1,
"id": "reportgenerator",
"name": "ReportGenerator",
"version": "4.8.11",
"version": "4.8.12",
"publisher": "Palmmedia",
"public": true,
"targets": [
Expand Down
2 changes: 2 additions & 0 deletions src/Deployment/nuget/ReportGenerator.Core.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ https://github.com/danielpalme/ReportGenerator/wiki/Custom-history-storage</desc
<repository type="git" url="https://github.com/danielpalme/ReportGenerator.git" />
<dependencies>
<group targetFramework="netstandard2.0">
<dependency id="System.Text.Encodings.Web" version="5.0.1" /><!-- System.Text.Encodings.Web 5.0.1+ for CVE-2021-26701 - see https://github.com/dotnet/runtime/issues/49377 -->
<dependency id="Microsoft.Extensions.Configuration" version="5.0.0" />
<dependency id="Microsoft.Extensions.Configuration.Binder" version="5.0.0" />
<dependency id="Microsoft.Extensions.Configuration.CommandLine" version="5.0.0" />
Expand All @@ -33,6 +34,7 @@ https://github.com/danielpalme/ReportGenerator/wiki/Custom-history-storage</desc
</group>

<group targetFramework="netcoreapp">
<dependency id="System.Text.Encodings.Web" version="5.0.1" /><!-- System.Text.Encodings.Web 5.0.1+ for CVE-2021-26701 - see https://github.com/dotnet/runtime/issues/49377 -->
<dependency id="Microsoft.Extensions.Configuration" version="5.0.0" />
<dependency id="Microsoft.Extensions.Configuration.Binder" version="5.0.0" />
<dependency id="Microsoft.Extensions.Configuration.CommandLine" version="5.0.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<AssemblyName>ReportGenerator</AssemblyName>
<RootNamespace>Palmmedia.ReportGenerator</RootNamespace>
<StartupObject>Palmmedia.ReportGenerator.Console.NetCore.Program</StartupObject>
<AssemblyVersion>4.8.11.0</AssemblyVersion>
<FileVersion>4.8.11.0</FileVersion>
<AssemblyVersion>4.8.12.0</AssemblyVersion>
<FileVersion>4.8.12.0</FileVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/ReportGenerator.Console/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("4.8.11.0")]
[assembly: AssemblyFileVersion("4.8.11.0")]
[assembly: AssemblyVersion("4.8.12.0")]
[assembly: AssemblyFileVersion("4.8.12.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
<IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
Expand Down Expand Up @@ -93,11 +94,8 @@
<Content Include="ProgramIcon.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="16.10.0" />
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0" />
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="16.9.0" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
6 changes: 3 additions & 3 deletions src/ReportGenerator.Console/app.config
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8" ?>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7" />
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7"/>
</startup>
<runtime>
<gcConcurrent enabled="true"/>
<gcServer enabled="true"/>
</runtime>
</configuration>
</configuration>
34 changes: 17 additions & 17 deletions src/ReportGenerator.Core.Test/ReportConfigurationBuilderTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,11 @@ public void ConfigProvidesMissingArguments()
Directory.CreateDirectory(dir);
var config = Config.Build(dir).GetSection(DotNetConfigSettingNames.SectionName);

config.SetString("reports", ReportPath);
config.SetString("targetdir", "C:\\temp");
config.SetString("reporttype", "Latex");
config.SetString("assemblyfilters", "+Test;-Test");
config.SetString("classfilters", "+Test2;-Test2");
config = config.SetString("reports", ReportPath);
config = config.SetString("targetdir", "C:\\temp");
config = config.SetString("reporttype", "Latex");
config = config.SetString("assemblyfilters", "+Test;-Test");
config = config.SetString("classfilters", "+Test2;-Test2");
config.SetString("verbosity", VerbosityLevel.Info.ToString());

Directory.SetCurrentDirectory(dir);
Expand Down Expand Up @@ -118,24 +118,24 @@ public void ConfigProvidesMultiValuedSettings()
Directory.CreateDirectory(dir);
var config = Config.Build(dir).GetSection(DotNetConfigSettingNames.SectionName);

config.SetString("reports", ReportPath);
config = config.SetString("reports", ReportPath);

config.AddString("reporttype", "Latex");
config.AddString("reporttype", "Html");
config = config.AddString("reporttype", "Latex");
config = config.AddString("reporttype", "Html");

config.AddString("assemblyfilter", "+Test");
config.AddString("assemblyfilter", "-Test");
config = config.AddString("assemblyfilter", "+Test");
config = config.AddString("assemblyfilter", "-Test");

config.AddString("classfilter", "+Test2");
config.AddString("classfilter", "-Test2");
config = config.AddString("classfilter", "+Test2");
config = config.AddString("classfilter", "-Test2");

config.AddString("filefilter", "+cs");
config.AddString("filefilter", "-vb");
config = config.AddString("filefilter", "+cs");
config = config.AddString("filefilter", "-vb");

config.AddString("sourcedir", "src");
config.AddString("sourcedir", "test");
config = config.AddString("sourcedir", "src");
config = config.AddString("sourcedir", "test");

config.AddString("plugin", "xunit");
config = config.AddString("plugin", "xunit");
config.AddString("plugin", "moq");

Directory.SetCurrentDirectory(dir);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<TargetFramework>net5.0</TargetFramework>
<IsPackable>false</IsPackable>
<RootNamespace>Palmmedia.ReportGenerator.Core.Test</RootNamespace>
<AssemblyVersion>4.8.11.0</AssemblyVersion>
<FileVersion>4.8.11.0</FileVersion>
<AssemblyVersion>4.8.12.0</AssemblyVersion>
<FileVersion>4.8.12.0</FileVersion>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>

Expand Down
4 changes: 2 additions & 2 deletions src/ReportGenerator.Core/ReportGenerator.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<AssemblyName>ReportGenerator.Core</AssemblyName>
<AssemblyVersion>4.8.11.0</AssemblyVersion>
<FileVersion>4.8.11.0</FileVersion>
<AssemblyVersion>4.8.12.0</AssemblyVersion>
<FileVersion>4.8.12.0</FileVersion>
</PropertyGroup>

<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<PropertyGroup>
<TargetFrameworks>netcoreapp2.0;net5.0</TargetFrameworks>
<RootNamespace>ReportGenerator.DotnetCorePluginLoader</RootNamespace>
<AssemblyVersion>4.8.11.0</AssemblyVersion>
<FileVersion>4.8.11.0</FileVersion>
<AssemblyVersion>4.8.12.0</AssemblyVersion>
<FileVersion>4.8.12.0</FileVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<AssemblyName>ReportGenerator</AssemblyName>
<RootNamespace>Palmmedia.ReportGenerator</RootNamespace>
<StartupObject>Palmmedia.ReportGenerator.DotnetGlobalTool.Program</StartupObject>
<AssemblyVersion>4.8.11.0</AssemblyVersion>
<FileVersion>4.8.11.0</FileVersion>
<AssemblyVersion>4.8.12.0</AssemblyVersion>
<FileVersion>4.8.12.0</FileVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions src/ReportGenerator.MSBuild/ReportGenerator.MSBuild.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<RootNamespace>Palmmedia.ReportGenerator.MSBuild</RootNamespace>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<AssemblyVersion>4.8.11.0</AssemblyVersion>
<FileVersion>4.8.11.0</FileVersion>
<AssemblyVersion>4.8.12.0</AssemblyVersion>
<FileVersion>4.8.12.0</FileVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="16.10.0" />
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="16.9.0" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/build.proj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<!-- Version, adjust before build -->
<PropertyGroup>
<Version>4.8.11</Version>
<Version>4.8.12</Version>
</PropertyGroup>

<!-- Tools -->
Expand Down

0 comments on commit 6ce9235

Please sign in to comment.