Skip to content

Commit 144710e

Browse files
committed
Updated dependencies
1 parent a60976c commit 144710e

File tree

7 files changed

+36
-23
lines changed

7 files changed

+36
-23
lines changed

src/Exceptionless.Tests/project.json

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,28 @@
1212
"Exceptionless": {
1313
"target": "project"
1414
},
15-
"Exceptionless.RandomData": "1.1.23",
16-
"Foundatio": "4.0.958",
15+
"Foundatio": "4.2.1046-pre",
1716
"Moq": "4.6.25-alpha",
18-
"Newtonsoft.Json": "8.0.3",
19-
"NLog": "4.4.0-beta11",
20-
"SimpleInjector": "3.1.4",
21-
22-
"dotnet-test-xunit": "1.0.0-rc2-*",
23-
"xunit": "2.1.0",
24-
"xunit.extensibility.execution": "2.1.0",
25-
"xunit.extensibility.core": "2.1.0",
26-
"xunit.runner.visualstudio": "2.1.0"
17+
"NLog": "4.4.0-beta12",
18+
"dotnet-test-xunit": "2.2.0-preview2-build1029",
19+
"xunit": "2.2.0-beta2-build3300",
20+
"xunit.extensibility.core": "2.2.0-beta2-build3300",
21+
"xunit.extensibility.execution": "2.2.0-beta2-build3300",
22+
"xunit.runner.visualstudio": "2.2.0-beta2-build1149",
23+
"Exceptionless.RandomData": "1.1.24"
2724
},
2825
"frameworks": {
26+
"netcoreapp1.0": {
27+
"buildOptions": {
28+
"define": [ "NETSTANDARD", "NETSTANDARD1_5" ]
29+
},
30+
"dependencies": {
31+
"Microsoft.NETCore.App": {
32+
"type": "platform",
33+
"version": "1.0.0"
34+
}
35+
}
36+
},
2937
"NET46": {
3038
"buildOptions": {
3139
"define": [ "NET46" ]

src/Platforms/Exceptionless.NLog/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@
3131
"dependencies": {
3232
"Exceptionless": {
3333
"target": "project"
34-
}
34+
},
35+
"NLog": "4.4.0-beta12"
3536
},
3637
"frameworks": {
3738
"netstandard1.3": {

src/Samples/Exceptionless.SampleConsole/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{
1+
{
22
"buildOptions": {
33
"compile": {
44
"include": [
@@ -14,11 +14,11 @@
1414
"Exceptionless": {
1515
"target": "project"
1616
},
17-
"Exceptionless.DateTimeExtensions": "3.2.52",
17+
"Exceptionless.DateTimeExtensions": "3.2.53",
1818
"Exceptionless.NLog": {
1919
"target": "project"
2020
},
21-
"Exceptionless.RandomData": "1.1.23",
21+
"Exceptionless.RandomData": "1.1.24",
2222
"Microsoft.NETCore.App": {
2323
"type": "platform",
2424
"version": "1.0.0"

src/Samples/Exceptionless.SampleMvc/Exceptionless.SampleMvc.csproj

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,19 +51,20 @@
5151
<HintPath>..\..\..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
5252
<Private>True</Private>
5353
</Reference>
54-
<Reference Include="Newtonsoft.Json, Version=8.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
55-
<HintPath>..\..\..\packages\Newtonsoft.Json.8.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
54+
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
55+
<HintPath>..\..\..\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
5656
<Private>True</Private>
5757
</Reference>
5858
<Reference Include="NLog, Version=4.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c, processorArchitecture=MSIL">
59-
<HintPath>..\..\..\packages\NLog.4.3.3\lib\net45\NLog.dll</HintPath>
59+
<HintPath>..\..\..\packages\NLog.4.4.0-beta12\lib\net45\NLog.dll</HintPath>
6060
<Private>True</Private>
6161
</Reference>
6262
<Reference Include="System" />
6363
<Reference Include="System.Data" />
6464
<Reference Include="System.Data.DataSetExtensions" />
6565
<Reference Include="System.Data.Entity" />
6666
<Reference Include="System.Drawing" />
67+
<Reference Include="System.IO.Compression" />
6768
<Reference Include="System.Net.Http.Extensions, Version=2.2.29.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
6869
<HintPath>..\..\..\packages\Microsoft.Net.Http.2.2.29\lib\net45\System.Net.Http.Extensions.dll</HintPath>
6970
<Private>True</Private>
@@ -76,6 +77,9 @@
7677
<HintPath>..\..\..\packages\Microsoft.Net.Http.2.2.29\lib\net45\System.Net.Http.Primitives.dll</HintPath>
7778
<Private>True</Private>
7879
</Reference>
80+
<Reference Include="System.Runtime.Serialization" />
81+
<Reference Include="System.ServiceModel" />
82+
<Reference Include="System.Transactions" />
7983
<Reference Include="System.Web.DynamicData" />
8084
<Reference Include="System.Web.Entity" />
8185
<Reference Include="System.Web.ApplicationServices" />

src/Samples/Exceptionless.SampleMvc/Web.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
</dependentAssembly>
6666
<dependentAssembly>
6767
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
68-
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
68+
<bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" />
6969
</dependentAssembly>
7070
<dependentAssembly>
7171
<assemblyIdentity name="Microsoft.Data.Edm" publicKeyToken="31bf3856ad364e35" culture="neutral" />
@@ -105,7 +105,7 @@
105105
</dependentAssembly>
106106
<dependentAssembly>
107107
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
108-
<bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
108+
<bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
109109
</dependentAssembly>
110110
</assemblyBinding>
111111
</runtime>

src/Samples/Exceptionless.SampleMvc/packages.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
<package id="Microsoft.Bcl.Build" version="1.0.21" targetFramework="net452" />
1414
<package id="Microsoft.Net.Http" version="2.2.29" targetFramework="net452" />
1515
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net452" />
16-
<package id="Newtonsoft.Json" version="8.0.3" targetFramework="net452" />
17-
<package id="NLog" version="4.3.3" targetFramework="net452" />
16+
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net45" />
17+
<package id="NLog" version="4.4.0-beta12" targetFramework="net45" />
1818
</packages>

src/Samples/Exceptionless.SampleWebApi/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"Microsoft.Owin": "3.0.1",
1414
"Microsoft.Owin.Host.HttpListener": "3.0.1",
1515
"Microsoft.Owin.Hosting": "3.0.1",
16-
"Newtonsoft.Json": "8.0.3",
16+
"Newtonsoft.Json": "9.0.1",
1717
"Owin": "1.0"
1818
},
1919
"frameworks": {

0 commit comments

Comments
 (0)