Skip to content

Commit c2f918c

Browse files
committed
Fixed problem with previous commit
1 parent d5cca01 commit c2f918c

13 files changed

+3
-3635
lines changed

lib/AntiXSSLibrary.dll

-138 KB
Binary file not shown.

lib/HtmlSanitizationLibrary.dll

-412 KB
Binary file not shown.

lib/NET4/System.Web.Mvc.dll

-435 KB
Binary file not shown.

lib/NET4/System.Web.Razor.dll

-174 KB
Binary file not shown.
-36.4 KB
Binary file not shown.

lib/NET4/System.Web.WebPages.dll

-133 KB
Binary file not shown.

lib/NET4/X64/System.Data.SQLite.dll

-1.11 MB
Binary file not shown.

lib/System.Data.SQLite.DLL

-884 KB
Binary file not shown.

lib/System.Data.SQLite.XML

-3,634
This file was deleted.

lib/X64/System.Data.SQLite.dll

-1.12 MB
Binary file not shown.

src/Framework/N2/Engine/DynamicProxy/Core/Logging/TraceLogger.cs

+2
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ public class TraceLogger : ILogger
5353
#endif
5454
public TraceLogger(string name)
5555
{
56+
Name = name;
5657
Initialize();
5758
Level = MapLoggerLevel(traceSource.Switch.Level);
5859
}
@@ -68,6 +69,7 @@ public TraceLogger(string name)
6869
#endif
6970
public TraceLogger(string name, LoggerLevel level)
7071
{
72+
Name = name;
7173
Initialize();
7274
Level = MapLoggerLevel(traceSource.Switch.Level);
7375
}
100 KB
Binary file not shown.

src/Mvc/Dinamico/web.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
</appSettings>
6868

6969
<system.web>
70-
<trust level="Medium" originUrl=""/>
70+
<!--<trust level="Medium" originUrl=""/>-->
7171

7272
<compilation debug="true" targetFramework="4.0" optimizeCompilations="true">
7373
<assemblies>

0 commit comments

Comments
 (0)