Skip to content

Commit 0b257f9

Browse files
committed
update build info
1 parent 5daf4ab commit 0b257f9

2 files changed

Lines changed: 151 additions & 6 deletions

File tree

build/build.cake

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,34 @@ Task("Build")
2323
OutputDirectory = "lib/net45"
2424
};
2525

26+
var settingsNet451 = new DotNetCoreBuildSettings
27+
{
28+
Configuration = "Release",
29+
Framework = "net451",
30+
OutputDirectory = "lib/net451"
31+
};
32+
33+
var settingsNet452 = new DotNetCoreBuildSettings
34+
{
35+
Configuration = "Release",
36+
Framework = "net452",
37+
OutputDirectory = "lib/net452"
38+
};
39+
40+
var settingsNet46 = new DotNetCoreBuildSettings
41+
{
42+
Configuration = "Release",
43+
Framework = "net46",
44+
OutputDirectory = "lib/net46"
45+
};
46+
47+
var settingsNet461 = new DotNetCoreBuildSettings
48+
{
49+
Configuration = "Release",
50+
Framework = "net461",
51+
OutputDirectory = "lib/net461"
52+
};
53+
2654
var settingsNet462 = new DotNetCoreBuildSettings
2755
{
2856
Configuration = "Release",
@@ -37,6 +65,20 @@ Task("Build")
3765
OutputDirectory = "lib/net47"
3866
};
3967

68+
var settingsNet471 = new DotNetCoreBuildSettings
69+
{
70+
Configuration = "Release",
71+
Framework = "net471",
72+
OutputDirectory = "lib/net471"
73+
};
74+
75+
var settingsNet472 = new DotNetCoreBuildSettings
76+
{
77+
Configuration = "Release",
78+
Framework = "net472",
79+
OutputDirectory = "lib/net472"
80+
};
81+
4082
var settingsNet48 = new DotNetCoreBuildSettings
4183
{
4284
Configuration = "Release",
@@ -67,8 +109,14 @@ Task("Build")
67109

68110
DotNetCoreBuild("../src/Net_40/HandyControl_Net_40/HandyControl_Net_40.csproj", settingsNet40);
69111
DotNetCoreBuild("../src/Net_GE45/HandyControl_Net_GE45/HandyControl_Net_GE45.csproj", settingsNet45);
112+
DotNetCoreBuild("../src/Net_GE45/HandyControl_Net_GE45/HandyControl_Net_GE45.csproj", settingsNet451);
113+
DotNetCoreBuild("../src/Net_GE45/HandyControl_Net_GE45/HandyControl_Net_GE45.csproj", settingsNet452);
114+
DotNetCoreBuild("../src/Net_GE45/HandyControl_Net_GE45/HandyControl_Net_GE45.csproj", settingsNet46);
115+
DotNetCoreBuild("../src/Net_GE45/HandyControl_Net_GE45/HandyControl_Net_GE45.csproj", settingsNet461);
70116
DotNetCoreBuild("../src/Net_GE45/HandyControl_Net_GE45/HandyControl_Net_GE45.csproj", settingsNet462);
71117
DotNetCoreBuild("../src/Net_GE45/HandyControl_Net_GE45/HandyControl_Net_GE45.csproj", settingsNet47);
118+
DotNetCoreBuild("../src/Net_GE45/HandyControl_Net_GE45/HandyControl_Net_GE45.csproj", settingsNet471);
119+
DotNetCoreBuild("../src/Net_GE45/HandyControl_Net_GE45/HandyControl_Net_GE45.csproj", settingsNet472);
72120
DotNetCoreBuild("../src/Net_GE45/HandyControl_Net_GE45/HandyControl_Net_GE45.csproj", settingsNet48);
73121
DotNetCoreBuild("../src/Net_GE45/HandyControl_Net_GE45/HandyControl_Net_GE45.csproj", settingsCore30);
74122
DotNetCoreBuild("../src/Net_GE45/HandyControl_Net_GE45/HandyControl_Net_GE45.csproj", settingsCore31);

0 commit comments

Comments
 (0)