Skip to content

Commit a3ad4f2

Browse files
committed
cleanup to generate
1 parent be61769 commit a3ad4f2

File tree

23 files changed

+88
-63
lines changed

23 files changed

+88
-63
lines changed

.vscode/tasks.json

Lines changed: 22 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,39 @@
11
{
2-
"version": "2.0.0",
3-
"tasks": [
4-
{
5-
"label": "build",
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "build",
66
"command": "dotnet",
77
"type": "process",
88
"args": [
99
"build",
1010
"${workspaceFolder}/Basic.Reference.Assemblies.sln",
1111
"/property:GenerateFullPaths=true",
12-
"/consoleloggerparameters:NoSummary"
12+
"/consoleloggerparameters:NoSummary",
13+
"/tl:off"
1314
],
1415
"problemMatcher": "$msCompile",
15-
"group": {
16-
"kind": "build",
17-
"isDefault": true
18-
},
19-
},
20-
{
21-
"label": "build generate",
16+
"group": {
17+
"kind": "build",
18+
"isDefault": true
19+
},
20+
},
21+
{
22+
"label": "build generate",
2223
"command": "dotnet",
2324
"type": "process",
2425
"args": [
2526
"build",
26-
"${workspaceFolder}/Generate/Generate.csproj",
27+
"${workspaceFolder}/Src/Generate/Generate.csproj",
2728
"/property:GenerateFullPaths=true",
28-
"/consoleloggerparameters:NoSummary"
29+
"/consoleloggerparameters:NoSummary",
30+
"/tl:off"
2931
],
3032
"problemMatcher": "$msCompile",
31-
"group": {
32-
"kind": "build",
33-
"isDefault": true
34-
},
35-
}
36-
]
33+
"group": {
34+
"kind": "build",
35+
"isDefault": true
36+
},
37+
}
38+
]
3739
}

Src/Basic.Reference.Assemblies.AspNet80/Generated.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// This is a generated file, please edit Generate\Program.cs to change the contents
1+
// This is a generated file, please edit Src\Generate\Program.cs to change the contents
22

33
using System;
44
using System.Collections.Generic;
@@ -1820,6 +1820,7 @@ public static class Resources
18201820

18211821
}
18221822
}
1823+
18231824
public static partial class AspNet80
18241825
{
18251826
public static class ReferenceInfos

Src/Basic.Reference.Assemblies.AspNet90/Generated.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// This is a generated file, please edit Generate\Program.cs to change the contents
1+
// This is a generated file, please edit Src\Generate\Program.cs to change the contents
22

33
using System;
44
using System.Collections.Generic;
@@ -1826,6 +1826,7 @@ public static class Resources
18261826

18271827
}
18281828
}
1829+
18291830
public static partial class AspNet90
18301831
{
18311832
public static class ReferenceInfos

Src/Basic.Reference.Assemblies.Net20/Generated.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// This is a generated file, please edit Generate\Program.cs to change the contents
1+
// This is a generated file, please edit Src\Generate\Program.cs to change the contents
22

33
using System;
44
using System.Collections.Generic;
@@ -308,6 +308,7 @@ public static class Resources
308308

309309
}
310310
}
311+
311312
public static partial class Net20
312313
{
313314
public static class ReferenceInfos

Src/Basic.Reference.Assemblies.Net35/Generated.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// This is a generated file, please edit Generate\Program.cs to change the contents
1+
// This is a generated file, please edit Src\Generate\Program.cs to change the contents
22

33
using System;
44
using System.Collections.Generic;
@@ -626,6 +626,7 @@ public static class Resources
626626

627627
}
628628
}
629+
629630
public static partial class Net35
630631
{
631632
public static class ReferenceInfos

Src/Basic.Reference.Assemblies.Net40/Generated.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// This is a generated file, please edit Generate\Program.cs to change the contents
1+
// This is a generated file, please edit Src\Generate\Program.cs to change the contents
22

33
using System;
44
using System.Collections.Generic;
@@ -710,6 +710,7 @@ public static class Resources
710710

711711
}
712712
}
713+
713714
public static partial class Net40
714715
{
715716
public static class ReferenceInfos

Src/Basic.Reference.Assemblies.Net461/Generated.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// This is a generated file, please edit Generate\Program.cs to change the contents
1+
// This is a generated file, please edit Src\Generate\Program.cs to change the contents
22

33
using System;
44
using System.Collections.Generic;
@@ -1118,6 +1118,7 @@ public static class Resources
11181118

11191119
}
11201120
}
1121+
11211122
public static partial class Net461
11221123
{
11231124
public static class ReferenceInfos

Src/Basic.Reference.Assemblies.Net472/Generated.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// This is a generated file, please edit Generate\Program.cs to change the contents
1+
// This is a generated file, please edit Src\Generate\Program.cs to change the contents
22

33
using System;
44
using System.Collections.Generic;
@@ -1424,6 +1424,7 @@ public static class Resources
14241424

14251425
}
14261426
}
1427+
14271428
public static partial class Net472
14281429
{
14291430
public static class ReferenceInfos

Src/Basic.Reference.Assemblies.Net50/Generated.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// This is a generated file, please edit Generate\Program.cs to change the contents
1+
// This is a generated file, please edit Src\Generate\Program.cs to change the contents
22

33
using System;
44
using System.Collections.Generic;
@@ -926,6 +926,7 @@ public static class Resources
926926

927927
}
928928
}
929+
929930
public static partial class Net50
930931
{
931932
public static class ReferenceInfos

Src/Basic.Reference.Assemblies.Net60/Generated.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// This is a generated file, please edit Generate\Program.cs to change the contents
1+
// This is a generated file, please edit Src\Generate\Program.cs to change the contents
22

33
using System;
44
using System.Collections.Generic;
@@ -968,6 +968,7 @@ public static class Resources
968968

969969
}
970970
}
971+
971972
public static partial class Net60
972973
{
973974
public static class ReferenceInfos

0 commit comments

Comments
 (0)