Skip to content

Commit

Permalink
build works on my machine
Browse files Browse the repository at this point in the history
  • Loading branch information
nojaf committed Mar 7, 2018
1 parent 8e5b97d commit 8dc6b9e
Show file tree
Hide file tree
Showing 7 changed files with 288 additions and 4 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -169,3 +169,9 @@ TestResults.xml
*.xml
.fake/build.fsx_*.dll
.paket/paket.exe
paket-files/


# JetBrains Rider
.idea/
*.sln.iml
276 changes: 276 additions & 0 deletions .paket/Paket.Restore.targets

Large diffs are not rendered by default.

Binary file modified .paket/paket.bootstrapper.exe
Binary file not shown.
Binary file modified .paket/paket.exe
Binary file not shown.
4 changes: 3 additions & 1 deletion build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ open Fake.AssemblyInfoFile
open Fake.ReleaseNotesHelper
open System

setEnvironVar "MSBuild" (ProgramFilesX86 @@ @"\MSBuild\12.0\Bin\MSBuild.exe")
// setEnvironVar "MSBuild" (ProgramFilesX86 @@ @"\MSBuild\12.0\Bin\MSBuild.exe")
setEnvironVar "MSBuild" (ProgramFilesX86 @@ @"Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin\MSBuild.exe")

// Git configuration (used for publishing documentation in gh-pages branch)
// The profile where the project is posted
Expand Down Expand Up @@ -84,6 +85,7 @@ Target "UnitTests" (fun _ ->
{ p with
DisableShadowCopy = true
TimeOut = TimeSpan.FromMinutes 20.
ErrorOutputFile = @"C:\Temp\nunit-error.txt"
Framework = "4.5"
Domain = NUnitDomainModel.MultipleDomainModel
OutputFile = "TestResults.xml" })
Expand Down
4 changes: 2 additions & 2 deletions src/Fantomas.Tests/Fantomas.Tests.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,10 @@
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="nunit.core">
<HintPath>..\packages\NUnit.Runners.2.6.3\tools\lib\nunit.core.dll</HintPath>
<HintPath>..\..\packages\NUnit.Runners\tools\lib\nunit.core.dll</HintPath>
</Reference>
<Reference Include="nunit.core.interfaces">
<HintPath>..\packages\NUnit.Runners.2.6.3\tools\lib\nunit.core.interfaces.dll</HintPath>
<HintPath>..\..\packages\NUnit.Runners\tools\lib\nunit.core.interfaces.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down
2 changes: 1 addition & 1 deletion src/Fantomas.Tests/app.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="2.0.0.0-4.3.1.0" newVersion="4.4.0.0" />
<bindingRedirect oldVersion="2.0.0.0-4.4.3.0" newVersion="4.4.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="nunit.framework" publicKeyToken="96d09a1eb7f44a77" culture="neutral" />
Expand Down

0 comments on commit 8dc6b9e

Please sign in to comment.