Skip to content

Commit

Permalink
Merge pull request fslaborg#33 from tpetricek/master
Browse files Browse the repository at this point in the history
Documentation update and tools
  • Loading branch information
tpetricek committed Oct 18, 2013
2 parents f45b66b + 91dfafe commit a45c6bd
Show file tree
Hide file tree
Showing 55 changed files with 1,111 additions and 5,088 deletions.
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@

tools/
packages/
nuget/
gh-pages/
release/
generated/
*.DotSettings

#################
Expand Down Expand Up @@ -173,3 +175,6 @@ pip-log.txt

# For References
!*/References/*.pdb

# Generated documentation files
Documentation/Output/*.html
Binary file modified .nuget/NuGet.exe
Binary file not shown.
13 changes: 8 additions & 5 deletions .nuget/NuGet.targets
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@

<ItemGroup Condition=" '$(PackageSources)' == '' ">
<!-- Package sources used to restore packages. By default, registered sources under %APPDATA%\NuGet\NuGet.Config will be used -->
<!-- The official NuGet package source (https://nuget.org/api/v2/) will be excluded if package sources are specified and it does not appear in the list -->
<!-- The official NuGet package source (https://www.nuget.org/api/v2/) will be excluded if package sources are specified and it does not appear in the list -->
<!--
<PackageSource Include="https://nuget.org/api/v2/" />
<PackageSource Include="https://www.nuget.org/api/v2/" />
<PackageSource Include="https://my-nuget-source/nuget/" />
-->
</ItemGroup>
Expand Down Expand Up @@ -50,9 +50,12 @@
<RequireConsentSwitch Condition=" $(RequireRestoreConsent) == 'true' ">-RequireConsent</RequireConsentSwitch>
<NonInteractiveSwitch Condition=" '$(VisualStudioVersion)' != '' AND '$(OS)' == 'Windows_NT' ">-NonInteractive</NonInteractiveSwitch>

<PaddedSolutionDir Condition=" '$(OS)' == 'Windows_NT'">"$(SolutionDir) "</PaddedSolutionDir>
<PaddedSolutionDir Condition=" '$(OS)' != 'Windows_NT' ">"$(SolutionDir)"</PaddedSolutionDir>

<!-- Commands -->
<RestoreCommand>$(NuGetCommand) install "$(PackagesConfig)" -source "$(PackageSources)" $(NonInteractiveSwitch) $(RequireConsentSwitch) -solutionDir "$(SolutionDir) " </RestoreCommand>
<BuildCommand>$(NuGetCommand) pack "$(ProjectPath)" -Properties Configuration=$(Configuration) $(NonInteractiveSwitch) -OutputDirectory "$(PackageOutputDir)" -symbols</BuildCommand>
<RestoreCommand>$(NuGetCommand) install "$(PackagesConfig)" -source "$(PackageSources)" $(NonInteractiveSwitch) $(RequireConsentSwitch) -solutionDir $(PaddedSolutionDir)</RestoreCommand>
<BuildCommand>$(NuGetCommand) pack "$(ProjectPath)" -Properties "Configuration=$(Configuration);Platform=$(Platform)" $(NonInteractiveSwitch) -OutputDirectory "$(PackageOutputDir)" -symbols</BuildCommand>

<!-- We need to ensure packages are restored prior to assembly resolve -->
<BuildDependsOn Condition="$(RestorePackages) == 'true'">
Expand Down Expand Up @@ -118,7 +121,7 @@
Log.LogMessage("Downloading latest version of NuGet.exe...");
WebClient webClient = new WebClient();
webClient.DownloadFile("https://nuget.org/nuget.exe", OutputFilename);
webClient.DownloadFile("https://www.nuget.org/nuget.exe", OutputFilename);
return true;
}
Expand Down
10 changes: 0 additions & 10 deletions AssemblyInfo.fs

This file was deleted.

7 changes: 0 additions & 7 deletions Build.bat

This file was deleted.

93 changes: 0 additions & 93 deletions Build.fsx

This file was deleted.

1 change: 1 addition & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* 1.0.3 - Fixed NuGet package
2 changes: 1 addition & 1 deletion Test.RProvider/Test.RProvider.sln → RProvider.Tests.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 2012
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Test.RProvider", "Test.RProvider.fsproj", "{A371037F-5B03-4C6C-91D3-5DFD494E0BFB}"
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Test.RProvider", "tests\Test.RProvider\Test.RProvider.fsproj", "{A371037F-5B03-4C6C-91D3-5DFD494E0BFB}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
35 changes: 28 additions & 7 deletions RProvider.sln
Original file line number Diff line number Diff line change
@@ -1,24 +1,42 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "RProvider", "RProvider.fsproj", "{5624F098-BE3F-4C8E-B50F-1CFC9E1E0708}"
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "RProvider", "src\RProvider\RProvider.fsproj", "{5624F098-BE3F-4C8E-B50F-1CFC9E1E0708}"
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "RWrapperGenerator", "RWrapperGenerator\RWrapperGenerator.fsproj", "{66A390A5-526A-4BD1-B876-E7425B643C70}"
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "RWrapperGenerator", "src\RWrapperGenerator\RWrapperGenerator.fsproj", "{66A390A5-526A-4BD1-B876-E7425B643C70}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{5FA7D1AD-DEDA-4553-81D1-6E4728386A2F}"
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{5FA7D1AD-DEDA-4553-81D1-6E4728386A2F}"
ProjectSection(SolutionItems) = preProject
Build.bat = Build.bat
Build.fsx = Build.fsx
RProvider.nuspec = RProvider.nuspec
build.cmd = build.cmd
build.fsx = build.fsx
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{793EB77C-8AD2-4571-AA94-9C69F9D4065F}"
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{6D45A358-1BAC-4180-BEE7-39996F45DEAC}"
ProjectSection(SolutionItems) = preProject
.nuget\NuGet.Config = .nuget\NuGet.Config
.nuget\NuGet.exe = .nuget\NuGet.exe
.nuget\NuGet.targets = .nuget\NuGet.targets
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Docs", "Docs", "{B34F96AE-40C8-44AC-8D82-5196202C080E}"
ProjectSection(SolutionItems) = preProject
docs\Charts-QuickStart.fsx = docs\Charts-QuickStart.fsx
docs\howto.md = docs\howto.md
docs\index.md = docs\index.md
docs\internals.md = docs\internals.md
docs\passing-data.fsx = docs\passing-data.fsx
docs\plugins.md = docs\plugins.md
docs\Statistics-QuickStart.fsx = docs\Statistics-QuickStart.fsx
docs\tutorial.fsx = docs\tutorial.fsx
docs\whatwhy.md = docs\whatwhy.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tools", "Tools", "{9C22FF03-BB06-4332-8104-20AB4959BABA}"
ProjectSection(SolutionItems) = preProject
tools\build.fsx = tools\build.fsx
tools\template.html = tools\template.html
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -37,4 +55,7 @@ Global
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{9C22FF03-BB06-4332-8104-20AB4959BABA} = {B34F96AE-40C8-44AC-8D82-5196202C080E}
EndGlobalSection
EndGlobal
Binary file removed Test.RProvider/References/FsCheck.Xunit.dll
Binary file not shown.
Binary file removed Test.RProvider/References/FsCheck.Xunit.pdb
Binary file not shown.
99 changes: 0 additions & 99 deletions Test.RProvider/References/FsCheck.Xunit.xml

This file was deleted.

Binary file removed Test.RProvider/References/FsCheck.dll
Binary file not shown.
Binary file removed Test.RProvider/References/FsCheck.pdb
Binary file not shown.
Loading

0 comments on commit a45c6bd

Please sign in to comment.