-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Go for paket and use direct link to other docs site
- Loading branch information
1 parent
5450fd2
commit 2d55cff
Showing
33 changed files
with
5,522 additions
and
816 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# EditorConfig is awesome: http://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
insert_final_newline = true | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
indent_style = space | ||
indent_size = 2 | ||
# EditorConfig is awesome: http://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
insert_final_newline = true | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
indent_style = space | ||
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* text=auto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ obj/ | |
|
||
# Ignore webpack generated files | ||
dist/ | ||
packages/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<!-- Mark that this target file has been loaded. --> | ||
<IsPaketRestoreTargetsFileLoaded>true</IsPaketRestoreTargetsFileLoaded> | ||
<PaketToolsPath>$(MSBuildThisFileDirectory)</PaketToolsPath> | ||
<MonoPath Condition="'$(MonoPath)' == '' And Exists('/Library/Frameworks/Mono.framework/Commands/mono')">/Library/Frameworks/Mono.framework/Commands/mono</MonoPath> | ||
<MonoPath Condition="'$(MonoPath)' == ''">mono</MonoPath> | ||
<!-- Paket command --> | ||
<PaketExePath Condition=" '$(PaketExePath)' == '' AND Exists('$(PaketRootPath)paket.exe')">$(PaketRootPath)paket.exe</PaketExePath> | ||
<PaketExePath Condition=" '$(PaketExePath)' == '' ">$(PaketToolsPath)paket.exe</PaketExePath> | ||
<PaketCommand Condition=" '$(OS)' == 'Windows_NT'">"$(PaketExePath)"</PaketCommand> | ||
<PaketCommand Condition=" '$(OS)' != 'Windows_NT' ">$(MonoPath) --runtime=v4.0.30319 "$(PaketExePath)"</PaketCommand> | ||
</PropertyGroup> | ||
|
||
<Target Name="PaketRestore" BeforeTargets="_GenerateProjectRestoreGraphPerFramework;_GenerateRestoreGraphWalkPerFramework;CollectPackageReferences" > | ||
|
||
<Exec Command='$(PaketCommand) restore --project "$(MSBuildProjectFullPath)" --target-framework $(TargetFramework)' ContinueOnError="false" /> | ||
|
||
<PropertyGroup> | ||
<PaketReferencesFilePath>$(MSBuildProjectDirectory)/obj/$(MSBuildProjectFile).references</PaketReferencesFilePath> | ||
</PropertyGroup> | ||
|
||
<ReadLinesFromFile File="$(PaketReferencesFilePath)" > | ||
<Output TaskParameter="Lines" ItemName="PaketReferencesFileLines"/> | ||
</ReadLinesFromFile> | ||
|
||
<ItemGroup Condition=" '@(PaketReferencesFileLines)' != '' " > | ||
<PaketReferencesFileLinesInfo Include="@(PaketReferencesFileLines)" > | ||
<PackageName>$([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[0])</PackageName> | ||
<PackageVersion>$([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[1])</PackageVersion> | ||
</PaketReferencesFileLinesInfo> | ||
<PackageReference Include="%(PaketReferencesFileLinesInfo.PackageName)"> | ||
<Version>%(PaketReferencesFileLinesInfo.PackageVersion)</Version> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<RestoreConfigFile>$(MSBuildProjectDirectory)/obj/$(MSBuildProjectFile).NuGet.Config</RestoreConfigFile> | ||
</PropertyGroup> | ||
|
||
</Target> | ||
|
||
<Target Name="PaketDisableDirectPack" AfterTargets="_IntermediatePack" BeforeTargets="GenerateNuspec" > | ||
<PropertyGroup> | ||
<ContinuePackingAfterGeneratingNuspec>false</ContinuePackingAfterGeneratingNuspec> | ||
</PropertyGroup> | ||
</Target> | ||
|
||
<Target Name="PaketOverrideNuspec" AfterTargets="GenerateNuspec" > | ||
<PropertyGroup> | ||
<PaketReferencesFilePath>$(MSBuildProjectDirectory)/obj/$(MSBuildProjectFile).references</PaketReferencesFilePath> | ||
<ContinuePackingAfterGeneratingNuspec>true</ContinuePackingAfterGeneratingNuspec> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<_NuspecFiles Include="$(BaseIntermediateOutputPath)*.nuspec"/> | ||
</ItemGroup> | ||
|
||
<Exec Command='$(PaketCommand) fix-nuspec file "@(_NuspecFiles)" references-file "$(PaketReferencesFilePath)" ' /> | ||
|
||
<ConvertToAbsolutePath Condition="@(_NuspecFiles) != ''" Paths="@(_NuspecFiles)"> | ||
<Output TaskParameter="AbsolutePaths" PropertyName="NuspecFileAbsolutePath" /> | ||
</ConvertToAbsolutePath> | ||
|
||
<!-- Call Pack --> | ||
<PackTask PackItem="$(PackProjectInputFile)" | ||
PackageFiles="@(_PackageFiles)" | ||
PackageFilesToExclude="@(_PackageFilesToExclude)" | ||
PackageVersion="$(PackageVersion)" | ||
PackageId="$(PackageId)" | ||
Title="$(Title)" | ||
Authors="$(Authors)" | ||
Description="$(Description)" | ||
Copyright="$(Copyright)" | ||
RequireLicenseAcceptance="$(PackageRequireLicenseAcceptance)" | ||
LicenseUrl="$(PackageLicenseUrl)" | ||
ProjectUrl="$(PackageProjectUrl)" | ||
IconUrl="$(PackageIconUrl)" | ||
ReleaseNotes="$(PackageReleaseNotes)" | ||
Tags="$(PackageTags)" | ||
TargetPathsToAssemblies="@(_TargetPathsToAssemblies->'%(FinalOutputPath)')" | ||
TargetPathsToSymbols="@(_TargetPathsToSymbols)" | ||
TargetFrameworks="@(_TargetFrameworks)" | ||
AssemblyName="$(AssemblyName)" | ||
PackageOutputPath="$(PackageOutputAbsolutePath)" | ||
IncludeSymbols="$(IncludeSymbols)" | ||
IncludeSource="$(IncludeSource)" | ||
PackageTypes="$(PackageType)" | ||
IsTool="$(IsTool)" | ||
RepositoryUrl="$(RepositoryUrl)" | ||
RepositoryType="$(RepositoryType)" | ||
SourceFiles="@(_SourceFiles->Distinct())" | ||
NoPackageAnalysis="$(NoPackageAnalysis)" | ||
MinClientVersion="$(MinClientVersion)" | ||
Serviceable="$(Serviceable)" | ||
AssemblyReferences="@(_References)" | ||
ContinuePackingAfterGeneratingNuspec="$(ContinuePackingAfterGeneratingNuspec)" | ||
NuspecOutputPath="$(BaseIntermediateOutputPath)" | ||
IncludeBuildOutput="$(IncludeBuildOutput)" | ||
BuildOutputFolder="$(BuildOutputTargetFolder)" | ||
ContentTargetFolders="$(ContentTargetFolders)" | ||
RestoreOutputPath="$(RestoreOutputAbsolutePath)" | ||
NuspecFile="$(NuspecFileAbsolutePath)" | ||
NuspecBasePath="$(NuspecBasePath)" | ||
NuspecProperties="$(NuspecProperties)"/> | ||
</Target> | ||
|
||
</Project> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<configuration> | ||
<appSettings> | ||
<add key="Prerelease" value="True"/> | ||
</appSettings> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<packageSources> | ||
<clear /> | ||
<add key="NuGet.org" value="https://api.nuget.org/v3/index.json" /> | ||
</packageSources> | ||
<disabledPackageSources> | ||
<clear /> | ||
</disabledPackageSources> | ||
</configuration> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<packageSources> | ||
<clear /> | ||
<add key="NuGet.org" value="https://api.nuget.org/v3/index.json" /> | ||
</packageSources> | ||
<disabledPackageSources> | ||
<clear /> | ||
</disabledPackageSources> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
## Build and running the app | ||
|
||
1. Install npm dependencies: `npm install` | ||
2. Install dotnet dependencies: `dotnet restore` | ||
3. Start Fable server and Webpack dev server: `dotnet fable npm-run start` | ||
4. In your browser, open: [http://localhost:8080/](http://localhost:8080/) | ||
|
||
Any modification you do to the F# code will be reflected in the web page after saving. | ||
## Build and running the app | ||
|
||
1. Install npm dependencies: `yarn install` | ||
2. Install dotnet dependencies: `dotnet restore` | ||
3. Start Fable server and Webpack dev server: `dotnet fable npm-run start` | ||
4. In your browser, open: [http://localhost:8080/](http://localhost:8080/) | ||
|
||
Any modification you do to the F# code will be reflected in the web page after saving. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
@echo off | ||
cls | ||
|
||
.paket\paket.bootstrapper.exe | ||
if errorlevel 1 ( | ||
exit /b %errorlevel% | ||
) | ||
|
||
.paket\paket.exe restore | ||
if errorlevel 1 ( | ||
exit /b %errorlevel% | ||
) | ||
|
||
packages\FAKE\tools\FAKE.exe build.fsx %* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
// include Fake libs | ||
#r "./packages/FAKE/tools/FakeLib.dll" | ||
#r "System.IO.Compression.FileSystem" | ||
|
||
open System | ||
open System.IO | ||
open Fake | ||
open Fake.NpmHelper | ||
|
||
let yarn = | ||
if EnvironmentHelper.isWindows then "yarn.cmd" else "yarn" | ||
|> ProcessHelper.tryFindFileOnPath | ||
|> function | ||
| Some yarn -> yarn | ||
| ex -> failwith ( sprintf "yarn not found (%A)\n" ex ) | ||
|
||
// Directories | ||
let buildDir = "./build/" | ||
|
||
// Filesets | ||
let projects = | ||
!! "src/*/*.proj" | ||
|
||
|
||
let dotnetcliVersion = "1.0.1" | ||
let mutable dotnetExePath = "dotnet" | ||
|
||
let runDotnet workingDir args = | ||
printfn "CWD: %s" workingDir | ||
// printfn "dotnet %s" args | ||
let result = | ||
ExecProcess (fun info -> | ||
info.FileName <- dotnetExePath | ||
info.WorkingDirectory <- workingDir | ||
info.Arguments <- args) TimeSpan.MaxValue | ||
if result <> 0 then failwithf "Command failed: dotnet %s" args | ||
|
||
|
||
Target "InstallDotNetCore" (fun _ -> | ||
let dotnetSDKPath = FullName "./dotnetsdk" | ||
let correctVersionInstalled = | ||
try | ||
let processResult = | ||
ExecProcessAndReturnMessages (fun info -> | ||
info.FileName <- dotnetExePath | ||
info.WorkingDirectory <- Environment.CurrentDirectory | ||
info.Arguments <- "--version") (TimeSpan.FromMinutes 30.) | ||
|
||
processResult.Messages |> separated "" = dotnetcliVersion | ||
with | ||
| _ -> false | ||
|
||
if correctVersionInstalled then | ||
tracefn "dotnetcli %s already installed" dotnetcliVersion | ||
else | ||
CleanDir dotnetSDKPath | ||
let archiveFileName = | ||
if isWindows then | ||
sprintf "dotnet-dev-win-x64.%s.zip" dotnetcliVersion | ||
elif isLinux then | ||
sprintf "dotnet-dev-ubuntu-x64.%s.tar.gz" dotnetcliVersion | ||
else | ||
sprintf "dotnet-dev-osx-x64.%s.tar.gz" dotnetcliVersion | ||
let downloadPath = | ||
sprintf "https://dotnetcli.azureedge.net/dotnet/Sdk/%s/%s" dotnetcliVersion archiveFileName | ||
let localPath = Path.Combine(dotnetSDKPath, archiveFileName) | ||
|
||
tracefn "Installing '%s' to '%s'" downloadPath localPath | ||
|
||
use webclient = new Net.WebClient() | ||
webclient.DownloadFile(downloadPath, localPath) | ||
|
||
if not isWindows then | ||
let assertExitCodeZero x = | ||
if x = 0 then () else | ||
failwithf "Command failed with exit code %i" x | ||
|
||
Shell.Exec("tar", sprintf """-xvf "%s" -C "%s" """ localPath dotnetSDKPath) | ||
|> assertExitCodeZero | ||
else | ||
Compression.ZipFile.ExtractToDirectory(localPath, dotnetSDKPath) | ||
|
||
tracefn "dotnet cli path - %s" dotnetSDKPath | ||
System.IO.Directory.EnumerateFiles dotnetSDKPath | ||
|> Seq.iter (fun path -> tracefn " - %s" path) | ||
System.IO.Directory.EnumerateDirectories dotnetSDKPath | ||
|> Seq.iter (fun path -> tracefn " - %s%c" path System.IO.Path.DirectorySeparatorChar) | ||
|
||
dotnetExePath <- dotnetSDKPath </> (if isWindows then "dotnet.exe" else "dotnet") | ||
|
||
// let oldPath = System.Environment.GetEnvironmentVariable("PATH") | ||
// System.Environment.SetEnvironmentVariable("PATH", sprintf "%s%s%s" dotnetSDKPath (System.IO.Path.PathSeparator.ToString()) oldPath) | ||
) | ||
|
||
|
||
Target "Install" (fun _ -> | ||
projects | ||
|> Seq.iter (fun s -> | ||
let dir = IO.Path.GetDirectoryName s | ||
printf "Installing: %s\n" dir | ||
runDotnet dir "restore" | ||
) | ||
) | ||
|
||
// Targets | ||
Target "Clean" (fun _ -> | ||
CleanDirs [buildDir] | ||
) | ||
|
||
Target "Build" (fun _ -> | ||
projects | ||
|> Seq.iter (fun s -> | ||
let dir = IO.Path.GetDirectoryName s | ||
runDotnet dir "pack") | ||
) | ||
|
||
// Build order | ||
"Clean" | ||
==> "InstallDotNetCore" | ||
==> "Install" | ||
==> "Build" | ||
|
||
// start build | ||
RunTargetOrDefault "Build" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
#!/bin/bash | ||
if test "$OS" = "Windows_NT" | ||
then | ||
# use .Net | ||
|
||
.paket/paket.bootstrapper.exe | ||
exit_code=$? | ||
if [ $exit_code -ne 0 ]; then | ||
exit $exit_code | ||
fi | ||
|
||
.paket/paket.exe restore | ||
exit_code=$? | ||
if [ $exit_code -ne 0 ]; then | ||
exit $exit_code | ||
fi | ||
|
||
packages/FAKE/tools/FAKE.exe $@ --fsiargs build.fsx | ||
else | ||
# use mono | ||
mono .paket/paket.bootstrapper.exe | ||
exit_code=$? | ||
if [ $exit_code -ne 0 ]; then | ||
exit $exit_code | ||
fi | ||
|
||
mono .paket/paket.exe restore | ||
exit_code=$? | ||
if [ $exit_code -ne 0 ]; then | ||
exit $exit_code | ||
fi | ||
mono packages/FAKE/tools/FAKE.exe $@ --fsiargs -d:MONO build.fsx | ||
fi |
Oops, something went wrong.