Skip to content

Commit 7b0be5b

Browse files
committed
Fixed all build issues
1 parent 6a6035f commit 7b0be5b

File tree

22 files changed

+265
-91
lines changed

22 files changed

+265
-91
lines changed

src/Exceptionless.Extras.Signed/project.json

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,26 @@
55
}
66
},
77
"buildOptions": {
8-
"compile": [ "**/*.cs", "../GlobalAssemblyInfo.cs" ],
9-
"keyFile": "../Exceptionless.snk",
10-
"warningsAsErrors": true
8+
"compile": {
9+
"include": [
10+
"../Exceptionless.Extras/**/*.cs",
11+
"../GlobalAssemblyInfo.cs"
12+
],
13+
"exclude": [
14+
"../Exceptionless.Extras/obj/"
15+
]
16+
},
17+
"keyFile": "../Exceptionless.snk",
18+
"nowarn": [
19+
"CS1591"
20+
],
21+
"warningsAsErrors": true,
22+
"xmlDoc": true
1123
},
1224
"frameworks": {
1325
"net40": {
1426
"buildOptions": {
15-
"define": [ "EMBEDDED", "NET40" ]
27+
"define": [ "EMBEDDED", "SIGNED", "NET40" ]
1628
},
1729
"frameworkAssemblies": {
1830
"Microsoft.VisualBasic": "",
@@ -22,7 +34,7 @@
2234
},
2335
"net45": {
2436
"buildOptions": {
25-
"define": [ "EMBEDDED", "NET45" ]
37+
"define": [ "EMBEDDED", "SIGNED", "NET45" ]
2638
},
2739
"frameworkAssemblies": {
2840
"Microsoft.VisualBasic": "",

src/Exceptionless.Extras/project.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,12 @@
55
}
66
},
77
"buildOptions": {
8-
"compile": [ "**/*.cs", "../GlobalAssemblyInfo.cs" ],
9-
"warningsAsErrors": true
8+
"compile": [ "**/*.cs", "../GlobalAssemblyInfo.cs" ],
9+
"nowarn": [
10+
"CS1591"
11+
],
12+
"warningsAsErrors": true,
13+
"xmlDoc": true
1014
},
1115
"frameworks": {
1216
"net40": {
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="14.0.25123" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0.25123</VisualStudioVersion>
5+
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
6+
</PropertyGroup>
7+
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.Props" Condition="'$(VSToolsPath)' != ''" />
8+
<PropertyGroup Label="Globals">
9+
<ProjectGuid>a11a5a6d-c424-4daa-be22-b88eb984793a</ProjectGuid>
10+
<RootNamespace>Exceptionless.Portable.Signed</RootNamespace>
11+
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath>
12+
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
13+
</PropertyGroup>
14+
15+
<PropertyGroup>
16+
<SchemaVersion>2.0</SchemaVersion>
17+
</PropertyGroup>
18+
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.targets" Condition="'$(VSToolsPath)' != ''" />
19+
</Project>

src/Exceptionless.Portable.Signed/project.json

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,27 @@
1616
}
1717
},
1818
"buildOptions": {
19-
"compile": [ "**/*.cs", "../GlobalAssemblyInfo.cs" ],
20-
"keyFile": "../Exceptionless.snk",
21-
"warningsAsErrors": true
19+
"compile": {
20+
"include": [
21+
"../Exceptionless.Portable/**/*.cs",
22+
"../GlobalAssemblyInfo.cs"
23+
],
24+
"exclude": [
25+
"../Exceptionless.Portable/obj/"
26+
]
27+
},
28+
"keyFile": "../Exceptionless.snk",
29+
"nowarn": [
30+
"CS0419",
31+
"CS1591"
32+
],
33+
"warningsAsErrors": true,
34+
"xmlDoc": true
2235
},
2336
"frameworks": {
2437
".NETPortable,Version=v4.0,Profile=Profile328": {
2538
"buildOptions": {
26-
"define": [ "EMBEDDED", "PORTABLE40" ]
39+
"define": [ "EMBEDDED", "SIGNED", "PORTABLE40" ]
2740
},
2841
"frameworkAssemblies": {
2942
"mscorlib": "",
@@ -36,7 +49,7 @@
3649
},
3750
"net40": {
3851
"buildOptions": {
39-
"define": [ "EMBEDDED", "NET40" ]
52+
"define": [ "EMBEDDED", "SIGNED", "NET40" ]
4053
},
4154
"frameworkAssemblies": {
4255
"System.Data": "",
@@ -49,7 +62,7 @@
4962
},
5063
"net45": {
5164
"buildOptions": {
52-
"define": [ "EMBEDDED", "NET45" ]
65+
"define": [ "EMBEDDED", "SIGNED", "NET45" ]
5366
},
5467
"frameworkAssemblies": {
5568
"System.Data": "",

src/Exceptionless.Portable/project.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,12 @@
1717
},
1818
"buildOptions": {
1919
"compile": [ "**/*.cs", "../GlobalAssemblyInfo.cs" ],
20-
"warningsAsErrors": true
20+
"warningsAsErrors": true,
21+
"nowarn": [
22+
"CS0419",
23+
"CS1591"
24+
],
25+
"xmlDoc": true
2126
},
2227
"frameworks": {
2328
".NETPortable,Version=v4.0,Profile=Profile328": {

src/Platforms/Exceptionless.Log4net.Signed/project.json

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,28 +16,40 @@
1616
}
1717
},
1818
"dependencies": {
19-
"Exceptionless.Portable": {
19+
"Exceptionless.Portable.Signed": {
2020
"target": "project"
2121
},
2222
"log4net": "2.0.5"
2323
},
2424
"buildOptions": {
25-
"compile": [ "**/*.cs", "../../GlobalAssemblyInfo.cs" ],
26-
"keyFile": "../../Exceptionless.snk",
27-
"warningsAsErrors": true
25+
"compile": {
26+
"include": [
27+
"../Exceptionless.Log4net/**/*.cs",
28+
"../../GlobalAssemblyInfo.cs"
29+
],
30+
"exclude": [
31+
"../Exceptionless.Log4net/obj/"
32+
]
33+
},
34+
"keyFile": "../../Exceptionless.snk",
35+
"nowarn": [
36+
"CS1591"
37+
],
38+
"warningsAsErrors": true,
39+
"xmlDoc": true
2840
},
2941
"frameworks": {
3042
"net40": {
3143
"buildOptions": {
32-
"define": [ "EMBEDDED", "NET40" ]
44+
"define": [ "EMBEDDED", "SIGNED", "NET40" ]
3345
},
3446
"frameworkAssemblies": {
3547
"System.Configuration": ""
3648
}
3749
},
3850
"net45": {
3951
"buildOptions": {
40-
"define": [ "EMBEDDED", "NET45" ]
52+
"define": [ "EMBEDDED", "SIGNED", "NET45" ]
4153
},
4254
"frameworkAssemblies": {
4355
"System.Configuration": ""

src/Platforms/Exceptionless.Log4net/project.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,18 @@
1616
}
1717
},
1818
"dependencies": {
19-
"Exceptionless.Portable": {
19+
"Exceptionless.Portable.Signed": {
2020
"target": "project"
2121
},
2222
"log4net": "2.0.5"
2323
},
2424
"buildOptions": {
25-
"compile": [ "**/*.cs", "../../GlobalAssemblyInfo.cs" ],
26-
"warningsAsErrors": true
25+
"compile": [ "**/*.cs", "../../GlobalAssemblyInfo.cs" ],
26+
"nowarn": [
27+
"CS1591"
28+
],
29+
"warningsAsErrors": true,
30+
"xmlDoc": true
2731
},
2832
"frameworks": {
2933
"net40": {

src/Platforms/Exceptionless.Mvc.Signed/project.json

Lines changed: 21 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,26 @@
1616
}
1717
},
1818
"buildOptions": {
19-
"compile": [
20-
"**/*.cs",
21-
"../../GlobalAssemblyInfo.cs",
22-
"../Exceptionless.Web/ExceptionlessClientExtensions.cs",
23-
"../Exceptionless.Web/ExceptionlessWebExtensions.cs",
24-
"../Exceptionless.Web/ExceptionlessWebPlugin.cs",
25-
"../Exceptionless.Web/RequestInfoCollector.cs",
26-
"../Exceptionless.Web/WebLastReferenceIdManager.cs"
19+
"compile": {
20+
"include": [
21+
"../Exceptionless.Mvc/**/*.cs",
22+
"../../GlobalAssemblyInfo.cs",
23+
"../Exceptionless.Web/ExceptionlessClientExtensions.cs",
24+
"../Exceptionless.Web/ExceptionlessWebExtensions.cs",
25+
"../Exceptionless.Web/ExceptionlessWebPlugin.cs",
26+
"../Exceptionless.Web/RequestInfoCollector.cs",
27+
"../Exceptionless.Web/WebLastReferenceIdManager.cs"
28+
],
29+
"exclude": [
30+
"../Exceptionless.Mvc/obj/"
31+
]
32+
},
33+
"keyFile": "../../Exceptionless.snk",
34+
"nowarn": [
35+
"CS1591"
2736
],
28-
"keyFile": "../../Exceptionless.snk",
29-
"warningsAsErrors": true
37+
"warningsAsErrors": true,
38+
"xmlDoc": true
3039
},
3140
"dependencies": {
3241
"Exceptionless.Extras.Signed": {
@@ -37,7 +46,7 @@
3746
"frameworks": {
3847
"net40": {
3948
"buildOptions": {
40-
"define": [ "EMBEDDED", "NET40" ]
49+
"define": [ "EMBEDDED", "SIGNED", "NET40" ]
4150
},
4251
"frameworkAssemblies": {
4352
"System.Configuration": "",
@@ -46,7 +55,7 @@
4655
},
4756
"net45": {
4857
"buildOptions": {
49-
"define": [ "EMBEDDED", "NET45" ]
58+
"define": [ "EMBEDDED", "SIGNED", "NET45" ]
5059
},
5160
"frameworkAssemblies": {
5261
"System.Configuration": "",

src/Platforms/Exceptionless.Mvc/project.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,12 @@
2424
"../Exceptionless.Web/ExceptionlessWebPlugin.cs",
2525
"../Exceptionless.Web/RequestInfoCollector.cs",
2626
"../Exceptionless.Web/WebLastReferenceIdManager.cs"
27+
],
28+
"nowarn": [
29+
"CS1591"
2730
],
28-
"warningsAsErrors": true
31+
"warningsAsErrors": true,
32+
"xmlDoc": true
2933
},
3034
"dependencies": {
3135
"Exceptionless.Extras": {

src/Platforms/Exceptionless.NLog.Signed/project.json

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,21 @@
1616
}
1717
},
1818
"buildOptions": {
19-
"compile": [ "**/*.cs", "../../GlobalAssemblyInfo.cs" ],
20-
"keyFile": "../../Exceptionless.snk",
21-
"warningsAsErrors": true
19+
"compile": {
20+
"include": [
21+
"../Exceptionless.NLog/**/*.cs",
22+
"../../GlobalAssemblyInfo.cs"
23+
],
24+
"exclude": [
25+
"../Exceptionless.NLog/obj/"
26+
]
27+
},
28+
"keyFile": "../../Exceptionless.snk",
29+
"nowarn": [
30+
"CS1591"
31+
],
32+
"warningsAsErrors": true,
33+
"xmlDoc": true
2234
},
2335
"dependencies": {
2436
"Exceptionless.Portable.Signed": {
@@ -29,12 +41,12 @@
2941
"frameworks": {
3042
"net40": {
3143
"buildOptions": {
32-
"define": [ "EMBEDDED", "NET40" ]
44+
"define": [ "EMBEDDED", "SIGNED", "NET40" ]
3345
}
3446
},
3547
"net45": {
3648
"buildOptions": {
37-
"define": [ "EMBEDDED", "NET45" ]
49+
"define": [ "EMBEDDED", "SIGNED", "NET45" ]
3850
}
3951
}
4052
}

0 commit comments

Comments
 (0)