Skip to content
This repository has been archived by the owner on Oct 31, 2021. It is now read-only.

Commit

Permalink
Drop PCL7 support as it wasn't working correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustavo Guerra committed Apr 29, 2014
1 parent fdc944c commit 109b36a
Show file tree
Hide file tree
Showing 29 changed files with 350 additions and 890 deletions.
8 changes: 1 addition & 7 deletions ApiaryProvider.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.30110.0
VisualStudioVersion = 12.0.30324.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{36E72EB1-5847-4B38-8993-B951648CB0D9}"
ProjectSection(SolutionItems) = preProject
Expand All @@ -18,8 +18,6 @@ Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "ApiaryProvider", "src\Apiar
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "ApiaryProvider.Portable47", "src\ApiaryProvider.Portable47.fsproj", "{B80449D9-77F9-4C10-BA90-BBEE3B0D088D}"
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "ApiaryProvider.Portable7", "src\ApiaryProvider.Portable7.fsproj", "{DB467170-2582-4DB7-89EE-234848A8CB24}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -38,10 +36,6 @@ Global
{B80449D9-77F9-4C10-BA90-BBEE3B0D088D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B80449D9-77F9-4C10-BA90-BBEE3B0D088D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B80449D9-77F9-4C10-BA90-BBEE3B0D088D}.Release|Any CPU.Build.0 = Release|Any CPU
{DB467170-2582-4DB7-89EE-234848A8CB24}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DB467170-2582-4DB7-89EE-234848A8CB24}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DB467170-2582-4DB7-89EE-234848A8CB24}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DB467170-2582-4DB7-89EE-234848A8CB24}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,10 @@ You can see the version history [here](RELEASE_NOTES.md).
- VS2013 compiling to FSharp.Core 4.3.1.0
- VS2013 compiling to FSharp.Core 2.3.5.0 (PCL profile 47)
- VS2013 compiling to FSharp.Core 2.3.6.0 (PCL profile 47)
- VS2013 compiling to FSharp.Core 3.3.1.0 (PCL profile 7) - __currently not working correctly__
- Mono F# 3.1 compiling to FSharp.Core 4.3.0.0
- Mono F# 3.1 compiling to FSharp.Core 4.3.1.0
- Mono F# 3.1 compiling to FSharp.Core 2.3.5.0 (PCL profile 47)
- Mono F# 3.1 compiling to FSharp.Core 2.3.6.0 (PCL profile 47)
- Mono F# 3.1 compiling to FSharp.Core 3.3.1.0 (PCL profile 7) - __currently not working correctly__

## Documentation

Expand Down
5 changes: 4 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
#### 1.0.0 - April 24 2014
* Initial release, extracted from FSharp.Data
* Initial release, extracted from FSharp.Data.

#### 1.0.1 - Unreleased
* Drop PCL7 support as it wasn't working correctly.
4 changes: 0 additions & 4 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,9 @@ Target "AssemblyInfo" <| fun () ->
let title =
Path.GetFileNameWithoutExtension file
|> replace ".Portable47" ""
|> replace ".Portable7" ""
|> replace "AssemblyInfo" "ApiaryProvider"
let versionSuffix =
if file.Contains ".Portable47" then ".47"
elif file.Contains ".Portable7" then ".7"
else ".0"
let version = release.AssemblyVersion + versionSuffix
CreateFSharpAssemblyInfo file
Expand Down Expand Up @@ -140,8 +138,6 @@ Target "SourceLink" <| fun () ->
proj.CreateSrcSrv (sprintf "%s/%s/{0}/%%var2%%" gitRaw gitName) repo.Revision (repo.Paths files)
Pdbstr.exec proj.OutputFilePdb proj.OutputFilePdbSrcSrv
CopyFiles "bin" (!! "src/bin/Release/ApiaryProvider.*")
CopyFiles "bin/portable7" (!! "src/bin/portable7/Release/ApiaryProvider.*")
CopyFiles "bin/portable7" (!! "src/bin/Release/fsprojects.*.DesignTime.*")
CopyFiles "bin/portable47" (!! "src/bin/portable47/Release/ApiaryProvider.*")
CopyFiles "bin/portable47" (!! "src/bin/Release/fsprojects.*.DesignTime.*")

Expand Down
186 changes: 0 additions & 186 deletions docs/content/contributing.md

This file was deleted.

2 changes: 0 additions & 2 deletions docs/content/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,6 @@ contribute [samples][samples] that can be turned into a documentation.
then you can submit [an issue or feature request][issues] via Github or you can
send an email to the [F# open source][fsharp-oss] mailing list.

* For more information about the library architecture, organization, how to debug, etc., see the [contributing to Apiary Provider](contributing.html) page.

[source]: https://github.com/fsprojects/ApiaryProvider/zipball/master
[compiled]: https://github.com/fsprojects/ApiaryProvider/zipball/release
[samples]: https://github.com/fsprojects/ApiaryProvider/tree/master/docs/content
Expand Down
Loading

0 comments on commit 109b36a

Please sign in to comment.