File tree 2 files changed +5
-6
lines changed
2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 1
1
open System
2
2
open System.Diagnostics
3
3
open System.IO
4
- open System.Text .RegularExpressions
5
4
6
5
open Fake.Core
7
6
open Fake.Core .TargetOperators
@@ -17,7 +16,7 @@ let description = Target.description
17
16
18
17
module FileReaderWriter =
19
18
let Read file = File.ReadAllText( file)
20
- let Write file text = File.WriteAllText( file, text)
19
+ let Write file ( text : string ) = File.WriteAllText( file, text)
21
20
let TransformFile file target ( f : string -> string ) =
22
21
Read file
23
22
|> f
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net8 .0</TargetFramework >
4
+ <TargetFramework >net9 .0</TargetFramework >
5
5
<OutputType >Exe</OutputType >
6
6
<OutputPath >buildOutput</OutputPath >
7
7
</PropertyGroup >
14
14
</ItemGroup >
15
15
16
16
<ItemGroup >
17
- <PackageReference Include =" Microsoft.Build" Version =" 17.9.5 " />
18
- <PackageReference Include =" Microsoft.Build.Utilities.Core" Version =" 17.9.5 " />
19
- <PackageReference Include =" MSBuild.StructuredLogger" Version =" 2.2.374 " />
17
+ <PackageReference Include =" Microsoft.Build" Version =" 17.12.6 " />
18
+ <PackageReference Include =" Microsoft.Build.Utilities.Core" Version =" 17.12.6 " />
19
+ <PackageReference Include =" MSBuild.StructuredLogger" Version =" 2.2.386 " />
20
20
<PackageReference Include =" Fake.DotNet.Cli" Version =" 6.1.3" />
21
21
<PackageReference Include =" Fake.Core.Target" Version =" 6.1.3" />
22
22
</ItemGroup >
You can’t perform that action at this time.
0 commit comments