Skip to content

Commit de38ab3

Browse files
committed
Updated dependencies
1 parent eb71bd2 commit de38ab3

14 files changed

+68
-38
lines changed

Source/Platforms/NLog/Exceptionless.NLog.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
</PropertyGroup>
4444
<ItemGroup>
4545
<Reference Include="NLog, Version=4.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c, processorArchitecture=MSIL">
46-
<HintPath>..\..\..\packages\NLog.4.2.3\lib\net40\NLog.dll</HintPath>
46+
<HintPath>..\..\..\packages\NLog.4.3.0\lib\net40\NLog.dll</HintPath>
4747
<Private>True</Private>
4848
</Reference>
4949
<Reference Include="System" />

Source/Platforms/NLog/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="NLog" version="4.2.3" targetFramework="net40" />
3+
<package id="NLog" version="4.3.0" targetFramework="net40" />
44
</packages>

Source/Samples/SampleConsole/Exceptionless.SampleConsole.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,20 +44,20 @@
4444
</AssemblyOriginatorKeyFile>
4545
</PropertyGroup>
4646
<ItemGroup>
47-
<Reference Include="Exceptionless.DateTimeExtensions, Version=3.1.44.0, Culture=neutral, processorArchitecture=MSIL">
48-
<HintPath>..\..\..\packages\Exceptionless.DateTimeExtensions.3.1.44\lib\portable-net40+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\Exceptionless.DateTimeExtensions.dll</HintPath>
47+
<Reference Include="Exceptionless.DateTimeExtensions, Version=3.1.45.0, Culture=neutral, processorArchitecture=MSIL">
48+
<HintPath>..\..\..\packages\Exceptionless.DateTimeExtensions.3.1.45\lib\portable-net40+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\Exceptionless.DateTimeExtensions.dll</HintPath>
4949
<Private>True</Private>
5050
</Reference>
51-
<Reference Include="Exceptionless.RandomData, Version=1.0.21.0, Culture=neutral, processorArchitecture=MSIL">
52-
<HintPath>..\..\..\packages\Exceptionless.RandomData.1.0.21.0\lib\net40\Exceptionless.RandomData.dll</HintPath>
51+
<Reference Include="Exceptionless.RandomData, Version=1.0.22.0, Culture=neutral, processorArchitecture=MSIL">
52+
<HintPath>..\..\..\packages\Exceptionless.RandomData.1.0.22.0\lib\net40\Exceptionless.RandomData.dll</HintPath>
5353
<Private>True</Private>
5454
</Reference>
5555
<Reference Include="log4net, Version=1.2.15.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
5656
<HintPath>..\..\..\packages\log4net.2.0.5\lib\net45-full\log4net.dll</HintPath>
5757
<Private>True</Private>
5858
</Reference>
5959
<Reference Include="NLog, Version=4.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c, processorArchitecture=MSIL">
60-
<HintPath>..\..\..\packages\NLog.4.2.3\lib\net45\NLog.dll</HintPath>
60+
<HintPath>..\..\..\packages\NLog.4.3.0\lib\net45\NLog.dll</HintPath>
6161
<Private>True</Private>
6262
</Reference>
6363
<Reference Include="System" />

Source/Samples/SampleConsole/NLog.xsd

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,11 @@
4545
<xs:documentation>Pass NLog internal exceptions to the application. Default value is: false.</xs:documentation>
4646
</xs:annotation>
4747
</xs:attribute>
48+
<xs:attribute name="internalLogToTrace" type="xs:boolean">
49+
<xs:annotation>
50+
<xs:documentation>Write internal NLog messages to the the System.Diagnostics.Trace. Default value is: false</xs:documentation>
51+
</xs:annotation>
52+
</xs:attribute>
4853
</xs:complexType>
4954
<xs:complexType name="NLogTargets">
5055
<xs:choice minOccurs="0" maxOccurs="unbounded">
@@ -611,6 +616,7 @@
611616
<xs:element name="regex" minOccurs="0" maxOccurs="1" type="xs:string" />
612617
<xs:element name="text" minOccurs="0" maxOccurs="1" type="xs:string" />
613618
<xs:element name="wholeWords" minOccurs="0" maxOccurs="1" type="xs:boolean" />
619+
<xs:element name="compileRegex" minOccurs="0" maxOccurs="1" type="xs:boolean" />
614620
<xs:element name="backgroundColor" minOccurs="0" maxOccurs="1" type="NLog.Targets.ConsoleOutputColor" />
615621
<xs:element name="foregroundColor" minOccurs="0" maxOccurs="1" type="NLog.Targets.ConsoleOutputColor" />
616622
</xs:choice>
@@ -634,6 +640,11 @@
634640
<xs:documentation>Indicates whether to match whole words only.</xs:documentation>
635641
</xs:annotation>
636642
</xs:attribute>
643+
<xs:attribute name="compileRegex" type="xs:boolean">
644+
<xs:annotation>
645+
<xs:documentation>Compile the ? This can improve the performance, but at the costs of more memory usage. If false, the Regex Cache is used.</xs:documentation>
646+
</xs:annotation>
647+
</xs:attribute>
637648
<xs:attribute name="backgroundColor" type="NLog.Targets.ConsoleOutputColor">
638649
<xs:annotation>
639650
<xs:documentation>Background color.</xs:documentation>
@@ -911,7 +922,9 @@
911922
<xs:element name="log" minOccurs="0" maxOccurs="1" type="xs:string" />
912923
<xs:element name="machineName" minOccurs="0" maxOccurs="1" type="xs:string" />
913924
<xs:element name="source" minOccurs="0" maxOccurs="1" type="Layout" />
925+
<xs:element name="onOverflow" minOccurs="0" maxOccurs="1" type="NLog.Targets.EventLogTargetOverflowAction" />
914926
<xs:element name="entryType" minOccurs="0" maxOccurs="1" type="Layout" />
927+
<xs:element name="maxMessageLength" minOccurs="0" maxOccurs="1" type="xs:integer" />
915928
</xs:choice>
916929
<xs:attribute name="name" type="xs:string">
917930
<xs:annotation>
@@ -948,14 +961,31 @@
948961
<xs:documentation>Value to be used as the event Source.</xs:documentation>
949962
</xs:annotation>
950963
</xs:attribute>
964+
<xs:attribute name="onOverflow" type="NLog.Targets.EventLogTargetOverflowAction">
965+
<xs:annotation>
966+
<xs:documentation>Action to take if the message is larger than the option.</xs:documentation>
967+
</xs:annotation>
968+
</xs:attribute>
951969
<xs:attribute name="entryType" type="SimpleLayoutAttribute">
952970
<xs:annotation>
953971
<xs:documentation>Optional entrytype. When not set, or when not convertable to then determined by </xs:documentation>
954972
</xs:annotation>
955973
</xs:attribute>
974+
<xs:attribute name="maxMessageLength" type="xs:integer">
975+
<xs:annotation>
976+
<xs:documentation>Message length limit to write to the Event Log.</xs:documentation>
977+
</xs:annotation>
978+
</xs:attribute>
956979
</xs:extension>
957980
</xs:complexContent>
958981
</xs:complexType>
982+
<xs:simpleType name="NLog.Targets.EventLogTargetOverflowAction">
983+
<xs:restriction base="xs:string">
984+
<xs:enumeration value="Truncate" />
985+
<xs:enumeration value="Split" />
986+
<xs:enumeration value="Discard" />
987+
</xs:restriction>
988+
</xs:simpleType>
959989
<xs:complexType name="FallbackGroup">
960990
<xs:complexContent>
961991
<xs:extension base="CompoundTargetBase">
@@ -1090,7 +1120,7 @@
10901120
</xs:attribute>
10911121
<xs:attribute name="archiveDateFormat" type="xs:string">
10921122
<xs:annotation>
1093-
<xs:documentation>Value specifying the date format to use when archving files.</xs:documentation>
1123+
<xs:documentation>Value specifying the date format to use when archiving files.</xs:documentation>
10941124
</xs:annotation>
10951125
</xs:attribute>
10961126
<xs:attribute name="archiveOldFileOnStartup" type="xs:boolean">
@@ -1661,7 +1691,7 @@
16611691
</xs:attribute>
16621692
<xs:attribute name="methodName" type="xs:string">
16631693
<xs:annotation>
1664-
<xs:documentation>Method name. The method must be public and static.</xs:documentation>
1694+
<xs:documentation>Method name. The method must be public and static. Use the AssemblyQualifiedName , https://msdn.microsoft.com/en-us/library/system.type.assemblyqualifiedname(v=vs.110).aspx e.g.</xs:documentation>
16651695
</xs:annotation>
16661696
</xs:attribute>
16671697
</xs:extension>
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Exceptionless.DateTimeExtensions" version="3.1.44" targetFramework="net452" />
4-
<package id="Exceptionless.RandomData" version="1.0.21.0" targetFramework="net452" />
3+
<package id="Exceptionless.DateTimeExtensions" version="3.1.45" targetFramework="net452" />
4+
<package id="Exceptionless.RandomData" version="1.0.22.0" targetFramework="net452" />
55
<package id="log4net" version="2.0.5" targetFramework="net452" />
6-
<package id="NLog" version="4.2.3" targetFramework="net452" />
7-
<package id="NLog.Config" version="4.2.3" targetFramework="net452" />
8-
<package id="NLog.Schema" version="4.2.3" targetFramework="net452" />
6+
<package id="NLog" version="4.3.0" targetFramework="net452" />
7+
<package id="NLog.Config" version="4.3.0" targetFramework="net452" />
8+
<package id="NLog.Schema" version="4.3.0" targetFramework="net452" />
99
</packages>

Source/Samples/SampleMvc/Exceptionless.SampleMvc.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
<Private>True</Private>
5656
</Reference>
5757
<Reference Include="NLog, Version=4.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c, processorArchitecture=MSIL">
58-
<HintPath>..\..\..\packages\NLog.4.2.3\lib\net45\NLog.dll</HintPath>
58+
<HintPath>..\..\..\packages\NLog.4.3.0\lib\net45\NLog.dll</HintPath>
5959
<Private>True</Private>
6060
</Reference>
6161
<Reference Include="System" />
@@ -143,9 +143,9 @@
143143
<ItemGroup>
144144
<Content Include="Global.asax" />
145145
<Content Include="packages.config" />
146-
<None Include="Scripts\jquery-2.2.2.intellisense.js" />
147-
<Content Include="Scripts\jquery-2.2.2.js" />
148-
<Content Include="Scripts\jquery-2.2.2.min.js" />
146+
<None Include="Scripts\jquery-2.2.3.intellisense.js" />
147+
<Content Include="Scripts\jquery-2.2.3.js" />
148+
<Content Include="Scripts\jquery-2.2.3.min.js" />
149149
<Content Include="Web.config">
150150
<SubType>Designer</SubType>
151151
</Content>
@@ -191,7 +191,7 @@
191191
<Content Include="Views\Shared\NotFound.cshtml" />
192192
</ItemGroup>
193193
<ItemGroup>
194-
<Content Include="Scripts\jquery-2.2.2.min.map" />
194+
<Content Include="Scripts\jquery-2.2.3.min.map" />
195195
</ItemGroup>
196196
<PropertyGroup>
197197
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">11.0</VisualStudioVersion>

Source/Samples/SampleMvc/Scripts/jquery-2.2.2.js renamed to Source/Samples/SampleMvc/Scripts/jquery-2.2.3.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jQuery JavaScript Library v2.2.2
2+
* jQuery JavaScript Library v2.2.3
33
* http://jquery.com/
44
*
55
* Includes Sizzle.js
@@ -9,7 +9,7 @@
99
* Released under the MIT license
1010
* http://jquery.org/license
1111
*
12-
* Date: 2016-03-17T17:51Z
12+
* Date: 2016-04-05T19:26Z
1313
*/
1414

1515
(function( global, factory ) {
@@ -65,7 +65,7 @@ var support = {};
6565

6666

6767
var
68-
version = "2.2.2",
68+
version = "2.2.3",
6969

7070
// Define a local copy of jQuery
7171
jQuery = function( selector, context ) {
@@ -9475,7 +9475,7 @@ jQuery.fn.load = function( url, params, callback ) {
94759475
// If it fails, this function gets "jqXHR", "status", "error"
94769476
} ).always( callback && function( jqXHR, status ) {
94779477
self.each( function() {
9478-
callback.apply( self, response || [ jqXHR.responseText, status, jqXHR ] );
9478+
callback.apply( this, response || [ jqXHR.responseText, status, jqXHR ] );
94799479
} );
94809480
} );
94819481
}

Source/Samples/SampleMvc/Scripts/jquery-2.2.2.min.js renamed to Source/Samples/SampleMvc/Scripts/jquery-2.2.3.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Source/Samples/SampleMvc/Scripts/jquery-2.2.2.min.map renamed to Source/Samples/SampleMvc/Scripts/jquery-2.2.3.min.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)