File tree 8 files changed +6
-15
lines changed
coverlet.integration.determisticbuild
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
9
9
### Fixed
10
10
- Threshold-stat triggers error [ #1634 ] ( https://github.com/coverlet-coverage/coverlet/issues/1634 )
11
11
- 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 )
12
13
- Exception when multiple exclude-by-attribute filters specified [ #1624 ] ( https://github.com/coverlet-coverage/coverlet/issues/1624 )
13
14
14
15
### Improvements
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
- <TargetFrameworks >netstandard2.0;net6.0 </TargetFrameworks >
3
+ <TargetFrameworks >netstandard2.0</TargetFrameworks >
4
4
<AssemblyTitle >coverlet.collector</AssemblyTitle >
5
5
<DevelopmentDependency >true</DevelopmentDependency >
6
6
<CopyLocalLockFileAssemblies >true</CopyLocalLockFileAssemblies >
Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<OutputType >Library</OutputType >
5
- <TargetFrameworks >netstandard2.0;net6.0 </TargetFrameworks >
5
+ <TargetFrameworks >netstandard2.0</TargetFrameworks >
6
6
<IsPackable >false</IsPackable >
7
7
</PropertyGroup >
8
8
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 19
19
<ExcludeAssembliesWithoutSources Condition =" $(ExcludeAssembliesWithoutSources) == ''" ></ExcludeAssembliesWithoutSources >
20
20
</PropertyGroup >
21
21
<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 >
24
23
</PropertyGroup >
25
24
</Project >
Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<OutputType >Library</OutputType >
5
- <TargetFrameworks >netstandard2.0;net6.0 </TargetFrameworks >
5
+ <TargetFrameworks >netstandard2.0</TargetFrameworks >
6
6
<AssemblyTitle >coverlet.msbuild.tasks</AssemblyTitle >
7
7
<CopyLocalLockFileAssemblies >true</CopyLocalLockFileAssemblies >
8
8
<TargetsForTfmSpecificContentInPackage >$(TargetsForTfmSpecificContentInPackage);PackBuildOutputs</TargetsForTfmSpecificContentInPackage >
55
55
<None Include =" coverlet.msbuild.props" Pack =" true" PackagePath =" build\" >
56
56
<CopyToOutputDirectory >Always</CopyToOutputDirectory >
57
57
</None >
58
- <None Include =" buildMultiTargeting\coverlet.msbuild.props" Pack =" true" PackagePath =" buildMultiTargeting\" >
59
- <CopyToOutputDirectory >Always</CopyToOutputDirectory >
60
- </None >
61
58
<None Include =" coverlet.msbuild.targets" Pack =" true" PackagePath =" build\" >
62
59
<CopyToOutputDirectory >Always</CopyToOutputDirectory >
63
60
</None >
Original file line number Diff line number Diff line change 14
14
This is required when the coverlet.msbuild imports are made in their src directory
15
15
(so that msbuild eval works even before they are built)
16
16
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 >
19
18
</PropertyGroup >
20
19
</When >
21
20
</Choose >
Original file line number Diff line number Diff line change 12
12
https://api.nuget.org/v3/index.json;
13
13
$(RepoRoot)artifacts/package/$(Configuration.ToLowerInvariant())
14
14
</RestoreSources >
15
- <AppendTargetFrameworkToOutputPath >true</AppendTargetFrameworkToOutputPath >
16
15
</PropertyGroup >
17
16
18
17
<ItemGroup >
You can’t perform that action at this time.
0 commit comments