-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reasons: - In the past years, as far as I remember, almost every single time I've come back to release a small change to FsCheck, FAKE has failed to work and needed additional time investment on my part. Paket has been less of a hassle in that regard, but still has been somewhat painful. (I'm not assiging blame, just making an observation.) - Not many people are as familiar with fake/paket as they are with dotnet /nuget, so it is my hope this will enable more contributions.
- Loading branch information
Showing
39 changed files
with
913 additions
and
861 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -171,3 +171,5 @@ project.lock.json | |
.fsdocs/ | ||
output/ | ||
tmp/ | ||
|
||
.idea/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
<Project> | ||
<Import Condition="Exists('version.props')" Project="version.props" /> | ||
|
||
<PropertyGroup> | ||
<Copyright>Copyright 2008</Copyright> | ||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<Copyright>Copyright 2008-2024</Copyright> | ||
<Authors>Kurt Schelfthout and contributors</Authors> | ||
<PackageTags>F# fsharp test random</PackageTags> | ||
<RepositoryUrl>https://github.com/Fscheck/fscheck</RepositoryUrl> | ||
<PackageProjectUrl>https://fscheck.github.io/FsCheck/</PackageProjectUrl> | ||
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression> | ||
<RepositoryType>git</RepositoryType> | ||
<DebugType>embedded</DebugType> | ||
<PackageIconUrl>https://raw.githubusercontent.com/fscheck/FsCheck/master/docs/files/img/logo.png</PackageIconUrl> | ||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> | ||
<PackageTags>test;testing;random;fscheck;quickcheck</PackageTags> | ||
</PropertyGroup> | ||
</Project> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<Project> | ||
<ItemGroup> | ||
<PackageVersion Include="FSharp.Core" Version="5.0.2" /> | ||
<PackageVersion Include="Microsoft.CodeCoverage" Version="16.11" /> | ||
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="16.11" /> | ||
<PackageVersion Include="Microsoft.NETCore.Platforms" Version="5.0.2" /> | ||
<PackageVersion Include="Microsoft.NETCore.Targets" Version="5.0" /> | ||
<PackageVersion Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2" /> | ||
<PackageVersion Include="Microsoft.TestPlatform.ObjectModel" Version="16.11" /> | ||
<PackageVersion Include="MSTest.TestAdapter" Version="2.2.7" /> | ||
<PackageVersion Include="MSTest.TestFramework" Version="2.2.7" /> | ||
<PackageVersion Include="Newtonsoft.Json" Version="13.0.1" /> | ||
<PackageVersion Include="NuGet.Frameworks" Version="5.11" /> | ||
<PackageVersion Include="NUnit" Version="[3.13.1,4.0.0)" /> | ||
<PackageVersion Include="NUnit3TestAdapter" Version="4.0" /> | ||
<PackageVersion Include="System.Buffers" Version="4.5.1" /> | ||
<PackageVersion Include="System.Collections" Version="4.3" /> | ||
<PackageVersion Include="System.Collections.Immutable" Version="5.0" /> | ||
<PackageVersion Include="System.Diagnostics.Debug" Version="4.3" /> | ||
<PackageVersion Include="System.Diagnostics.TextWriterTraceListener" Version="4.3" /> | ||
<PackageVersion Include="System.Diagnostics.TraceSource" Version="4.3" /> | ||
<PackageVersion Include="System.Globalization" Version="4.3" /> | ||
<PackageVersion Include="System.IO" Version="4.3" /> | ||
<PackageVersion Include="System.Memory" Version="4.5.4" /> | ||
<PackageVersion Include="System.Numerics.Vectors" Version="4.5" /> | ||
<PackageVersion Include="System.Reflection" Version="4.3" /> | ||
<PackageVersion Include="System.Reflection.Metadata" Version="5.0" /> | ||
<PackageVersion Include="System.Reflection.Primitives" Version="4.3" /> | ||
<PackageVersion Include="System.Resources.ResourceManager" Version="4.3" /> | ||
<PackageVersion Include="System.Runtime" Version="4.3.1" /> | ||
<PackageVersion Include="System.Runtime.CompilerServices.Unsafe" Version="5.0" /> | ||
<PackageVersion Include="System.Runtime.Extensions" Version="4.3.1" /> | ||
<PackageVersion Include="System.Text.Encoding" Version="4.3" /> | ||
<PackageVersion Include="System.Threading" Version="4.3" /> | ||
<PackageVersion Include="System.Threading.Tasks" Version="4.3" /> | ||
<PackageVersion Include="Unquote" Version="6.0" /> | ||
<PackageVersion Include="xunit" Version="2.4.1" /> | ||
<PackageVersion Include="xunit.abstractions" Version="2.0.3" /> | ||
<PackageVersion Include="xunit.analyzers" Version="0.10" /> | ||
<PackageVersion Include="xunit.assert" Version="2.4.1" /> | ||
<PackageVersion Include="xunit.core" Version="2.4.1" /> | ||
<PackageVersion Include="xunit.extensibility.core" Version="2.4.1" /> | ||
<PackageVersion Include="xunit.extensibility.execution" Version="[2.4.1, 3.0.0)" /> | ||
<PackageVersion Include="xunit.runner.visualstudio" Version="2.4.3" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,4 @@ | |
cls | ||
dotnet --info | ||
dotnet tool restore | ||
dotnet paket restore | ||
dotnet fake run build.fsx %* | ||
dotnet fsi build.fsx %* |
Oops, something went wrong.