From 0678bbad9a1a527a423c834ad1cb3406d26abdf4 Mon Sep 17 00:00:00 2001 From: Sanchime Date: Wed, 16 Feb 2022 20:33:08 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9B=E5=BB=BA=E9=A1=B9=E7=9B=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Basic-practice-of-FSharp.fsproj | 13 ++ Basic-practice-of-FSharp/Program.fs | 4 + ...ractice-of-FSharp.fsproj.nuget.dgspec.json | 63 +++++++ ...ic-practice-of-FSharp.fsproj.nuget.g.props | 18 ++ ...-practice-of-FSharp.fsproj.nuget.g.targets | 2 + .../obj/project.assets.json | 173 ++++++++++++++++++ .../obj/project.nuget.cache | 10 + README.md | 2 +- 8 files changed, 284 insertions(+), 1 deletion(-) create mode 100644 Basic-practice-of-FSharp/Basic-practice-of-FSharp.fsproj create mode 100644 Basic-practice-of-FSharp/Program.fs create mode 100644 Basic-practice-of-FSharp/obj/Basic-practice-of-FSharp.fsproj.nuget.dgspec.json create mode 100644 Basic-practice-of-FSharp/obj/Basic-practice-of-FSharp.fsproj.nuget.g.props create mode 100644 Basic-practice-of-FSharp/obj/Basic-practice-of-FSharp.fsproj.nuget.g.targets create mode 100644 Basic-practice-of-FSharp/obj/project.assets.json create mode 100644 Basic-practice-of-FSharp/obj/project.nuget.cache diff --git a/Basic-practice-of-FSharp/Basic-practice-of-FSharp.fsproj b/Basic-practice-of-FSharp/Basic-practice-of-FSharp.fsproj new file mode 100644 index 0000000..446d269 --- /dev/null +++ b/Basic-practice-of-FSharp/Basic-practice-of-FSharp.fsproj @@ -0,0 +1,13 @@ + + + + Exe + net6.0 + Basic_practice_of_FSharp + + + + + + + diff --git a/Basic-practice-of-FSharp/Program.fs b/Basic-practice-of-FSharp/Program.fs new file mode 100644 index 0000000..a547282 --- /dev/null +++ b/Basic-practice-of-FSharp/Program.fs @@ -0,0 +1,4 @@ + + +// For more information see https://aka.ms/fsharp-console-apps +printfn "Hello from F#" diff --git a/Basic-practice-of-FSharp/obj/Basic-practice-of-FSharp.fsproj.nuget.dgspec.json b/Basic-practice-of-FSharp/obj/Basic-practice-of-FSharp.fsproj.nuget.dgspec.json new file mode 100644 index 0000000..9518ef4 --- /dev/null +++ b/Basic-practice-of-FSharp/obj/Basic-practice-of-FSharp.fsproj.nuget.dgspec.json @@ -0,0 +1,63 @@ +{ + "format": 1, + "restore": { + "/home/sanchime/桌面/Program/F#/Basic-practice-of-FSharp/Basic-practice-of-FSharp/Basic-practice-of-FSharp.fsproj": {} + }, + "projects": { + "/home/sanchime/桌面/Program/F#/Basic-practice-of-FSharp/Basic-practice-of-FSharp/Basic-practice-of-FSharp.fsproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/sanchime/桌面/Program/F#/Basic-practice-of-FSharp/Basic-practice-of-FSharp/Basic-practice-of-FSharp.fsproj", + "projectName": "Basic-practice-of-FSharp", + "projectPath": "/home/sanchime/桌面/Program/F#/Basic-practice-of-FSharp/Basic-practice-of-FSharp/Basic-practice-of-FSharp.fsproj", + "packagesPath": "/home/sanchime/.nuget/packages/", + "outputPath": "/home/sanchime/桌面/Program/F#/Basic-practice-of-FSharp/Basic-practice-of-FSharp/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/sanchime/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "FSharp.Core": { + "include": "Runtime, Compile, Build, Native, Analyzers, BuildTransitive", + "target": "Package", + "version": "[6.0.1, )", + "generatePathProperty": true + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/6.0.102/RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Basic-practice-of-FSharp/obj/Basic-practice-of-FSharp.fsproj.nuget.g.props b/Basic-practice-of-FSharp/obj/Basic-practice-of-FSharp.fsproj.nuget.g.props new file mode 100644 index 0000000..ef01e7a --- /dev/null +++ b/Basic-practice-of-FSharp/obj/Basic-practice-of-FSharp.fsproj.nuget.g.props @@ -0,0 +1,18 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/sanchime/.nuget/packages/ + /home/sanchime/.nuget/packages/ + PackageReference + 6.0.0 + + + + + + /home/sanchime/.nuget/packages/fsharp.core/6.0.1 + + \ No newline at end of file diff --git a/Basic-practice-of-FSharp/obj/Basic-practice-of-FSharp.fsproj.nuget.g.targets b/Basic-practice-of-FSharp/obj/Basic-practice-of-FSharp.fsproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/Basic-practice-of-FSharp/obj/Basic-practice-of-FSharp.fsproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Basic-practice-of-FSharp/obj/project.assets.json b/Basic-practice-of-FSharp/obj/project.assets.json new file mode 100644 index 0000000..b2af27a --- /dev/null +++ b/Basic-practice-of-FSharp/obj/project.assets.json @@ -0,0 +1,173 @@ +{ + "version": 3, + "targets": { + "net6.0": { + "FSharp.Core/6.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.1/FSharp.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.1/FSharp.Core.dll": {} + }, + "resource": { + "lib/netstandard2.1/cs/FSharp.Core.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.1/de/FSharp.Core.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.1/es/FSharp.Core.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.1/fr/FSharp.Core.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.1/it/FSharp.Core.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.1/ja/FSharp.Core.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.1/ko/FSharp.Core.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.1/pl/FSharp.Core.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.1/pt-BR/FSharp.Core.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.1/ru/FSharp.Core.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.1/tr/FSharp.Core.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.1/zh-Hans/FSharp.Core.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.1/zh-Hant/FSharp.Core.resources.dll": { + "locale": "zh-Hant" + } + }, + "contentFiles": { + "contentFiles/any/any/_._": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": false + } + } + } + } + }, + "libraries": { + "FSharp.Core/6.0.1": { + "sha512": "VrFAiW8dEEekk+0aqlbvMNZzDvYXmgWZwAt68AUBqaWK8RnoEVUNglj66bZzhs4/U63q0EfXlhcEKnH1sTYLjw==", + "type": "package", + "path": "fsharp.core/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "contentFiles/any/netstandard2.0/FSharp.Core.xml", + "contentFiles/any/netstandard2.1/FSharp.Core.xml", + "fsharp.core.6.0.1.nupkg.sha512", + "fsharp.core.nuspec", + "lib/netstandard2.0/FSharp.Core.dll", + "lib/netstandard2.0/FSharp.Core.xml", + "lib/netstandard2.0/cs/FSharp.Core.resources.dll", + "lib/netstandard2.0/de/FSharp.Core.resources.dll", + "lib/netstandard2.0/es/FSharp.Core.resources.dll", + "lib/netstandard2.0/fr/FSharp.Core.resources.dll", + "lib/netstandard2.0/it/FSharp.Core.resources.dll", + "lib/netstandard2.0/ja/FSharp.Core.resources.dll", + "lib/netstandard2.0/ko/FSharp.Core.resources.dll", + "lib/netstandard2.0/pl/FSharp.Core.resources.dll", + "lib/netstandard2.0/pt-BR/FSharp.Core.resources.dll", + "lib/netstandard2.0/ru/FSharp.Core.resources.dll", + "lib/netstandard2.0/tr/FSharp.Core.resources.dll", + "lib/netstandard2.0/zh-Hans/FSharp.Core.resources.dll", + "lib/netstandard2.0/zh-Hant/FSharp.Core.resources.dll", + "lib/netstandard2.1/FSharp.Core.dll", + "lib/netstandard2.1/FSharp.Core.xml", + "lib/netstandard2.1/cs/FSharp.Core.resources.dll", + "lib/netstandard2.1/de/FSharp.Core.resources.dll", + "lib/netstandard2.1/es/FSharp.Core.resources.dll", + "lib/netstandard2.1/fr/FSharp.Core.resources.dll", + "lib/netstandard2.1/it/FSharp.Core.resources.dll", + "lib/netstandard2.1/ja/FSharp.Core.resources.dll", + "lib/netstandard2.1/ko/FSharp.Core.resources.dll", + "lib/netstandard2.1/pl/FSharp.Core.resources.dll", + "lib/netstandard2.1/pt-BR/FSharp.Core.resources.dll", + "lib/netstandard2.1/ru/FSharp.Core.resources.dll", + "lib/netstandard2.1/tr/FSharp.Core.resources.dll", + "lib/netstandard2.1/zh-Hans/FSharp.Core.resources.dll", + "lib/netstandard2.1/zh-Hant/FSharp.Core.resources.dll" + ] + } + }, + "projectFileDependencyGroups": { + "net6.0": [ + "FSharp.Core >= 6.0.1" + ] + }, + "packageFolders": { + "/home/sanchime/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/sanchime/桌面/Program/F#/Basic-practice-of-FSharp/Basic-practice-of-FSharp/Basic-practice-of-FSharp.fsproj", + "projectName": "Basic-practice-of-FSharp", + "projectPath": "/home/sanchime/桌面/Program/F#/Basic-practice-of-FSharp/Basic-practice-of-FSharp/Basic-practice-of-FSharp.fsproj", + "packagesPath": "/home/sanchime/.nuget/packages/", + "outputPath": "/home/sanchime/桌面/Program/F#/Basic-practice-of-FSharp/Basic-practice-of-FSharp/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/sanchime/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "FSharp.Core": { + "include": "Runtime, Compile, Build, Native, Analyzers, BuildTransitive", + "target": "Package", + "version": "[6.0.1, )", + "generatePathProperty": true + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/6.0.102/RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/Basic-practice-of-FSharp/obj/project.nuget.cache b/Basic-practice-of-FSharp/obj/project.nuget.cache new file mode 100644 index 0000000..19d260d --- /dev/null +++ b/Basic-practice-of-FSharp/obj/project.nuget.cache @@ -0,0 +1,10 @@ +{ + "version": 2, + "dgSpecHash": "RxzwOKu6Y/vL5kYjtwEsFXWSYmC5UKihJj+9wG2EQHaTWrwjURVnqYyXQYdHVQ9kcznEGDzAB64vlcwG0EkDhA==", + "success": true, + "projectFilePath": "/home/sanchime/桌面/Program/F#/Basic-practice-of-FSharp/Basic-practice-of-FSharp/Basic-practice-of-FSharp.fsproj", + "expectedPackageFiles": [ + "/home/sanchime/.nuget/packages/fsharp.core/6.0.1/fsharp.core.6.0.1.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/README.md b/README.md index a39f911..6974a3f 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ # Basic-practice-of-FSharp - +# F#的基本练习