Skip to content

Commit e7d3859

Browse files
Checking if this can be netstandard2.0 project instead of netstandard2.1
1 parent 6e14439 commit e7d3859

File tree

27 files changed

+29
-29
lines changed

27 files changed

+29
-29
lines changed

docs/apidocs.fsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ index: 6
88
*)
99
(*** condition: prepare ***)
1010
#nowarn "211"
11-
#I "../src/FSharp.Formatting/bin/Release/netstandard2.1"
11+
#I "../src/FSharp.Formatting/bin/Release/netstandard2.0"
1212
#r "FSharp.Compiler.Service"
1313
#r "FSharp.Formatting.Common.dll"
1414
#r "FSharp.Formatting.Markdown.dll"

docs/codeformat.fsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ index: 1
77
*)
88
(*** condition: prepare ***)
99
#nowarn "211"
10-
#I "../src/FSharp.Formatting/bin/Release/netstandard2.1"
10+
#I "../src/FSharp.Formatting/bin/Release/netstandard2.0"
1111
#r "FSharp.Formatting.Common.dll"
1212
#r "FSharp.Formatting.Markdown.dll"
1313
#r "FSharp.Formatting.CodeFormat.dll"

docs/content.fsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ index: 5
77
*)
88
(*** condition: prepare ***)
99
#nowarn "211"
10-
#I "../src/FSharp.Formatting/bin/Release/netstandard2.1"
10+
#I "../src/FSharp.Formatting/bin/Release/netstandard2.0"
1111
#r "FSharp.Formatting.Common.dll"
1212
#r "FSharp.Formatting.Markdown.dll"
1313
#r "FSharp.Formatting.CodeFormat.dll"

docs/evaluation.fsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ index: 7
77
*)
88
(*** condition: prepare ***)
99
#nowarn "211"
10-
#I "../src/FSharp.Formatting/bin/Release/netstandard2.1"
10+
#I "../src/FSharp.Formatting/bin/Release/netstandard2.0"
1111
#r "FSharp.Formatting.Common.dll"
1212
#r "FSharp.Formatting.Markdown.dll"
1313
#r "FSharp.Formatting.CodeFormat.dll"

docs/literate.fsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ index: 3
77
*)
88
(*** condition: prepare ***)
99
#nowarn "211"
10-
#I "../src/FSharp.Formatting/bin/Release/netstandard2.1"
10+
#I "../src/FSharp.Formatting/bin/Release/netstandard2.0"
1111
#r "FSharp.Formatting.Common.dll"
1212
#r "FSharp.Formatting.Markdown.dll"
1313
#r "FSharp.Formatting.CodeFormat.dll"
@@ -197,7 +197,7 @@ A header may be needed to get the code to load, a typical example is this:
197197
```text
198198
(*** condition: prepare ***)
199199
#nowarn "211"
200-
#I "../src/FSharp.Formatting/bin/Release/netstandard2.1"
200+
#I "../src/FSharp.Formatting/bin/Release/netstandard2.0"
201201
#r "FSharp.Formatting.Common.dll"
202202
#r "FSharp.Formatting.Markdown.dll"
203203
#r "FSharp.Formatting.CodeFormat.dll"

docs/markdown.fsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ index: 2
66
---
77
*)
88
(*** condition: prepare ***)
9-
#I "../src/FSharp.Formatting/bin/Release/netstandard2.1"
9+
#I "../src/FSharp.Formatting/bin/Release/netstandard2.0"
1010
#r "FSharp.Formatting.Common.dll"
1111
#r "FSharp.Formatting.Markdown.dll"
1212
(*** condition: fsx ***)

src/FSharp.Formatting.ApiDocs/FSharp.Formatting.ApiDocs.fsproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
4+
<TargetFramework>netstandard2.0</TargetFramework>
55
</PropertyGroup>
66
<ItemGroup>
77
<Compile Include="..\Common\Collections.fs">

src/FSharp.Formatting.CSharpFormat/FSharp.Formatting.CSharpFormat.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
4+
<TargetFramework>netstandard2.0</TargetFramework>
55
</PropertyGroup>
66
<ItemGroup>
77
<Folder Include="Properties\" />

src/FSharp.Formatting.CodeFormat/FSharp.Formatting.CodeFormat.fsproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
33
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
4+
<TargetFramework>netstandard2.0</TargetFramework>
55
</PropertyGroup>
66
<ItemGroup>
77
<Compile Include="..\Common\Collections.fs">

src/FSharp.Formatting.Common/FSharp.Formatting.Common.fsproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
33
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
4+
<TargetFramework>netstandard2.0</TargetFramework>
55
<DefineConstants>TRACE;YAAF_FSHARP_SCRIPTING_PUBLIC</DefineConstants>
66
<DisableMSBuildAssemblyCopyCheck>true</DisableMSBuildAssemblyCopyCheck>
77
<WarningsAsErrors>FS0025;FS1182;$(WarningsAsErrors)</WarningsAsErrors>

src/FSharp.Formatting.Literate/FSharp.Formatting.Literate.fsproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
4+
<TargetFramework>netstandard2.0</TargetFramework>
55
<IsPackable>true</IsPackable>
66
</PropertyGroup>
77
<ItemGroup>

src/FSharp.Formatting.Markdown/FSharp.Formatting.Markdown.fsproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
4+
<TargetFramework>netstandard2.0</TargetFramework>
55
</PropertyGroup>
66
<ItemGroup>
77
<Compile Include="..\Common\Collections.fs">

src/FSharp.Formatting/FSharp.Formatting.fsproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netstandard2.1</TargetFramework>
3+
<TargetFramework>netstandard2.0</TargetFramework>
44
<IsPackable>true</IsPackable>
55
<UsesMarkdownComments>true</UsesMarkdownComments>
66
</PropertyGroup>

src/FSharp.Formatting/FSharp.Formatting.fsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#nowarn "211"
22

33
// FSharp.Formatting repo context: uncomment for intellisense
4-
//#I "bin/Release/netstandard2.1"
4+
//#I "bin/Release/netstandard2.0"
55

66
// Standard NuGet or Paket location
77
#I __SOURCE_DIRECTORY__
8-
#I "lib/netstandard2.1"
8+
#I "lib/netstandard2.0"
99

1010
// Standard Paket locations
1111
#I "../FSharp.Compiler.Service/lib/netstandard2.0"

tests/FSharp.ApiDocs.Tests/AttributeTests.fs

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ let configuration =
2727
"Release"
2828
#endif
2929

30-
let tfm = "netstandard2.1"
30+
let tfm = "netstandard2.0"
3131

3232
// NOTE - For these tests to run properly they require the output of all the metadata
3333
// test project to be directed to the directory below

tests/FSharp.ApiDocs.Tests/files/AttributesTestLib/AttributesTestLib.fsproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
33
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
4+
<TargetFramework>netstandard2.0</TargetFramework>
55
<OutputPath>..\bin\$(Configuration)</OutputPath>
66
<NoWarn>FS1182</NoWarn>
77
</PropertyGroup>

tests/FSharp.ApiDocs.Tests/files/FsLib1/FsLib1.fsproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
4+
<TargetFramework>netstandard2.0</TargetFramework>
55
<OutputPath>..\bin\$(Configuration)</OutputPath>
66
</PropertyGroup>
77
<ItemGroup>

tests/FSharp.ApiDocs.Tests/files/FsLib2/FsLib2.fsproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
33
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
4+
<TargetFramework>netstandard2.0</TargetFramework>
55
<OutputPath>..\bin\$(Configuration)</OutputPath>
66
<NoWarn>FS1182</NoWarn>
77
</PropertyGroup>

tests/FSharp.ApiDocs.Tests/files/TestLib1/TestLib1.fsproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
33
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
4+
<TargetFramework>netstandard2.0</TargetFramework>
55
<OutputPath>..\bin\$(Configuration)</OutputPath>
66
</PropertyGroup>
77
<ItemGroup>

tests/FSharp.ApiDocs.Tests/files/TestLib2/TestLib2.fsproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
33
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
4+
<TargetFramework>netstandard2.0</TargetFramework>
55
<OutputPath>..\bin\$(Configuration)</OutputPath>
66
</PropertyGroup>
77
<ItemGroup>

tests/FSharp.ApiDocs.Tests/files/TestLib3/TestLib3.fsproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
33
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
4+
<TargetFramework>netstandard2.0</TargetFramework>
55
<OutputPath>..\bin\$(Configuration)</OutputPath>
66
</PropertyGroup>
77
<ItemGroup>

tests/FSharp.ApiDocs.Tests/files/crefLib1/crefLib1.fsproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
4+
<TargetFramework>netstandard2.0</TargetFramework>
55
<OutputPath>..\bin\$(Configuration)</OutputPath>
66
</PropertyGroup>
77
<ItemGroup>

tests/FSharp.ApiDocs.Tests/files/crefLib2/crefLib2.fsproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
4+
<TargetFramework>netstandard2.0</TargetFramework>
55
<OutputPath>..\bin\$(Configuration)</OutputPath>
66
</PropertyGroup>
77
<ItemGroup>

tests/FSharp.ApiDocs.Tests/files/crefLib3/crefLib3.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
4+
<TargetFramework>netstandard2.0</TargetFramework>
55
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
66
<OutputPath>..\bin\$(Configuration)</OutputPath>
77
<NoWarn>CS0067;CS1591;CS1574</NoWarn>

tests/FSharp.ApiDocs.Tests/files/crefLib4/crefLib4.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
4+
<TargetFramework>netstandard2.0</TargetFramework>
55
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
66
<OutputPath>..\bin\$(Configuration)</OutputPath>
77
<NoWarn>CS0067;CS1591;CS1574</NoWarn>

tests/FSharp.ApiDocs.Tests/files/csharpSupport/csharpSupport.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
4+
<TargetFramework>netstandard2.0</TargetFramework>
55
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
66
<OutputPath>..\bin\$(Configuration)</OutputPath>
77
<NoWarn>CS0067;CS1591;CS1574</NoWarn>

tests/FSharp.Formatting.TestHelpers/FSharp.Formatting.TestHelpers.fsproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
4+
<TargetFramework>netstandard2.0</TargetFramework>
55
</PropertyGroup>
66
<ItemGroup>
77
<Compile Include="AssemblyInfo.fs" />

0 commit comments

Comments
 (0)