Skip to content

Commit

Permalink
Small tweak to build file
Browse files Browse the repository at this point in the history
  • Loading branch information
vbfox committed Sep 8, 2015
1 parent bfb220d commit 1da1c1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ Target "AssemblyInfo" <| fun _ ->
|> Seq.iter (fun (projFileName, projectName, folderName, attributes) ->
match projFileName with
| Fsproj -> CreateFSharpAssemblyInfo (folderName </> "AssemblyInfo.fs") attributes
| Csproj -> CreateCSharpAssemblyInfo ((folderName </> "Properties") </> "AssemblyInfo.cs") attributes
| Vbproj -> CreateVisualBasicAssemblyInfo ((folderName </> "My Project") </> "AssemblyInfo.vb") attributes
| Csproj -> CreateCSharpAssemblyInfo (folderName </> "Properties" </> "AssemblyInfo.cs") attributes
| Vbproj -> CreateVisualBasicAssemblyInfo (folderName </> "My Project" </> "AssemblyInfo.vb") attributes
)

// Copies binaries from default VS location to expected bin folder
Expand Down

0 comments on commit 1da1c1a

Please sign in to comment.