Skip to content

Commit 6efb9c6

Browse files
committed
Update min framework to net 4.5.2
1 parent 235d1b1 commit 6efb9c6

File tree

64 files changed

+26457
-2041
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+26457
-2041
lines changed

Exceptionless.Net.sln

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,6 @@ Global
113113
{02EBBB5A-0F11-461E-9778-010F69C36545}.Debug|Any CPU.Build.0 = Debug|Any CPU
114114
{02EBBB5A-0F11-461E-9778-010F69C36545}.Release|Any CPU.ActiveCfg = Release|Any CPU
115115
{02EBBB5A-0F11-461E-9778-010F69C36545}.Release|Any CPU.Build.0 = Release|Any CPU
116-
{887A8565-4A10-44C8-82EF-F2F2D1D2BFBF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
117-
{887A8565-4A10-44C8-82EF-F2F2D1D2BFBF}.Debug|Any CPU.Build.0 = Debug|Any CPU
118-
{887A8565-4A10-44C8-82EF-F2F2D1D2BFBF}.Release|Any CPU.ActiveCfg = Release|Any CPU
119-
{887A8565-4A10-44C8-82EF-F2F2D1D2BFBF}.Release|Any CPU.Build.0 = Release|Any CPU
120116
{D03FB8BA-EE59-42DD-840F-E7791B4609F0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
121117
{D03FB8BA-EE59-42DD-840F-E7791B4609F0}.Debug|Any CPU.Build.0 = Debug|Any CPU
122118
{D03FB8BA-EE59-42DD-840F-E7791B4609F0}.Release|Any CPU.ActiveCfg = Release|Any CPU
@@ -185,7 +181,6 @@ Global
185181
{D4265DE5-6AA5-4566-8B51-4FC2158C8539} = {D363E15F-621D-40E4-8C96-DEE41A7070FF}
186182
{E29380A2-85E5-468E-8D09-4E1CFDF5E90E} = {D363E15F-621D-40E4-8C96-DEE41A7070FF}
187183
{02EBBB5A-0F11-461E-9778-010F69C36545} = {2CEE12C6-3840-4C01-A952-D3026B0A662A}
188-
{887A8565-4A10-44C8-82EF-F2F2D1D2BFBF} = {2CEE12C6-3840-4C01-A952-D3026B0A662A}
189184
{D03FB8BA-EE59-42DD-840F-E7791B4609F0} = {2CEE12C6-3840-4C01-A952-D3026B0A662A}
190185
{DAE5248F-75FC-42CC-96A7-34C470F28641} = {2CEE12C6-3840-4C01-A952-D3026B0A662A}
191186
{B7075822-FBB6-4B3A-A639-37C39DC27BB6} = {2CEE12C6-3840-4C01-A952-D3026B0A662A}

build/common.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939

4040
<ItemGroup>
4141
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
42-
<PackageReference Include="AsyncFixer" Version="1.1.6" PrivateAssets="All" />
43-
<PackageReference Include="MinVer" Version="2.1.0" PrivateAssets="All" />
42+
<PackageReference Include="AsyncFixer" Version="1.3.0" PrivateAssets="All" />
43+
<PackageReference Include="MinVer" Version="2.3.1" PrivateAssets="All" />
4444
</ItemGroup>
4545

4646
<ItemGroup>

global.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"sdk": {
3+
"version": "3.1.100",
4+
"rollForward": "latestMinor"
5+
}
6+
}

samples/Exceptionless.SampleConsole/Exceptionless.SampleConsole.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
</ItemGroup>
2121

2222
<ItemGroup>
23-
<PackageReference Include="Exceptionless.DateTimeExtensions" Version="3.3.100" />
23+
<PackageReference Include="Exceptionless.DateTimeExtensions" Version="3.4.0" />
2424
<PackageReference Include="Exceptionless.RandomData" Version="1.2.0" />
2525
</ItemGroup>
2626

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
using System.Web;
2+
using System.Web.Optimization;
3+
4+
namespace Exceptionless.SampleMvc {
5+
public class BundleConfig
6+
{
7+
// For more information on bundling, visit https://go.microsoft.com/fwlink/?LinkId=301862
8+
public static void RegisterBundles(BundleCollection bundles)
9+
{
10+
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
11+
"~/Scripts/jquery-{version}.js"));
12+
13+
bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include(
14+
"~/Scripts/jquery.validate*"));
15+
16+
// Use the development version of Modernizr to develop with and learn from. Then, when you're
17+
// ready for production, use the build tool at https://modernizr.com to pick only the tests you need.
18+
bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
19+
"~/Scripts/modernizr-*"));
20+
21+
bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include(
22+
"~/Scripts/bootstrap.js"));
23+
24+
bundles.Add(new StyleBundle("~/Content/css").Include(
25+
"~/Content/bootstrap.css",
26+
"~/Content/site.css"));
27+
}
28+
}
29+
}

samples/Exceptionless.SampleMvc/App_Start/RouteConfig.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,13 @@ public static void RegisterRoutes(RouteCollection routes) {
88
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
99

1010
routes.MapRoute(
11-
name: "Default",
11+
name: "Default",
1212
url: "{controller}/{action}/{id}",
1313
defaults: new {
1414
controller = "Home",
1515
action = "Index",
1616
id = UrlParameter.Optional
17-
}
18-
);
17+
});
1918
}
2019
}
2120
}

samples/Exceptionless.SampleMvc/App_Start/WebApiConfig.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,11 @@ namespace Exceptionless.SampleMvc.App_Start {
55
public static class WebApiConfig {
66
public static void Register(HttpConfiguration config) {
77
config.Routes.MapHttpRoute(
8-
name: "DefaultApi",
8+
name: "DefaultApi",
99
routeTemplate: "api/{controller}/{id}",
1010
defaults: new {
1111
id = RouteParameter.Optional
12-
}
13-
);
12+
});
1413

1514
// Uncomment the following line of code to enable query support for actions with an IQueryable or IQueryable<T> return type.
1615
// To avoid processing unexpected or malicious queries, use the validation settings on QueryableAttribute to validate incoming queries.
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
body {
2+
padding-top: 50px;
3+
padding-bottom: 20px;
4+
}
5+
6+
/* Set padding to keep content from hitting the edges */
7+
.body-content {
8+
padding-left: 15px;
9+
padding-right: 15px;
10+
}
11+
12+
/* Override the default bootstrap behavior where horizontal description lists
13+
will truncate terms that are too long to fit in the left column
14+
*/
15+
.dl-horizontal dt {
16+
white-space: normal;
17+
}
18+
19+
/* Set width on the form input elements since they're 100% wide by default */
20+
input,
21+
select,
22+
textarea {
23+
max-width: 280px;
24+
}

0 commit comments

Comments
 (0)