Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update of dependencies #186

Merged
merged 4 commits into from
Jul 18, 2021
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"isRoot": true,
"tools": {
"paket": {
"version": "5.257.0",
"version": "5.258.1",
"commands": [
"paket"
]
},
"fake-cli": {
"version": "5.20.3",
"version": "5.20.4",
CaptnCodr marked this conversation as resolved.
Show resolved Hide resolved
"commands": [
"fake"
]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
os: [windows-latest, macOS-latest, ubuntu-latest]
dotnet: [5.0.100]
dotnet: [5.0.205]
runs-on: ${{ matrix.os }}

steps:
Expand Down
3 changes: 2 additions & 1 deletion .paket/Paket.Restore.targets
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,8 @@
NuspecProperties="$(NuspecProperties)"
PackageLicenseFile="$(PackageLicenseFile)"
PackageLicenseExpression="$(PackageLicenseExpression)"
PackageLicenseExpressionVersion="$(PackageLicenseExpressionVersion)" />
PackageLicenseExpressionVersion="$(PackageLicenseExpressionVersion)"
NoDefaultExcludes="$(NoDefaultExcludes)" />

<PackTask Condition="$(UseMSBuild15_9_Pack)"
PackItem="$(PackProjectInputFile)"
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "5.0.100",
"version": "5.0.205",
"rollForward": "minor"
}
}
2 changes: 1 addition & 1 deletion paket.dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ nuget xunit
nuget xunit.runner.visualstudio
// for MsTest
nuget MSTest.TestFramework
nuget MSTest.TestAdapter
nuget MSTest.TestAdapter ~> 2.1.2
248 changes: 23 additions & 225 deletions paket.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions src/Common.fs
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ module Common =
/// </summary>
/// <example>
/// <code>
/// type TestUnion = First | Second of int | Third of string
/// let thisIsTrue = First |> isCase <@ First @>
/// let thisIsTrue = Second 5 |> isCase <@ Second @>
/// let thisIsTrue = Third "myString" |> isCase <@ Second, Third @>
///// type TestUnion = First | Second of int | Third of string
///// let thisIsTrue = First |> isCase <@ First @>
///// let thisIsTrue = Second 5 |> isCase <@ Second @>
///// let thisIsTrue = Third "myString" |> isCase <@ Second, Third @>
/// </code>
/// </example>
/// <exception cref="System.Exception">If the expression is not an union case or does not result in an union case.</exception>
Expand Down