diff --git a/ETS-WS/ETS-WS.suo b/ETS-WS/ETS-WS.suo index a6f203d..371672d 100644 Binary files a/ETS-WS/ETS-WS.suo and b/ETS-WS/ETS-WS.suo differ diff --git a/ETS-WS/ETS-WS/Default.aspx.cs b/ETS-WS/ETS-WS/Default.aspx.cs index 8617944..093a61f 100644 --- a/ETS-WS/ETS-WS/Default.aspx.cs +++ b/ETS-WS/ETS-WS/Default.aspx.cs @@ -14,7 +14,7 @@ namespace ETS_WS { Logger lg = LogManager.GetCurrentClassLogger(); lg.Info("User login"); - Response.Redirect("~/protocollo.aspx"); + Response.Redirect("~/GestioneDocumenti.aspx"); } } } \ No newline at end of file diff --git a/ETS-WS/ETS-WS/ETS-WS.csproj b/ETS-WS/ETS-WS/ETS-WS.csproj index 51abf38..9e1c371 100644 --- a/ETS-WS/ETS-WS/ETS-WS.csproj +++ b/ETS-WS/ETS-WS/ETS-WS.csproj @@ -83,11 +83,16 @@ + + + + + @@ -155,8 +160,11 @@ Web.config + + + @@ -175,6 +183,13 @@ demoUpload.aspx + + GestioneDocumenti.aspx + ASPXCodeBehind + + + GestioneDocumenti.aspx + protocollo.aspx @@ -204,6 +219,20 @@ mod_fileInOut.ascx + + mod_gestioneDati.ascx + ASPXCodeBehind + + + mod_gestioneDati.ascx + + + mod_gestioneDocumenti.ascx + ASPXCodeBehind + + + mod_gestioneDocumenti.ascx + mod_inputDati.ascx ASPXCodeBehind @@ -218,6 +247,13 @@ mod_menuBottomFullpage.ascx + + mod_testata.ascx + ASPXCodeBehind + + + mod_testata.ascx + mod_testataProt.ascx ASPXCodeBehind diff --git a/ETS-WS/ETS-WS/GestioneDocumenti.aspx b/ETS-WS/ETS-WS/GestioneDocumenti.aspx new file mode 100644 index 0000000..d7f7bb9 --- /dev/null +++ b/ETS-WS/ETS-WS/GestioneDocumenti.aspx @@ -0,0 +1,18 @@ +<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/AjaxSimpleFull.Master" + AutoEventWireup="true" CodeBehind="GestioneDocumenti.aspx.cs" Inherits="ETS_WS.GestioneDocumenti" %> + +<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %> +<%@ Register Src="WebUserControls/mod_gestioneDocumenti.ascx" TagName="mod_gestioneDocumenti" + TagPrefix="uc1" %> +<%@ Register Src="WebUserControls/mod_gestioneDati.ascx" TagName="mod_gestioneDati" + TagPrefix="uc2" %> + +
+ +
+
+
+ +
+
+
diff --git a/ETS-WS/ETS-WS/GestioneDocumenti.aspx.cs b/ETS-WS/ETS-WS/GestioneDocumenti.aspx.cs new file mode 100644 index 0000000..0b55605 --- /dev/null +++ b/ETS-WS/ETS-WS/GestioneDocumenti.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 ETS_WS +{ + public partial class GestioneDocumenti : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + + } + } +} \ No newline at end of file diff --git a/ETS-WS/ETS-WS/GestioneDocumenti.aspx.designer.cs b/ETS-WS/ETS-WS/GestioneDocumenti.aspx.designer.cs new file mode 100644 index 0000000..dc755f5 --- /dev/null +++ b/ETS-WS/ETS-WS/GestioneDocumenti.aspx.designer.cs @@ -0,0 +1,33 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace ETS_WS { + + + public partial class GestioneDocumenti { + + /// + /// mod_gestioneDati1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::ETS_WS.WebUserControls.mod_gestioneDati mod_gestioneDati1; + + /// + /// mod_gestioneDocumenti1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::ETS_WS.WebUserControls.mod_gestioneDocumenti mod_gestioneDocumenti1; + } +} diff --git a/ETS-WS/ETS-WS/Web.config b/ETS-WS/ETS-WS/Web.config index 3d4834b..4d9d737 100644 --- a/ETS-WS/ETS-WS/Web.config +++ b/ETS-WS/ETS-WS/Web.config @@ -27,8 +27,8 @@ - - + + diff --git a/ETS-WS/ETS-WS/WebMasterPages/AjaxSimpleFull.Master b/ETS-WS/ETS-WS/WebMasterPages/AjaxSimpleFull.Master index 6686090..0570ade 100644 --- a/ETS-WS/ETS-WS/WebMasterPages/AjaxSimpleFull.Master +++ b/ETS-WS/ETS-WS/WebMasterPages/AjaxSimpleFull.Master @@ -2,6 +2,7 @@ Inherits="GMW.WebMasterPages.AjaxSimpleFull" %> <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %> +<%@ Register Src="../WebUserControls/mod_testata.ascx" TagName="mod_testata" TagPrefix="uc1" %> <%@ Register Src="../WebUserControls/mod_menuBottomFullpage.ascx" TagName="mod_menuBottomFullpage" TagPrefix="uc2" %> @@ -20,9 +21,16 @@
- - -
+ <%--testata pagina--%> +
+ +
+
+ + +
+ <%--footer pagina--%> +
diff --git a/ETS-WS/ETS-WS/WebMasterPages/AjaxSimpleFull.Master.designer.cs b/ETS-WS/ETS-WS/WebMasterPages/AjaxSimpleFull.Master.designer.cs index 61a2771..72283dc 100644 --- a/ETS-WS/ETS-WS/WebMasterPages/AjaxSimpleFull.Master.designer.cs +++ b/ETS-WS/ETS-WS/WebMasterPages/AjaxSimpleFull.Master.designer.cs @@ -48,6 +48,15 @@ namespace GMW.WebMasterPages { /// protected global::System.Web.UI.UpdatePanel updPanelPagina; + /// + /// mod_testata1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::ETS_WS.WebUserControls.mod_testata mod_testata1; + /// /// ContentPlaceHolder1 control. /// diff --git a/ETS-WS/ETS-WS/WebUserControls/mod_gestioneDati.ascx b/ETS-WS/ETS-WS/WebUserControls/mod_gestioneDati.ascx new file mode 100644 index 0000000..9502ab0 --- /dev/null +++ b/ETS-WS/ETS-WS/WebUserControls/mod_gestioneDati.ascx @@ -0,0 +1,16 @@ +<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_gestioneDati.ascx.cs" + Inherits="ETS_WS.WebUserControls.mod_gestioneDati" %> +<%@ Register Src="mod_testataProt.ascx" TagName="mod_testataProt" + TagPrefix="uc1" %> +<%@ Register Src="mod_inputDati.ascx" TagName="mod_inputDati" TagPrefix="uc2" %> +<%--container principale--%> +
+ <%--testata protocollo--%> +
+ +
+ <%--input dati--%> +
+ +
+
diff --git a/ETS-WS/ETS-WS/WebUserControls/mod_gestioneDati.ascx.cs b/ETS-WS/ETS-WS/WebUserControls/mod_gestioneDati.ascx.cs new file mode 100644 index 0000000..553c8f7 --- /dev/null +++ b/ETS-WS/ETS-WS/WebUserControls/mod_gestioneDati.ascx.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 ETS_WS.WebUserControls +{ + public partial class mod_gestioneDati : System.Web.UI.UserControl + { + protected void Page_Load(object sender, EventArgs e) + { + + } + } +} \ No newline at end of file diff --git a/ETS-WS/ETS-WS/WebUserControls/mod_gestioneDati.ascx.designer.cs b/ETS-WS/ETS-WS/WebUserControls/mod_gestioneDati.ascx.designer.cs new file mode 100644 index 0000000..02a271c --- /dev/null +++ b/ETS-WS/ETS-WS/WebUserControls/mod_gestioneDati.ascx.designer.cs @@ -0,0 +1,33 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace ETS_WS.WebUserControls { + + + public partial class mod_gestioneDati { + + /// + /// mod_testataProt1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::ETS_WS.WebUserControls.mod_testataProt mod_testataProt1; + + /// + /// mod_inputDati1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::ETS_WS.WebUserControls.mod_inputDati mod_inputDati1; + } +} diff --git a/ETS-WS/ETS-WS/WebUserControls/mod_gestioneDocumenti.ascx b/ETS-WS/ETS-WS/WebUserControls/mod_gestioneDocumenti.ascx new file mode 100644 index 0000000..d07cfbc --- /dev/null +++ b/ETS-WS/ETS-WS/WebUserControls/mod_gestioneDocumenti.ascx @@ -0,0 +1,23 @@ +<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_gestioneDocumenti.ascx.cs" + Inherits="ETS_WS.WebUserControls.mod_gestioneDocumenti" %> +<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %> +<%@ Register Src="mod_fileInOut.ascx" TagName="mod_fileInOut" TagPrefix="uc1" %> + + + + Gestione Documenti + + + tutti i documenti + + + + My uploads + + + i miei docs temporanei + + + + diff --git a/ETS-WS/ETS-WS/WebUserControls/mod_gestioneDocumenti.ascx.cs b/ETS-WS/ETS-WS/WebUserControls/mod_gestioneDocumenti.ascx.cs new file mode 100644 index 0000000..0b251e7 --- /dev/null +++ b/ETS-WS/ETS-WS/WebUserControls/mod_gestioneDocumenti.ascx.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 ETS_WS.WebUserControls +{ + public partial class mod_gestioneDocumenti : System.Web.UI.UserControl + { + protected void Page_Load(object sender, EventArgs e) + { + + } + } +} \ No newline at end of file diff --git a/ETS-WS/ETS-WS/WebUserControls/mod_gestioneDocumenti.ascx.designer.cs b/ETS-WS/ETS-WS/WebUserControls/mod_gestioneDocumenti.ascx.designer.cs new file mode 100644 index 0000000..61d77df --- /dev/null +++ b/ETS-WS/ETS-WS/WebUserControls/mod_gestioneDocumenti.ascx.designer.cs @@ -0,0 +1,51 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace ETS_WS.WebUserControls { + + + public partial class mod_gestioneDocumenti { + + /// + /// tcDocumenti control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::AjaxControlToolkit.TabContainer tcDocumenti; + + /// + /// tblDocumenti control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::AjaxControlToolkit.TabPanel tblDocumenti; + + /// + /// tblMyDocs control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::AjaxControlToolkit.TabPanel tblMyDocs; + + /// + /// mod_fileInOut1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::ETS_WS.WebUserControls.mod_fileInOut mod_fileInOut1; + } +} diff --git a/ETS-WS/ETS-WS/WebUserControls/mod_testata.ascx b/ETS-WS/ETS-WS/WebUserControls/mod_testata.ascx new file mode 100644 index 0000000..4d1ac6b --- /dev/null +++ b/ETS-WS/ETS-WS/WebUserControls/mod_testata.ascx @@ -0,0 +1,21 @@ +<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_testata.ascx.cs" + Inherits="ETS_WS.WebUserControls.mod_testata" %> +<% if (false) + { %> + + + + + +<% } %> +
+
+ +
+
+ +
+
+ ETS-WebScip +
+
diff --git a/ETS-WS/ETS-WS/WebUserControls/mod_testata.ascx.cs b/ETS-WS/ETS-WS/WebUserControls/mod_testata.ascx.cs new file mode 100644 index 0000000..f996005 --- /dev/null +++ b/ETS-WS/ETS-WS/WebUserControls/mod_testata.ascx.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace ETS_WS.WebUserControls +{ + public partial class mod_testata : System.Web.UI.UserControl + { + protected void Page_Load(object sender, EventArgs e) + { + lblUser.Text = "Utente..."; + lblDataOra.Text = DateTime.Now.ToString("dd-MM-yyyy HH:mm:ss"); + } + } +} \ No newline at end of file diff --git a/ETS-WS/ETS-WS/WebUserControls/mod_testata.ascx.designer.cs b/ETS-WS/ETS-WS/WebUserControls/mod_testata.ascx.designer.cs new file mode 100644 index 0000000..5cd3fda --- /dev/null +++ b/ETS-WS/ETS-WS/WebUserControls/mod_testata.ascx.designer.cs @@ -0,0 +1,33 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace ETS_WS.WebUserControls { + + + public partial class mod_testata { + + /// + /// lblUser control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label lblUser; + + /// + /// lblDataOra control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label lblDataOra; + } +} diff --git a/ETS-WS/ETS-WS/bin/ETS-WS.dll b/ETS-WS/ETS-WS/bin/ETS-WS.dll index 59f9f29..b061fdc 100644 Binary files a/ETS-WS/ETS-WS/bin/ETS-WS.dll and b/ETS-WS/ETS-WS/bin/ETS-WS.dll differ diff --git a/ETS-WS/ETS-WS/bin/ETS_Data.dll b/ETS-WS/ETS-WS/bin/ETS_Data.dll index 149a018..e7ae40e 100644 Binary files a/ETS-WS/ETS-WS/bin/ETS_Data.dll and b/ETS-WS/ETS-WS/bin/ETS_Data.dll differ diff --git a/ETS-WS/ETS-WS/bin/css/BuildBlocks.css b/ETS-WS/ETS-WS/bin/css/BuildBlocks.css index 2ac658e..c486b4c 100644 --- a/ETS-WS/ETS-WS/bin/css/BuildBlocks.css +++ b/ETS-WS/ETS-WS/bin/css/BuildBlocks.css @@ -58,6 +58,10 @@ { font-size: 16pt; } +.fontPiccolo +{ + font-size: 8pt; +} .labelInput { font-size: 9pt; diff --git a/ETS-WS/ETS-WS/bin/css/ETS.css b/ETS-WS/ETS-WS/bin/css/ETS.css index 5f28270..caed68c 100644 --- a/ETS-WS/ETS-WS/bin/css/ETS.css +++ b/ETS-WS/ETS-WS/bin/css/ETS.css @@ -1 +1,6 @@ - \ No newline at end of file +.areaTitolo +{ + background-image: url('../images/bg-menu-main.png'); + background-repeat: repeat-x; + color: #ECECEC; +} diff --git a/ETS-WS/ETS-WS/css/BuildBlocks.css b/ETS-WS/ETS-WS/css/BuildBlocks.css index 2ac658e..c486b4c 100644 --- a/ETS-WS/ETS-WS/css/BuildBlocks.css +++ b/ETS-WS/ETS-WS/css/BuildBlocks.css @@ -58,6 +58,10 @@ { font-size: 16pt; } +.fontPiccolo +{ + font-size: 8pt; +} .labelInput { font-size: 9pt; diff --git a/ETS-WS/ETS-WS/css/ETS.css b/ETS-WS/ETS-WS/css/ETS.css index 5f28270..caed68c 100644 --- a/ETS-WS/ETS-WS/css/ETS.css +++ b/ETS-WS/ETS-WS/css/ETS.css @@ -1 +1,6 @@ - \ No newline at end of file +.areaTitolo +{ + background-image: url('../images/bg-menu-main.png'); + background-repeat: repeat-x; + color: #ECECEC; +} diff --git a/ETS-WS/ETS-WS/images/bg-menu-main.png b/ETS-WS/ETS-WS/images/bg-menu-main.png new file mode 100644 index 0000000..5ff3c91 Binary files /dev/null and b/ETS-WS/ETS-WS/images/bg-menu-main.png differ diff --git a/ETS-WS/ETS-WS/images/bg_bright.jpg b/ETS-WS/ETS-WS/images/bg_bright.jpg new file mode 100644 index 0000000..e472ee3 Binary files /dev/null and b/ETS-WS/ETS-WS/images/bg_bright.jpg differ diff --git a/ETS-WS/ETS-WS/images/bg_dark.jpg b/ETS-WS/ETS-WS/images/bg_dark.jpg new file mode 100644 index 0000000..8f2f235 Binary files /dev/null and b/ETS-WS/ETS-WS/images/bg_dark.jpg differ diff --git a/ETS-WS/ETS-WS/images/bluGrad32.png b/ETS-WS/ETS-WS/images/bluGrad32.png new file mode 100644 index 0000000..e6afd89 Binary files /dev/null and b/ETS-WS/ETS-WS/images/bluGrad32.png differ diff --git a/ETS-WS/ETS-WS/obj/Release/CSAutoParameterize.parameters.xml b/ETS-WS/ETS-WS/obj/Release/CSAutoParameterize.parameters.xml index 65ad795..a7ac116 100644 --- a/ETS-WS/ETS-WS/obj/Release/CSAutoParameterize.parameters.xml +++ b/ETS-WS/ETS-WS/obj/Release/CSAutoParameterize.parameters.xml @@ -1,2 +1,6 @@  - \ No newline at end of file + + + + + \ No newline at end of file diff --git a/ETS-WS/ETS-WS/obj/Release/CSAutoParameterize/original/Web.config b/ETS-WS/ETS-WS/obj/Release/CSAutoParameterize/original/Web.config index d9d94fb..fcfff15 100644 --- a/ETS-WS/ETS-WS/obj/Release/CSAutoParameterize/original/Web.config +++ b/ETS-WS/ETS-WS/obj/Release/CSAutoParameterize/original/Web.config @@ -17,8 +17,10 @@ + + @@ -26,11 +28,20 @@ - + + + + + + + + diff --git a/ETS-WS/ETS-WS/obj/Release/CSAutoParameterize/transformed/Web.config b/ETS-WS/ETS-WS/obj/Release/CSAutoParameterize/transformed/Web.config index d9d94fb..d2baae5 100644 --- a/ETS-WS/ETS-WS/obj/Release/CSAutoParameterize/transformed/Web.config +++ b/ETS-WS/ETS-WS/obj/Release/CSAutoParameterize/transformed/Web.config @@ -17,8 +17,10 @@ + + @@ -26,11 +28,20 @@ - + + + + + + + + diff --git a/ETS-WS/ETS-WS/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/ETS-WS/ETS-WS/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache index cce48e3..cd763a7 100644 Binary files a/ETS-WS/ETS-WS/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache and b/ETS-WS/ETS-WS/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/ETS-WS/ETS-WS/obj/Release/ETS-WS.csprojResolveAssemblyReference.cache b/ETS-WS/ETS-WS/obj/Release/ETS-WS.csprojResolveAssemblyReference.cache index 98dcf38..f35f0e7 100644 Binary files a/ETS-WS/ETS-WS/obj/Release/ETS-WS.csprojResolveAssemblyReference.cache and b/ETS-WS/ETS-WS/obj/Release/ETS-WS.csprojResolveAssemblyReference.cache differ diff --git a/ETS-WS/ETS-WS/obj/Release/ETS-WS.dll b/ETS-WS/ETS-WS/obj/Release/ETS-WS.dll index 1db2723..b061fdc 100644 Binary files a/ETS-WS/ETS-WS/obj/Release/ETS-WS.dll and b/ETS-WS/ETS-WS/obj/Release/ETS-WS.dll differ diff --git a/ETS-WS/ETS-WS/obj/Release/Package/ETS-WS.SourceManifest.xml b/ETS-WS/ETS-WS/obj/Release/Package/ETS-WS.SourceManifest.xml index d10e556..9767078 100644 --- a/ETS-WS/ETS-WS/obj/Release/Package/ETS-WS.SourceManifest.xml +++ b/ETS-WS/ETS-WS/obj/Release/Package/ETS-WS.SourceManifest.xml @@ -1,6 +1,6 @@  - - - + + + \ No newline at end of file diff --git a/ETS-WS/ETS-WS/obj/Release/TransformWebConfig/original/Web.config b/ETS-WS/ETS-WS/obj/Release/TransformWebConfig/original/Web.config index 798604a..3d4834b 100644 --- a/ETS-WS/ETS-WS/obj/Release/TransformWebConfig/original/Web.config +++ b/ETS-WS/ETS-WS/obj/Release/TransformWebConfig/original/Web.config @@ -17,8 +17,10 @@ + + @@ -26,11 +28,20 @@ - + + + + + + + + diff --git a/ETS-WS/ETS-WS/obj/Release/TransformWebConfig/transformed/Web.config b/ETS-WS/ETS-WS/obj/Release/TransformWebConfig/transformed/Web.config index d9d94fb..fcfff15 100644 --- a/ETS-WS/ETS-WS/obj/Release/TransformWebConfig/transformed/Web.config +++ b/ETS-WS/ETS-WS/obj/Release/TransformWebConfig/transformed/Web.config @@ -17,8 +17,10 @@ + + @@ -26,11 +28,20 @@ - + + + + + + + + diff --git a/ETS_Data/bin/Release/ETS_Data.dll b/ETS_Data/bin/Release/ETS_Data.dll index 6de0b7e..e7ae40e 100644 Binary files a/ETS_Data/bin/Release/ETS_Data.dll and b/ETS_Data/bin/Release/ETS_Data.dll differ diff --git a/ETS_Data/obj/Release/ETS_Data.csproj.FileListAbsolute.txt b/ETS_Data/obj/Release/ETS_Data.csproj.FileListAbsolute.txt index 879cbbd..19a9605 100644 --- a/ETS_Data/obj/Release/ETS_Data.csproj.FileListAbsolute.txt +++ b/ETS_Data/obj/Release/ETS_Data.csproj.FileListAbsolute.txt @@ -3,9 +3,8 @@ C:\Users\samuele.STEAMWAREWIN\documents\visual studio 2010\Projects\ETS_Data\bin C:\Users\samuele.STEAMWAREWIN\documents\visual studio 2010\Projects\ETS_Data\obj\Release\ResolveAssemblyReference.cache C:\Users\samuele.STEAMWAREWIN\documents\visual studio 2010\Projects\ETS_Data\obj\Release\ETS_Data.dll C:\Users\samuele.STEAMWAREWIN\documents\visual studio 2010\Projects\ETS_Data\obj\Release\ETS_Data.pdb +C:\Users\samuele\Documents\Visual Studio 2010\Projects\ETS_Data\bin\Release\ETS_Data.dll.config C:\Users\samuele\Documents\Visual Studio 2010\Projects\ETS_Data\bin\Release\ETS_Data.dll C:\Users\samuele\Documents\Visual Studio 2010\Projects\ETS_Data\bin\Release\ETS_Data.pdb C:\Users\samuele\Documents\Visual Studio 2010\Projects\ETS_Data\obj\Release\ETS_Data.dll C:\Users\samuele\Documents\Visual Studio 2010\Projects\ETS_Data\obj\Release\ETS_Data.pdb -C:\Users\samuele\Documents\Visual Studio 2010\Projects\ETS_Data\bin\Release\ETS_Data.dll.config -C:\Users\samuele\Documents\Visual Studio 2010\Projects\ETS_Data\obj\Release\ETS_Data.csprojResolveAssemblyReference.cache diff --git a/ETS_Data/obj/Release/ETS_Data.dll b/ETS_Data/obj/Release/ETS_Data.dll index 6de0b7e..e7ae40e 100644 Binary files a/ETS_Data/obj/Release/ETS_Data.dll and b/ETS_Data/obj/Release/ETS_Data.dll differ diff --git a/ETS_Data/obj/Release/TempPE/DS_applicazione.Designer.cs.dll b/ETS_Data/obj/Release/TempPE/DS_applicazione.Designer.cs.dll index 61c3f41..80d6857 100644 Binary files a/ETS_Data/obj/Release/TempPE/DS_applicazione.Designer.cs.dll and b/ETS_Data/obj/Release/TempPE/DS_applicazione.Designer.cs.dll differ diff --git a/ETS_Data/obj/Release/TempPE/DS_utils.Designer.cs.dll b/ETS_Data/obj/Release/TempPE/DS_utils.Designer.cs.dll index ab6b6e8..df3027a 100644 Binary files a/ETS_Data/obj/Release/TempPE/DS_utils.Designer.cs.dll and b/ETS_Data/obj/Release/TempPE/DS_utils.Designer.cs.dll differ