Skip to content

Commit 4bbf265

Browse files
committed
Merge branch 'master' into release/v1
# Conflicts: # ReleaseNotes.md
2 parents 13e1976 + b07128e commit 4bbf265

4 files changed

Lines changed: 9 additions & 13 deletions

File tree

Build/targets.fsx

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -239,16 +239,13 @@ _Target "PrepareDotNetBuild" (fun _ ->
239239
System.IO.Compression.ZipFile.ExtractToDirectory(f, unpack))
240240

241241
[ ("./_Publish/expecto/altcode.test.expecto.nuspec",
242-
"AltCode.Test.Expecto (Expecto helper)",
243-
false)
242+
"AltCode.Test.Expecto (Expecto helper)")
244243
("./_Publish/nunit/altcode.test.nunit.nuspec",
245-
"AltCode.Test.NUnit (NUnit helper)",
246-
true)
244+
"AltCode.Test.NUnit (NUnit helper)")
247245
("./_Publish/xunit/altcode.test.xunit.nuspec",
248-
"AltCode.Test.Xunit (Xunit helper)",
249-
true)
246+
"AltCode.Test.Xunit (Xunit helper)")
250247
]
251-
|> List.iter (fun (path, caption, staticlink) ->
248+
|> List.iter (fun (path, caption) ->
252249
let x s = XName.Get(s, "http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd")
253250
let dotnetNupkg = XDocument.Load path
254251
let desc = dotnetNupkg.Descendants(x "description") |> Seq.head
@@ -273,10 +270,7 @@ _Target "PrepareDotNetBuild" (fun _ ->
273270

274271
dotnetNupkg.Descendants(x "dependency")
275272
|> Seq.filter (fun node -> let id = node.Attribute(XName.Get "id").Value
276-
id = "altcode.test.common" ||
277-
(staticlink &&
278-
id = "FSharp.Core" &&
279-
node.Parent.Attribute(XName.Get "targetFramework").Value.StartsWith(".NETFramework", StringComparison.Ordinal)))
273+
id = "altcode.test.common")
280274
|> Seq.toList
281275
|> List.iter (fun n -> n.Remove())
282276

ReleaseNotes.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ Q. Never mind the fluff -- how do I get started?
22

33
A. Start with the README : https://github.com/SteveGilham/altcode.test/blob/master/README.md
44

5+
# 1.0.8
6+
* `altcode.test.nunit` -- Fix classic framework support support
7+
* `altcode.test.xunit` -- Fix classic framework support support
8+
59
# 1.0.6
610
* [BREAKING] `Match` -> `AssertionMatch`
711
* `altcode.test.expecto` -- add `Expecto.Flip` support

altcode.test/altcode.test.nunit/altcode.test.nunit.fsproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
<OutputPath>$(SolutionDir)_Binaries/$(AssemblyName)/$(Configuration)+$(Platform)/</OutputPath>
1111
<IntermediateOutputPath>$(SolutionDir)_Intermediate/$(AssemblyName)/$(Configuration)+$(Platform)/</IntermediateOutputPath>
1212
<OtherFlags>--keyfile:$(SolutionDir)..\Build\Infrastructure.snk --staticlink:altcode.test.common</OtherFlags>
13-
<OtherFlags Condition="'$(TargetFramework)' != 'netstandard2.0'">$(OtherFlags) --standalone</OtherFlags>
1413
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1514
<PackageProjectUrl>https://github.com/SteveGilham/altcode.test</PackageProjectUrl>
1615
<RepositoryUrl>https://github.com/SteveGilham/altcode.test</RepositoryUrl>

altcode.test/altcode.test.xunit/altcode.test.xunit.fsproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
<OutputPath>$(SolutionDir)_Binaries/$(AssemblyName)/$(Configuration)+$(Platform)/</OutputPath>
1111
<IntermediateOutputPath>$(SolutionDir)_Intermediate/$(AssemblyName)/$(Configuration)+$(Platform)/</IntermediateOutputPath>
1212
<OtherFlags>--keyfile:$(SolutionDir)..\Build\Infrastructure.snk --staticlink:altcode.test.common</OtherFlags>
13-
<OtherFlags Condition="'$(TargetFramework)' != 'netstandard2.0'">$(OtherFlags) --standalone</OtherFlags>
1413
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1514
<PackageProjectUrl>https://github.com/SteveGilham/altcode.test</PackageProjectUrl>
1615
<RepositoryUrl>https://github.com/SteveGilham/altcode.test</RepositoryUrl>

0 commit comments

Comments
 (0)