diff --git a/Jenkinsfile b/Jenkinsfile
index c704a7d..9759497 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -17,7 +17,7 @@ pipeline {
/* calcolo numero versione... diverso x branch MASTER/DEVELOP */
script {
- withEnv(['NEXT_BUILD_NUMBER=166']) {
+ withEnv(['NEXT_BUILD_NUMBER=167']) {
// env.versionNumber = VersionNumber(versionNumberString : '0.7.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2019-07-01', skipFailedBuilds: true)
env.versionNumber = VersionNumber(versionNumberString : '0.7.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2019-07-01', skipFailedBuilds: true, overrideBuildsAllTime: '${NEXT_BUILD_NUMBER}')
env.APP_NAME = 'NKC'
diff --git a/NKC_WF/NKC_WF.csproj b/NKC_WF/NKC_WF.csproj
index 9e6b294..68cf291 100644
--- a/NKC_WF/NKC_WF.csproj
+++ b/NKC_WF/NKC_WF.csproj
@@ -283,6 +283,7 @@
+
@@ -590,6 +591,13 @@
SiteContent.master
+
+ TestAuth.aspx
+ ASPXCodeBehind
+
+
+ TestAuth.aspx
+
StackManager.aspx
ASPXCodeBehind
diff --git a/NKC_WF/Unauth.aspx b/NKC_WF/Unauth.aspx
index 2f6f373..207729e 100644
--- a/NKC_WF/Unauth.aspx
+++ b/NKC_WF/Unauth.aspx
@@ -4,5 +4,9 @@
User Unauthorized
+
+ <%: User.Identity.Name %>
+
+
diff --git a/NKC_WF/Web.config b/NKC_WF/Web.config
index 39b3743..c742818 100644
--- a/NKC_WF/Web.config
+++ b/NKC_WF/Web.config
@@ -397,6 +397,16 @@
-->
+
+
+
+
+
+
+
+
+
+
diff --git a/NKC_WF/site/TestAuth.aspx b/NKC_WF/site/TestAuth.aspx
new file mode 100644
index 0000000..870d7f2
--- /dev/null
+++ b/NKC_WF/site/TestAuth.aspx
@@ -0,0 +1,6 @@
+<%@ Page Title="" Language="C#" MasterPageFile="~/SiteContent.master" AutoEventWireup="true" CodeBehind="TestAuth.aspx.cs" Inherits="NKC_WF.site.TestAuth" %>
+
+ User Auth test
+
+ <%: User.Identity.Name %>
+
diff --git a/NKC_WF/site/TestAuth.aspx.cs b/NKC_WF/site/TestAuth.aspx.cs
new file mode 100644
index 0000000..a4dc21a
--- /dev/null
+++ b/NKC_WF/site/TestAuth.aspx.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+using System.Web.UI;
+using System.Web.UI.WebControls;
+
+namespace NKC_WF.site
+{
+ public partial class TestAuth : System.Web.UI.Page
+ {
+ protected void Page_Load(object sender, EventArgs e)
+ {
+
+ }
+ }
+}
\ No newline at end of file
diff --git a/NKC_WF/site/TestAuth.aspx.designer.cs b/NKC_WF/site/TestAuth.aspx.designer.cs
new file mode 100644
index 0000000..e56e7f8
--- /dev/null
+++ b/NKC_WF/site/TestAuth.aspx.designer.cs
@@ -0,0 +1,17 @@
+//------------------------------------------------------------------------------
+//
+// Codice generato da uno strumento.
+//
+// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se
+// il codice viene rigenerato.
+//
+//------------------------------------------------------------------------------
+
+namespace NKC_WF.site
+{
+
+
+ public partial class TestAuth
+ {
+ }
+}