Skip to content

Commit

Permalink
Move samples from trailing edge dotnet
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveGilham committed Jul 13, 2023
1 parent 60e7218 commit 290e419
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion AltCover.Tests/Tests.fs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ module AltCoverTests =
let sample8path =
Path.Combine(
SolutionDir(),
"_Binaries/Sample8/Debug+AnyCPU/netcoreapp2.0/Sample8.dll"
"_Binaries/Sample8/Debug+AnyCPU/net7.0/Sample8.dll"
)
#else
let sample4path =
Expand Down
4 changes: 2 additions & 2 deletions Build/targets.fs
Original file line number Diff line number Diff line change
Expand Up @@ -930,7 +930,7 @@ module Targets =
"./Samples/Sample28/SourceGenerators.sln" ]
|> Seq.iter dotnetBuildDebug

Shell.copy "./_SourceLink" (!! "./_Binaries/Sample14/Debug+AnyCPU/netcoreapp2.1/*"))
Shell.copy "./_SourceLink" (!! "./_Binaries/Sample14/Debug+AnyCPU/net7.0/*"))

let BuildMonoSamples =
(fun _ ->
Expand Down Expand Up @@ -3671,7 +3671,7 @@ module Targets =
Path.getFullName "_Binaries/AltCover/Release+AnyCPU/netcoreapp2.0"

let sampleRoot =
Path.getFullName "_Binaries/Sample8/Debug+AnyCPU/netcoreapp2.0"
Path.getFullName "_Binaries/Sample8/Debug+AnyCPU/net7.0"

let instrumented =
"__RecordResumeTestDotNet"
Expand Down
2 changes: 1 addition & 1 deletion Samples/Sample14/Sample14/Sample14.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Samples/Sample8/Sample8.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>netcoreapp2.0;net20</TargetFrameworks>
<TargetFrameworks>net7.0;net20</TargetFrameworks>
<AssemblyName>Sample8</AssemblyName>
<ApplicationIcon>$(ProjectDir)../../AltCover/AltCover.ico</ApplicationIcon>
<DebugType>embedded</DebugType>
Expand Down

0 comments on commit 290e419

Please sign in to comment.