Skip to content

Commit

Permalink
fix output dir configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Eirik Tsarpalis committed Jan 30, 2018
1 parent 154c58c commit 4c353d9
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/content/index.fsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(*** hide ***)
// This block of code is omitted in the generated HTML documentation. Use
// it to define helpers that you do not want to show in the documentation.
#I "../../bin/Release/net40/"
#I "../../bin/Release/net45/"
#r "Argu.dll"

open System
Expand Down
2 changes: 1 addition & 1 deletion docs/content/tutorial.fsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(*** hide ***)
// This block of code is omitted in the generated HTML documentation. Use
// it to define helpers that you do not want to show in the documentation.
#I "../../bin/Release/net40"
#I "../../bin/Release/net45"
#r "Argu.dll"

open System
Expand Down
2 changes: 1 addition & 1 deletion docs/tools/generate.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// --------------------------------------------------------------------------------------

// Binaries that have XML documentation (in a corresponding generated XML file)
let referenceBinaries = [ "net40/Argu.dll" ]
let referenceBinaries = [ "net45/Argu.dll" ]
// Web site location for the generated documentation
let website = "/Argu"

Expand Down
4 changes: 2 additions & 2 deletions src/Argu/Argu.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<Tailcalls>false</Tailcalls>
<OutputPath>..\..\bin\Debug\</OutputPath>
<DocumentationFile>..\..\bin\Debug\net40\Argu.XML</DocumentationFile>
<DocumentationFile>..\..\bin\Debug\net45\Argu.XML</DocumentationFile>
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>RELEASE</DefineConstants>
<OutputPath>..\..\bin\Release\</OutputPath>
<DocumentationFile>..\..\bin\Release\net40\Argu.XML</DocumentationFile>
<DocumentationFile>..\..\bin\Release\net45\Argu.XML</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.fs" />
Expand Down
6 changes: 3 additions & 3 deletions src/Argu/paket.template
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ dependencies
excludeddependencies
SourceLink.Create.CommandLine
files
../../bin/Release/net40/Argu.dll ==> lib/net40
../../bin/Release/net40/Argu.pdb ==> lib/net40
../../bin/Release/net40/Argu.xml ==> lib/net40
../../bin/Release/net45/Argu.dll ==> lib/net45
../../bin/Release/net45/Argu.pdb ==> lib/net45
../../bin/Release/net45/Argu.xml ==> lib/net45
../../bin/Release/netstandard2.0/Argu.dll ==> lib/netstandard2.0
../../bin/Release/netstandard2.0/Argu.pdb ==> lib/netstandard2.0
../../bin/Release/netstandard2.0/Argu.xml ==> lib/netstandard2.0

0 comments on commit 4c353d9

Please sign in to comment.