Skip to content

Commit cc378fb

Browse files
committed
Minor file structure rationalisation
1 parent 244d684 commit cc378fb

File tree

5 files changed

+9
-11
lines changed

5 files changed

+9
-11
lines changed

src/fsharp/FSharp.Compiler.Service.ProjectCracker.Exe/FSharp.Compiler.Service.ProjectCracker.Exe.fsproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@
5656
</Choose>
5757
<Import Project="$(FSharpTargetsPath)" />
5858
<ItemGroup>
59-
<Compile Include="ProjectCrackerOptions.fs" />
6059
<Compile Include="Program.fs" />
6160
<None Include="App.config" />
6261
</ItemGroup>

src/fsharp/FSharp.Compiler.Service.ProjectCracker.Exe/Program.fs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@ open System
88
open System.Reflection
99
open System.Runtime.Serialization.Formatters.Binary
1010

11+
type ProjectOptions =
12+
{
13+
ProjectFile: string
14+
Options: string[]
15+
ReferencedProjectOptions: (string * ProjectOptions)[]
16+
LogOutput: string
17+
}
18+
1119
module Program =
1220
let runningOnMono =
1321
try match System.Type.GetType("Mono.Runtime") with null -> false | _ -> true

src/fsharp/FSharp.Compiler.Service.ProjectCracker.Exe/ProjectCrackerOptions.fs

Lines changed: 0 additions & 9 deletions
This file was deleted.

src/fsharp/FSharp.Compiler.Service.ProjectCracker/FSharp.Compiler.Service.ProjectCracker.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<Reference Include="System.Numerics" />
4646
</ItemGroup>
4747
<ItemGroup>
48-
<Compile Include="Program.fs" />
48+
<Compile Include="ProjectCracker.fs" />
4949
</ItemGroup>
5050
<ItemGroup>
5151
<ProjectReference Include="..\FSharp.Compiler.Service.ProjectCracker.Exe\FSharp.Compiler.Service.ProjectCracker.Exe.fsproj">

src/fsharp/FSharp.Compiler.Service.ProjectCracker/Program.fs renamed to src/fsharp/FSharp.Compiler.Service.ProjectCracker/ProjectCracker.fs

File renamed without changes.

0 commit comments

Comments
 (0)