Skip to content

Commit

Permalink
First tranche of build changes - packing api is not quite right
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveGilham committed Jul 27, 2024
1 parent 3e0d232 commit 5855e18
Show file tree
Hide file tree
Showing 7 changed files with 91 additions and 166 deletions.
2 changes: 1 addition & 1 deletion AltCover.Cake/AltCover.Cake.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0</TargetFrameworks>
<TargetFrameworks>net7.0</TargetFrameworks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<RootNamespace>AltCover.Cake</RootNamespace>
<AssemblyName>AltCover.Cake</AssemblyName>
Expand Down
2 changes: 1 addition & 1 deletion AltCover.Tests/Tests.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5977,7 +5977,7 @@ module AltCoverTests =
let path =
Path.Combine(
SolutionDir(),
"_Binaries/AltCover/Debug+AnyCPU/netcoreapp2.0/AltCover.Engine.dll"
"_Binaries/AltCover/Debug+AnyCPU/net7.0/AltCover.Engine.dll"
)

Visitor.visit
Expand Down
2 changes: 1 addition & 1 deletion AltCover.ValidateGendarmeEmulation/Tests.fs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ module ValidateGendarmeEmulation =
let path =
Path.Combine(
SolutionRoot.location,
"_Binaries/AltCover/Debug+AnyCPU/netcoreapp2.0/AltCover.Engine.dll"
"_Binaries/AltCover/Debug+AnyCPU/net7.0/AltCover.Engine.dll"
)

let def =
Expand Down
244 changes: 84 additions & 160 deletions Build/targets.fs

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions RegressionTesting/issue37/issue37.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<RollForward>Major</RollForward>
<IsPackable>false</IsPackable>
</PropertyGroup>
Expand All @@ -11,5 +11,4 @@
<PackageReference Include="NUnit3TestAdapter" />
<PackageReference Include="Microsoft.NET.Test.Sdk" />
</ItemGroup>

</Project>
2 changes: 2 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ A. Start with the Quick Start guide : https://github.com/SteveGilham/altcover/wi
read the FAQ : https://github.com/SteveGilham/altcover/wiki/FAQ

# (Indori series release 1)
* [BREAKING] Minimum platforms net472, netstandard2.0 and net7.0
* [BREAKING] SDK updates to latest current for Cake and MSBuild-related pacakges

# 8.8.173 (Habu series release 32)
* [PERFORMANCE] Issue #227 - removing the slow-down observed the new (at 8.8.165) file name processing for Cobertura
Expand Down
2 changes: 1 addition & 1 deletion nupkg/build/AltCover.targets
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

<PropertyGroup>
<AltCoverNetCoreEngine>$(MSBuildThisFileDirectory)../tools/netcoreapp2.0/AltCover.Engine.dll</AltCoverNetCoreEngine>
<AltCoverNetCoreEngine>$(MSBuildThisFileDirectory)../tools/net7.0/AltCover.Engine.dll</AltCoverNetCoreEngine>
<AltCoverNetStdEngine>$(MSBuildThisFileDirectory)../lib/netstandard2.0/AltCover.Engine.dll</AltCoverNetStdEngine>
<AltCoverEngine Condition="Exists($(AltCoverNetStdEngine))">$(AltCoverNetStdEngine)</AltCoverEngine>
<AltCoverEngine Condition="Exists($(AltCoverNetCoreEngine))">$(AltCoverNetCoreEngine)</AltCoverEngine>
Expand Down

0 comments on commit 5855e18

Please sign in to comment.