Skip to content

Commit a0ab200

Browse files
committed
Remove comboprovider, upgrade, etc.
1 parent f09b6de commit a0ab200

21 files changed

+190
-873
lines changed

.config/dotnet-tools.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
"isRoot": true,
44
"tools": {
55
"paket": {
6-
"version": "5.243.0",
6+
"version": "5.249.0",
77
"commands": [
88
"paket"
99
]
1010
},
1111
"fake-cli": {
12-
"version": "5.19.1",
12+
"version": "5.20.1",
1313
"commands": [
1414
"fake"
1515
]

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
os: [windows-latest, macOS-latest, ubuntu-latest]
18-
dotnet: [3.1.201]
18+
dotnet: [3.1.302]
1919
runs-on: ${{ matrix.os }}
2020

2121
steps:

FSharp.TypeProviders.SDK.sln

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "examples", "examples", "{E5
1313
EndProject
1414
Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "BasicProvider.DesignTime", "examples\BasicProvider.DesignTime\BasicProvider.DesignTime.fsproj", "{8A9470AA-303A-40D3-813C-1B6563EDB573}"
1515
EndProject
16-
Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "ComboProvider", "examples\ComboProvider\ComboProvider.fsproj", "{E1762555-BA7F-4E6A-A2ED-CE7977494563}"
17-
EndProject
1816
Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "StressProvider", "examples\StressProvider\StressProvider.fsproj", "{D9D3ED64-F4E3-4DCC-BD34-368BD9170F89}"
1917
EndProject
2018
Global
@@ -42,10 +40,6 @@ Global
4240
{8A9470AA-303A-40D3-813C-1B6563EDB573}.Debug|Any CPU.Build.0 = Debug|Any CPU
4341
{8A9470AA-303A-40D3-813C-1B6563EDB573}.Release|Any CPU.ActiveCfg = Release|Any CPU
4442
{8A9470AA-303A-40D3-813C-1B6563EDB573}.Release|Any CPU.Build.0 = Release|Any CPU
45-
{E1762555-BA7F-4E6A-A2ED-CE7977494563}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
46-
{E1762555-BA7F-4E6A-A2ED-CE7977494563}.Debug|Any CPU.Build.0 = Debug|Any CPU
47-
{E1762555-BA7F-4E6A-A2ED-CE7977494563}.Release|Any CPU.ActiveCfg = Release|Any CPU
48-
{E1762555-BA7F-4E6A-A2ED-CE7977494563}.Release|Any CPU.Build.0 = Release|Any CPU
4943
{D9D3ED64-F4E3-4DCC-BD34-368BD9170F89}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
5044
{D9D3ED64-F4E3-4DCC-BD34-368BD9170F89}.Debug|Any CPU.Build.0 = Debug|Any CPU
5145
{D9D3ED64-F4E3-4DCC-BD34-368BD9170F89}.Release|Any CPU.ActiveCfg = Release|Any CPU
@@ -57,7 +51,6 @@ Global
5751
GlobalSection(NestedProjects) = preSolution
5852
{5EF9FF95-1C75-458A-983A-168E43945914} = {E5E5268B-0B72-41FE-9747-5CEBEE3EB161}
5953
{8A9470AA-303A-40D3-813C-1B6563EDB573} = {E5E5268B-0B72-41FE-9747-5CEBEE3EB161}
60-
{E1762555-BA7F-4E6A-A2ED-CE7977494563} = {E5E5268B-0B72-41FE-9747-5CEBEE3EB161}
6154
{D9D3ED64-F4E3-4DCC-BD34-368BD9170F89} = {E5E5268B-0B72-41FE-9747-5CEBEE3EB161}
6255
EndGlobalSection
6356
GlobalSection(ExtensibilityGlobals) = postSolution

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,5 +266,6 @@ The library is available under the MIT License. For more information see the [Li
266266
- [@mavnn](https://github.com/mavnn)
267267
- [@ovatsus](https://github.com/ovatsus)
268268
- [@dsyme](https://github.com/dsyme)
269+
- [@cartermp](https://github.com/cartermp)
269270

270271
The default maintainer account for projects under "fsprojects" is [@fsprojectsgit](https://github.com/fsprojectsgit) - F# Community Project Incubation Space (repo management)

build.fsx

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ Target.create "Build" (fun _ ->
4949
Target.create "Examples" (fun _ ->
5050
DotNet.build setParams "examples/BasicProvider.DesignTime/BasicProvider.DesignTime.fsproj"
5151
DotNet.build setParams "examples/BasicProvider/BasicProvider.fsproj"
52-
DotNet.build setParams "examples/ComboProvider/ComboProvider.fsproj"
5352
DotNet.build setParams "examples/StressProvider/StressProvider.fsproj"
5453
)
5554

@@ -60,7 +59,6 @@ Target.create "RunTests" (fun _ ->
6059
[
6160
"tests/FSharp.TypeProviders.SDK.Tests.fsproj"
6261
"examples/BasicProvider.Tests/BasicProvider.Tests.fsproj"
63-
"examples/ComboProvider.Tests/ComboProvider.Tests.fsproj"
6462
"examples/StressProvider.Tests/StressProvider.Tests.fsproj"
6563
]
6664
|> List.iter (fun fsproj ->
@@ -86,14 +84,13 @@ Target.create "Pack" (fun _ ->
8684
}
8785
}) "src/FSharp.TypeProviders.SDK.fsproj"
8886
DotNet.pack setParams "examples/BasicProvider/BasicProvider.fsproj"
89-
DotNet.pack setParams "examples/ComboProvider/ComboProvider.fsproj"
9087
DotNet.pack setParams "examples/StressProvider/StressProvider.fsproj"
9188

9289
NuGet.NuGet.NuGetPack (fun p -> {
9390
p with
94-
WorkingDir="templates"
95-
OutputPath=outputPath
96-
Version=release.NugetVersion
91+
WorkingDir = "templates"
92+
OutputPath = outputPath
93+
Version = release.NugetVersion
9794
ReleaseNotes = releaseNotes
9895
}) "templates/FSharp.TypeProviders.Templates.nuspec"
9996
)

0 commit comments

Comments
 (0)