Skip to content

Commit

Permalink
Starting to dogfood
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Sep 2, 2014
1 parent a8f4dab commit 1859c3c
Show file tree
Hide file tree
Showing 11 changed files with 10 additions and 27 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -175,3 +175,4 @@ TestResults.xml

# Nuget outputs
nuget/*.nupkg
release.cmd
4 changes: 0 additions & 4 deletions .nuget/packages.config

This file was deleted.

5 changes: 4 additions & 1 deletion build.cmd
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
@echo off
cls

.nuget\nuget.exe install Paket -OutputDirectory packages -Prerelease -ExcludeVersion
.nuget\nuget.exe install FAKE -OutputDirectory packages -ExcludeVersion
.nuget\nuget.exe install SourceLink.Fake -OutputDirectory packages -ExcludeVersion
.nuget\nuget.exe install FSharp.Formatting -OutputDirectory packages

packages\FAKE\tools\FAKE.exe build.fsx %*
packages\Paket\tools\Paket.exe install
packages\FAKE\tools\FAKE.exe build.fsx %*
3 changes: 0 additions & 3 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,6 @@ Target "AssemblyInfo" (fun _ ->
// --------------------------------------------------------------------------------------
// Clean build results & restore NuGet packages

Target "RestorePackages" RestorePackages

Target "Clean" (fun _ ->
CleanDirs ["bin"; "temp"]
)
Expand Down Expand Up @@ -204,7 +202,6 @@ Target "BuildPackage" DoNothing
Target "All" DoNothing

"Clean"
==> "RestorePackages"
==> "AssemblyInfo"
==> "Build"
==> "RunTests"
Expand Down
5 changes: 4 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
#!/bin/bash

mono .nuget/NuGet.exe install Paket -OutputDirectory packages -Prerelease -ExcludeVersion
mono .nuget/NuGet.exe install FAKE -OutputDirectory packages -ExcludeVersion
mono .nuget/NuGet.exe install SourceLink.Fake -OutputDirectory packages -ExcludeVersion
mono .nuget/NuGet.exe install FSHarp.Formatting -OutputDirectory packages

mono packages/FAKE/tools/FAKE.exe $@ --fsiargs -d:MONO build.fsx
mono packages/Paket/tools/Paket.exe install
mono packages/FAKE/tools/FAKE.exe $@ --fsiargs -d:MONO build.fsx
3 changes: 1 addition & 2 deletions packages.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@ nuget "FSharp.Compiler.Service" "~> 0.0.59"
nuget "Newtonsoft.Json" "~> 6.0"
nuget "UnionArgParser" "~> 0.7"
nuget "NUnit.Runners" "~> 2.6.3"
nuget "NUnit" "~> 2.6.3"
nuget "FSharp.Formatting" "~> 2.4"
nuget "NUnit" "~> 2.6.3"
3 changes: 0 additions & 3 deletions packages.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@ NUGET
remote: http://nuget.org/api/v2
specs:
FSharp.Compiler.Service (0.0.59)
FSharp.Formatting (2.4.9)
Microsoft.AspNet.Razor (3.2.2)
NUnit (2.6.3)
NUnit.Runners (2.6.3)
Newtonsoft.Json (6.0.4)
RazorEngine (3.4.1)
UnionArgParser (0.8.0)
1 change: 0 additions & 1 deletion src/Paket/Paket.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@
<Compile Include="Process.fs" />
<Compile Include="Program.fs" />
<None Include="packages" />
<Content Include="packages.config" />
</ItemGroup>
<ItemGroup>
<Reference Include="FSharp.Compiler.Service">
Expand Down
6 changes: 0 additions & 6 deletions src/Paket/packages.config

This file was deleted.

1 change: 0 additions & 1 deletion tests/Paket.Tests/Paket.Tests.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@
</None>
<Compile Include="ProjectFileSpecs.fs" />
<None Include="packages" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<Reference Include="mscorlib" />
Expand Down
5 changes: 0 additions & 5 deletions tests/Paket.Tests/packages.config

This file was deleted.

0 comments on commit 1859c3c

Please sign in to comment.