File tree Expand file tree Collapse file tree 8 files changed +6
-15
lines changed
coverlet.integration.determisticbuild Expand file tree Collapse file tree 8 files changed +6
-15
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99### Fixed
1010- Threshold-stat triggers error [ #1634 ] ( https://github.com/coverlet-coverage/coverlet/issues/1634 )
1111- Fixed coverlet collector 6.0.1 requires dotnet sdk 8 [ #1625 ] ( https://github.com/coverlet-coverage/coverlet/issues/1625 )
12+ - Type initializer errors after updating from 6.0.0 to 6.0.1 [ #1629 ] ( https://github.com/coverlet-coverage/coverlet/issues/1629 )
1213- Exception when multiple exclude-by-attribute filters specified [ #1624 ] ( https://github.com/coverlet-coverage/coverlet/issues/1624 )
1314
1415### Improvements
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22 <PropertyGroup >
3- <TargetFrameworks >netstandard2.0;net6.0 </TargetFrameworks >
3+ <TargetFrameworks >netstandard2.0</TargetFrameworks >
44 <AssemblyTitle >coverlet.collector</AssemblyTitle >
55 <DevelopmentDependency >true</DevelopmentDependency >
66 <CopyLocalLockFileAssemblies >true</CopyLocalLockFileAssemblies >
Original file line number Diff line number Diff line change 22
33 <PropertyGroup >
44 <OutputType >Library</OutputType >
5- <TargetFrameworks >netstandard2.0;net6.0 </TargetFrameworks >
5+ <TargetFrameworks >netstandard2.0</TargetFrameworks >
66 <IsPackable >false</IsPackable >
77 </PropertyGroup >
88
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1919 <ExcludeAssembliesWithoutSources Condition =" $(ExcludeAssembliesWithoutSources) == ''" ></ExcludeAssembliesWithoutSources >
2020 </PropertyGroup >
2121 <PropertyGroup >
22- <CoverletToolsPath Condition =" '$(CoverletToolsPath)' == '' and '$(MSBuildRuntimeType)' == 'Core'" >$(MSBuildThisFileDirectory)..\tasks\net6.0\</CoverletToolsPath >
23- <CoverletToolsPath Condition =" '$(CoverletToolsPath)' == '' and '$(MSBuildRuntimeType)' != 'Core'" >$(MSBuildThisFileDirectory)..\tasks\netstandard2.0\</CoverletToolsPath >
22+ <CoverletToolsPath Condition =" '$(CoverletToolsPath)' == '' " >$(MSBuildThisFileDirectory)..\tasks\netstandard2.0\</CoverletToolsPath >
2423 </PropertyGroup >
2524</Project >
Original file line number Diff line number Diff line change 22
33 <PropertyGroup >
44 <OutputType >Library</OutputType >
5- <TargetFrameworks >netstandard2.0;net6.0 </TargetFrameworks >
5+ <TargetFrameworks >netstandard2.0</TargetFrameworks >
66 <AssemblyTitle >coverlet.msbuild.tasks</AssemblyTitle >
77 <CopyLocalLockFileAssemblies >true</CopyLocalLockFileAssemblies >
88 <TargetsForTfmSpecificContentInPackage >$(TargetsForTfmSpecificContentInPackage);PackBuildOutputs</TargetsForTfmSpecificContentInPackage >
5555 <None Include =" coverlet.msbuild.props" Pack =" true" PackagePath =" build\" >
5656 <CopyToOutputDirectory >Always</CopyToOutputDirectory >
5757 </None >
58- <None Include =" buildMultiTargeting\coverlet.msbuild.props" Pack =" true" PackagePath =" buildMultiTargeting\" >
59- <CopyToOutputDirectory >Always</CopyToOutputDirectory >
60- </None >
6158 <None Include =" coverlet.msbuild.targets" Pack =" true" PackagePath =" build\" >
6259 <CopyToOutputDirectory >Always</CopyToOutputDirectory >
6360 </None >
Original file line number Diff line number Diff line change 1414 This is required when the coverlet.msbuild imports are made in their src directory
1515 (so that msbuild eval works even before they are built)
1616 so that they can still find the tooling that will be built by the build. -->
17- <CoverletToolsPath Condition =" '$(MSBuildRuntimeType)' == 'Core'" >$(RepoRoot)artifacts\bin\coverlet.msbuild.tasks\$(Configuration.ToLowerInvariant())_net6.0\</CoverletToolsPath >
18- <CoverletToolsPath Condition =" '$(MSBuildRuntimeType)' != 'Core'" >$(RepoRoot)artifacts\bin\coverlet.msbuild.tasks\$(Configuration.ToLowerInvariant())_netstandard2.0\</CoverletToolsPath >
17+ <CoverletToolsPath >$(RepoRoot)artifacts\bin\coverlet.msbuild.tasks\$(Configuration.ToLowerInvariant())_netstandard2.0\</CoverletToolsPath >
1918 </PropertyGroup >
2019 </When >
2120 </Choose >
Original file line number Diff line number Diff line change 1212 https://api.nuget.org/v3/index.json;
1313 $(RepoRoot)artifacts/package/$(Configuration.ToLowerInvariant())
1414 </RestoreSources >
15- <AppendTargetFrameworkToOutputPath >true</AppendTargetFrameworkToOutputPath >
1615 </PropertyGroup >
1716
1817 <ItemGroup >
You can’t perform that action at this time.
0 commit comments