You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CODE_OF_CONDUCT.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ Project maintainers who do not follow or enforce the Code of Conduct in good fai
40
40
41
41
## Attribution
42
42
43
-
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
43
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [https://contributor-covenant.org/version/1/4][version]
*[The F# Language Specification](https://fsharp.org/specs/language-spec/)
89
89
90
90
## License
91
91
92
92
This project is subject to the MIT License. A copy of this license is in [License.txt](License.txt).
93
93
94
94
## Code of Conduct
95
95
96
-
This project has adopted the [Contributor Covenant](http://contributor-covenant.org/) code of conduct to clarify expected behavior in our community. You can read it at [CODE_OF_CONDUCT](CODE_OF_CONDUCT.md).
96
+
This project has adopted the [Contributor Covenant](https://contributor-covenant.org/) code of conduct to clarify expected behavior in our community. You can read it at [CODE_OF_CONDUCT](CODE_OF_CONDUCT.md).
97
97
98
98
## Get In Touch
99
99
100
-
Members of the [F# Software Foundation](http://fsharp.org) are invited to the [FSSF Slack](http://fsharp.org/guides/slack/). You can find support from other contributors in the `#compiler` and `#editor-support` channels.
100
+
Members of the [F# Software Foundation](https://fsharp.org) are invited to the [FSSF Slack](https://fsharp.org/guides/slack/). You can find support from other contributors in the `#compiler` and `#editor-support` channels.
101
101
102
102
Additionally, you can use the `#fsharp` tag on Twitter if you have general F# questions, including about this repository. Chances are you'll get multiple responses.
103
103
104
-
## About F#
104
+
## About F\#
105
105
106
106
If you're curious about F# itself, check out these links:
107
107
108
108
*[What is F#](https://docs.microsoft.com/dotnet/fsharp/what-is-fsharp)
109
109
*[Get started with F#](https://docs.microsoft.com/dotnet/fsharp/get-started/)
Write-Host" -procdump Monitor test runs with procdump"
97
98
Write-Host" -prepareMachine Prepare machine for CI run, clean up processes after build"
98
99
Write-Host" -useGlobalNuGetCache Use global NuGet cache."
100
+
Write-Host" -noVisualStudio Only build fsc and fsi as .NET Core applications. No Visual Studio required. '-configuration', '-verbosity', '-norestore', '-rebuild' are supported."
99
101
Write-Host""
100
102
Write-Host"Command line arguments starting with '/p:' are passed through to MSBuild."
101
103
}
@@ -145,8 +147,19 @@ function Process-Arguments() {
145
147
}
146
148
147
149
functionUpdate-Arguments() {
148
-
if (-Not (Test-Path"$ArtifactsDir\Bootstrap\fsc\fsc.exe")) {
149
-
$script:bootstrap=$True
150
+
if ($script:noVisualStudio) {
151
+
$script:bootstrapTfm="netcoreapp2.1"
152
+
$script:msbuildEngine="dotnet"
153
+
}
154
+
155
+
if ($bootstrapTfm-eq"netcoreapp2.1") {
156
+
if (-Not (Test-Path"$ArtifactsDir\Bootstrap\fsc\fsc.runtimeconfig.json")) {
157
+
$script:bootstrap=$True
158
+
}
159
+
} else {
160
+
if (-Not (Test-Path"$ArtifactsDir\Bootstrap\fsc\fsc.exe") -or (Test-Path"$ArtifactsDir\Bootstrap\fsc\fsc.runtimeconfig.json")) {
161
+
$script:bootstrap=$True
162
+
}
150
163
}
151
164
}
152
165
@@ -227,10 +240,37 @@ function TestUsingNUnit([string] $testProject, [string] $targetFramework) {
0 commit comments