Skip to content
This repository was archived by the owner on Nov 9, 2022. It is now read-only.

Commit cb7e848

Browse files
committed
bug fixed
1 parent 826f670 commit cb7e848

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

Bake.Core/Bake.Core.fsproj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@
66

77
<PropertyGroup>
88
<InvariantGlobalization>true</InvariantGlobalization>
9+
<Authors>Strrationalism</Authors>
10+
<Company>Strrationalism</Company>
11+
<Description>The core library for building system "Bake".</Description>
12+
<PackageProjectUrl>https://github.com/Strrationalism/Bake</PackageProjectUrl>
13+
<RepositoryUrl>https://github.com/Strrationalism/Bake</RepositoryUrl>
14+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
915
</PropertyGroup>
1016

1117
<ItemGroup>

Bake.Parser/Bake.Parser.fsproj

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@
66

77
<PropertyGroup>
88
<InvariantGlobalization>true</InvariantGlobalization>
9+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
10+
<Authors>Strrationalism</Authors>
11+
<Description>The script parser for building system "Bake".</Description>
12+
<PackageProjectUrl>https://github.com/Strrationalism/Bake</PackageProjectUrl>
13+
<RepositoryUrl>https://github.com/Strrationalism/Bake</RepositoryUrl>
914
</PropertyGroup>
1015

1116
<ItemGroup>

Bake/Program.fs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ let processError fmt =
1010
[<EntryPoint>]
1111
let main args =
1212
try
13-
try
14-
Console.SetWindowSize(90,40)
15-
with _ -> ()
1613
let buildScriptFile =
1714
match args with
1815
| [||] ->

Publish.bake

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ Action CopyProject projectName {
3535
}
3636

3737
Parallel {
38+
Copy "$Output" {
39+
Bake.Core/bin/Release/*.nupkg
40+
Bake.Parser/bin/Release/*.nupkg
41+
}
3842
Zip "$Output/Bake-bin-windows-$DateTime.zip" {
3943
Bake/bin/Release/$Target-windows/win-x64/publish/*
4044
}

0 commit comments

Comments
 (0)