diff --git a/.vs/StockManMVC/v15/sqlite3/storage.ide b/.vs/StockManMVC/v15/sqlite3/storage.ide index 768608b..050c7cc 100644 Binary files a/.vs/StockManMVC/v15/sqlite3/storage.ide and b/.vs/StockManMVC/v15/sqlite3/storage.ide differ diff --git a/StockManMVC/Scripts/cldr.js b/StockManMVC/Scripts/cldr.js index 67f0abe..d7e4baa 100644 --- a/StockManMVC/Scripts/cldr.js +++ b/StockManMVC/Scripts/cldr.js @@ -1,15 +1,15 @@ /** - * CLDR JavaScript Library v0.4.8 + * CLDR JavaScript Library v0.5.0 * http://jquery.com/ * * Copyright 2013 Rafael Xavier de Souza * Released under the MIT license * http://jquery.org/license * - * Date: 2016-11-26T15:03Z + * Date: 2017-08-11T11:52Z */ /*! - * CLDR JavaScript Library v0.4.8 2016-11-26T15:03Z MIT license © Rafael Xavier + * CLDR JavaScript Library v0.5.0 2017-08-11T11:52Z MIT license © Rafael Xavier * http://git.io/h4lmVg */ (function( root, factory ) { diff --git a/StockManMVC/Scripts/cldr/event.js b/StockManMVC/Scripts/cldr/event.js index f3cc82e..c7c4faa 100644 --- a/StockManMVC/Scripts/cldr/event.js +++ b/StockManMVC/Scripts/cldr/event.js @@ -1,15 +1,15 @@ /** - * CLDR JavaScript Library v0.4.8 + * CLDR JavaScript Library v0.5.0 * http://jquery.com/ * * Copyright 2013 Rafael Xavier de Souza * Released under the MIT license * http://jquery.org/license * - * Date: 2016-11-26T15:03Z + * Date: 2017-08-11T11:52Z */ /*! - * CLDR JavaScript Library v0.4.8 2016-11-26T15:03Z MIT license © Rafael Xavier + * CLDR JavaScript Library v0.5.0 2017-08-11T11:52Z MIT license © Rafael Xavier * http://git.io/h4lmVg */ (function( factory ) { @@ -54,8 +54,8 @@ EventEmitter = (function () { // Shortcuts to improve speed and size var proto = EventEmitter.prototype; - var exports = this; - var originalGlobalValue = exports.EventEmitter; + var exports = {}; + /** * Finds the index of the listener for the event in it's storage array. diff --git a/StockManMVC/Scripts/cldr/supplemental.js b/StockManMVC/Scripts/cldr/supplemental.js index 63b7147..f755a78 100644 --- a/StockManMVC/Scripts/cldr/supplemental.js +++ b/StockManMVC/Scripts/cldr/supplemental.js @@ -1,15 +1,15 @@ /** - * CLDR JavaScript Library v0.4.8 + * CLDR JavaScript Library v0.5.0 * http://jquery.com/ * * Copyright 2013 Rafael Xavier de Souza * Released under the MIT license * http://jquery.org/license * - * Date: 2016-11-26T15:03Z + * Date: 2017-08-11T11:52Z */ /*! - * CLDR JavaScript Library v0.4.8 2016-11-26T15:03Z MIT license © Rafael Xavier + * CLDR JavaScript Library v0.5.0 2017-08-11T11:52Z MIT license © Rafael Xavier * http://git.io/h4lmVg */ (function( factory ) { diff --git a/StockManMVC/Scripts/cldr/unresolved.js b/StockManMVC/Scripts/cldr/unresolved.js index 6083d95..ebf32d0 100644 --- a/StockManMVC/Scripts/cldr/unresolved.js +++ b/StockManMVC/Scripts/cldr/unresolved.js @@ -1,15 +1,15 @@ /** - * CLDR JavaScript Library v0.4.8 + * CLDR JavaScript Library v0.5.0 * http://jquery.com/ * * Copyright 2013 Rafael Xavier de Souza * Released under the MIT license * http://jquery.org/license * - * Date: 2016-11-26T15:03Z + * Date: 2017-08-11T11:52Z */ /*! - * CLDR JavaScript Library v0.4.8 2016-11-26T15:03Z MIT license © Rafael Xavier + * CLDR JavaScript Library v0.5.0 2017-08-11T11:52Z MIT license © Rafael Xavier * http://git.io/h4lmVg */ (function( factory ) { @@ -99,20 +99,20 @@ // 1: Due to #16, never use the cached resolved non-leaf nodes. It may not // represent its leafs in its entirety. value = resourceGet( Cldr._resolved, normalizedPath ); - if ( value && typeof value !== "object" /* 1 */ ) { + if ( value !== undefined && typeof value !== "object" /* 1 */ ) { return value; } // Check raw data value = resourceGet( Cldr._raw, normalizedPath ); - if ( !value ) { + if ( value === undefined ) { // Or, lookup at parent locale parent = bundleParentLookup( Cldr, locale ); value = lookup( Cldr, parent, path, jsonMerge( attributes, { bundle: parent }), locale ); } - if ( value ) { + if ( value !== undefined ) { // Set resolved (cached) resourceSet( Cldr._resolved, normalizedPath, value ); } diff --git a/StockManMVC/StockManMVC.csproj b/StockManMVC/StockManMVC.csproj index 3b4589a..cc8addd 100644 --- a/StockManMVC/StockManMVC.csproj +++ b/StockManMVC/StockManMVC.csproj @@ -1,7 +1,7 @@  - - + + Debug @@ -80,9 +80,8 @@ ..\packages\Glimpse.Mvc5.1.5.3\lib\net45\Glimpse.Mvc5.dll True - - ..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.2\lib\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll - True + + ..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.7\lib\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll @@ -473,11 +472,11 @@ + - @@ -692,13 +691,6 @@ - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - @@ -722,4 +714,11 @@ + + + Questo progetto fa riferimento a uno o più pacchetti NuGet che non sono presenti in questo computer. Usare lo strumento di ripristino dei pacchetti NuGet per scaricarli. Per altre informazioni, vedere http://go.microsoft.com/fwlink/?LinkID=322105. Il file mancante è {0}. + + + + \ No newline at end of file diff --git a/StockManMVC/Web.config b/StockManMVC/Web.config index 733e7c4..d51103f 100644 --- a/StockManMVC/Web.config +++ b/StockManMVC/Web.config @@ -112,8 +112,8 @@ - - + + \ No newline at end of file diff --git a/StockManMVC/bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll b/StockManMVC/bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll index c23b1c4..42e3638 100644 Binary files a/StockManMVC/bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll and b/StockManMVC/bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll differ diff --git a/StockManMVC/bin/StockManMVC.dll b/StockManMVC/bin/StockManMVC.dll index 0b03d1d..ad592e7 100644 Binary files a/StockManMVC/bin/StockManMVC.dll and b/StockManMVC/bin/StockManMVC.dll differ diff --git a/StockManMVC/bin/StockManMVC.dll.config b/StockManMVC/bin/StockManMVC.dll.config index 733e7c4..d51103f 100644 --- a/StockManMVC/bin/StockManMVC.dll.config +++ b/StockManMVC/bin/StockManMVC.dll.config @@ -112,8 +112,8 @@ - - + + \ No newline at end of file diff --git a/StockManMVC/bin/roslyn/Microsoft.Build.Tasks.CodeAnalysis.dll b/StockManMVC/bin/roslyn/Microsoft.Build.Tasks.CodeAnalysis.dll index 2fd00f1..220bd22 100644 Binary files a/StockManMVC/bin/roslyn/Microsoft.Build.Tasks.CodeAnalysis.dll and b/StockManMVC/bin/roslyn/Microsoft.Build.Tasks.CodeAnalysis.dll differ diff --git a/StockManMVC/bin/roslyn/Microsoft.CSharp.Core.targets b/StockManMVC/bin/roslyn/Microsoft.CSharp.Core.targets index faeeafe..885d32a 100644 --- a/StockManMVC/bin/roslyn/Microsoft.CSharp.Core.targets +++ b/StockManMVC/bin/roslyn/Microsoft.CSharp.Core.targets @@ -1,27 +1,42 @@ - - + + + + + + + + + + + DependsOnTargets="$(CoreCompileDependsOn)"> @@ -31,22 +46,22 @@ - $(NoWarn);2008 + $(NoWarn);2008 - - - - + + + + - $(AppConfig) + $(AppConfig) - $(IntermediateOutputPath)$(TargetName).compile.pdb + $(IntermediateOutputPath)$(TargetName).compile.pdb @@ -54,6 +69,8 @@ false + @@ -64,75 +81,78 @@ - + @@ -140,6 +160,6 @@ <_CoreCompileResourceInputs Remove="@(_CoreCompileResourceInputs)" /> - + - + \ No newline at end of file diff --git a/StockManMVC/bin/roslyn/Microsoft.CodeAnalysis.CSharp.Scripting.dll b/StockManMVC/bin/roslyn/Microsoft.CodeAnalysis.CSharp.Scripting.dll index 3c8176d..26c8511 100644 Binary files a/StockManMVC/bin/roslyn/Microsoft.CodeAnalysis.CSharp.Scripting.dll and b/StockManMVC/bin/roslyn/Microsoft.CodeAnalysis.CSharp.Scripting.dll differ diff --git a/StockManMVC/bin/roslyn/Microsoft.CodeAnalysis.CSharp.dll b/StockManMVC/bin/roslyn/Microsoft.CodeAnalysis.CSharp.dll index 20ab202..f95ba4f 100644 Binary files a/StockManMVC/bin/roslyn/Microsoft.CodeAnalysis.CSharp.dll and b/StockManMVC/bin/roslyn/Microsoft.CodeAnalysis.CSharp.dll differ diff --git a/StockManMVC/bin/roslyn/Microsoft.CodeAnalysis.Scripting.dll b/StockManMVC/bin/roslyn/Microsoft.CodeAnalysis.Scripting.dll index ef574bb..f6a4010 100644 Binary files a/StockManMVC/bin/roslyn/Microsoft.CodeAnalysis.Scripting.dll and b/StockManMVC/bin/roslyn/Microsoft.CodeAnalysis.Scripting.dll differ diff --git a/StockManMVC/bin/roslyn/Microsoft.CodeAnalysis.VisualBasic.dll b/StockManMVC/bin/roslyn/Microsoft.CodeAnalysis.VisualBasic.dll index c101e41..bc12eda 100644 Binary files a/StockManMVC/bin/roslyn/Microsoft.CodeAnalysis.VisualBasic.dll and b/StockManMVC/bin/roslyn/Microsoft.CodeAnalysis.VisualBasic.dll differ diff --git a/StockManMVC/bin/roslyn/Microsoft.CodeAnalysis.dll b/StockManMVC/bin/roslyn/Microsoft.CodeAnalysis.dll index c7d4fb8..860ad63 100644 Binary files a/StockManMVC/bin/roslyn/Microsoft.CodeAnalysis.dll and b/StockManMVC/bin/roslyn/Microsoft.CodeAnalysis.dll differ diff --git a/StockManMVC/bin/roslyn/Microsoft.DiaSymReader.Native.amd64.dll b/StockManMVC/bin/roslyn/Microsoft.DiaSymReader.Native.amd64.dll index 42e0830..d5ee45e 100644 Binary files a/StockManMVC/bin/roslyn/Microsoft.DiaSymReader.Native.amd64.dll and b/StockManMVC/bin/roslyn/Microsoft.DiaSymReader.Native.amd64.dll differ diff --git a/StockManMVC/bin/roslyn/Microsoft.DiaSymReader.Native.x86.dll b/StockManMVC/bin/roslyn/Microsoft.DiaSymReader.Native.x86.dll index d8d752d..8625ad1 100644 Binary files a/StockManMVC/bin/roslyn/Microsoft.DiaSymReader.Native.x86.dll and b/StockManMVC/bin/roslyn/Microsoft.DiaSymReader.Native.x86.dll differ diff --git a/StockManMVC/bin/roslyn/Microsoft.VisualBasic.Core.targets b/StockManMVC/bin/roslyn/Microsoft.VisualBasic.Core.targets index 949748e..89249ef 100644 --- a/StockManMVC/bin/roslyn/Microsoft.VisualBasic.Core.targets +++ b/StockManMVC/bin/roslyn/Microsoft.VisualBasic.Core.targets @@ -1,41 +1,56 @@ - - + + + + + + + + + + + DependsOnTargets="$(CoreCompileDependsOn)"> - <_NoWarnings Condition=" '$(WarningLevel)' == '0' ">true - <_NoWarnings Condition=" '$(WarningLevel)' == '1' ">false + <_NoWarnings Condition="'$(WarningLevel)' == '0'">true + <_NoWarnings Condition="'$(WarningLevel)' == '1'">false - $(IntermediateOutputPath)$(TargetName).compile.pdb + $(IntermediateOutputPath)$(TargetName).compile.pdb - - - - + + + + @@ -43,6 +58,8 @@ false + @@ -53,90 +70,93 @@ - + <_CoreCompileResourceInputs Remove="@(_CoreCompileResourceInputs)" /> - + - + \ No newline at end of file diff --git a/StockManMVC/bin/roslyn/System.Collections.Immutable.dll b/StockManMVC/bin/roslyn/System.Collections.Immutable.dll index 6fc2d69..ce6fc0e 100644 Binary files a/StockManMVC/bin/roslyn/System.Collections.Immutable.dll and b/StockManMVC/bin/roslyn/System.Collections.Immutable.dll differ diff --git a/StockManMVC/bin/roslyn/System.Diagnostics.StackTrace.dll b/StockManMVC/bin/roslyn/System.Diagnostics.StackTrace.dll index 2edee66..5ec85f3 100644 Binary files a/StockManMVC/bin/roslyn/System.Diagnostics.StackTrace.dll and b/StockManMVC/bin/roslyn/System.Diagnostics.StackTrace.dll differ diff --git a/StockManMVC/bin/roslyn/System.IO.FileSystem.Primitives.dll b/StockManMVC/bin/roslyn/System.IO.FileSystem.Primitives.dll index c2273cf..ad9c238 100644 Binary files a/StockManMVC/bin/roslyn/System.IO.FileSystem.Primitives.dll and b/StockManMVC/bin/roslyn/System.IO.FileSystem.Primitives.dll differ diff --git a/StockManMVC/bin/roslyn/System.IO.FileSystem.dll b/StockManMVC/bin/roslyn/System.IO.FileSystem.dll index 62e14c6..7c43977 100644 Binary files a/StockManMVC/bin/roslyn/System.IO.FileSystem.dll and b/StockManMVC/bin/roslyn/System.IO.FileSystem.dll differ diff --git a/StockManMVC/bin/roslyn/System.Reflection.Metadata.dll b/StockManMVC/bin/roslyn/System.Reflection.Metadata.dll index 1c97714..ee68731 100644 Binary files a/StockManMVC/bin/roslyn/System.Reflection.Metadata.dll and b/StockManMVC/bin/roslyn/System.Reflection.Metadata.dll differ diff --git a/StockManMVC/bin/roslyn/VBCSCompiler.exe b/StockManMVC/bin/roslyn/VBCSCompiler.exe index 3aa8e11..e225aae 100644 Binary files a/StockManMVC/bin/roslyn/VBCSCompiler.exe and b/StockManMVC/bin/roslyn/VBCSCompiler.exe differ diff --git a/StockManMVC/bin/roslyn/VBCSCompiler.exe.config b/StockManMVC/bin/roslyn/VBCSCompiler.exe.config index 6a1235f..f0d9411 100644 --- a/StockManMVC/bin/roslyn/VBCSCompiler.exe.config +++ b/StockManMVC/bin/roslyn/VBCSCompiler.exe.config @@ -1,36 +1,142 @@ - + - + + + - - + + - + + + - + + + - + + + - - + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + \ No newline at end of file diff --git a/StockManMVC/bin/roslyn/csc.exe b/StockManMVC/bin/roslyn/csc.exe index 7077f16..5278855 100644 Binary files a/StockManMVC/bin/roslyn/csc.exe and b/StockManMVC/bin/roslyn/csc.exe differ diff --git a/StockManMVC/bin/roslyn/csc.exe.config b/StockManMVC/bin/roslyn/csc.exe.config index 21681d9..f768ff4 100644 --- a/StockManMVC/bin/roslyn/csc.exe.config +++ b/StockManMVC/bin/roslyn/csc.exe.config @@ -1,31 +1,137 @@ - + - + + + - + - + + + - + + + - + + + - - + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + \ No newline at end of file diff --git a/StockManMVC/bin/roslyn/csi.exe b/StockManMVC/bin/roslyn/csi.exe index 4174a21..93b234e 100644 Binary files a/StockManMVC/bin/roslyn/csi.exe and b/StockManMVC/bin/roslyn/csi.exe differ diff --git a/StockManMVC/bin/roslyn/csi.rsp b/StockManMVC/bin/roslyn/csi.rsp index 96e81d8..2ec6fc9 100644 --- a/StockManMVC/bin/roslyn/csi.rsp +++ b/StockManMVC/bin/roslyn/csi.rsp @@ -1,6 +1,7 @@ /r:System /r:System.Core /r:Microsoft.CSharp +/r:System.ValueTuple.dll /u:System /u:System.IO /u:System.Collections.Generic diff --git a/StockManMVC/bin/roslyn/vbc.exe b/StockManMVC/bin/roslyn/vbc.exe index 3454d6a..8b69249 100644 Binary files a/StockManMVC/bin/roslyn/vbc.exe and b/StockManMVC/bin/roslyn/vbc.exe differ diff --git a/StockManMVC/bin/roslyn/vbc.exe.config b/StockManMVC/bin/roslyn/vbc.exe.config index 21681d9..f768ff4 100644 --- a/StockManMVC/bin/roslyn/vbc.exe.config +++ b/StockManMVC/bin/roslyn/vbc.exe.config @@ -1,31 +1,137 @@ - + - + + + - + - + + + - + + + - + + + - - + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + \ No newline at end of file diff --git a/StockManMVC/packages.config b/StockManMVC/packages.config index ee0a96f..dda9401 100644 --- a/StockManMVC/packages.config +++ b/StockManMVC/packages.config @@ -3,7 +3,7 @@ - + @@ -20,9 +20,9 @@ - + - +