|
@@ -692,8 +678,7 @@
DataSourceID="odsStato" DataTextField="label" DataValueField="value">
-
+ SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selStatoTableAdapter">
|
diff --git a/Projects/WebGIM/GIM_site/WebUserControls/mod_menuBottom.ascx.cs b/Projects/WebGIM/GIM_site/WebUserControls/mod_menuBottom.ascx.cs
index 1882ad9..6a801e0 100644
--- a/Projects/WebGIM/GIM_site/WebUserControls/mod_menuBottom.ascx.cs
+++ b/Projects/WebGIM/GIM_site/WebUserControls/mod_menuBottom.ascx.cs
@@ -8,13 +8,18 @@ using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
+using System.Diagnostics;
public partial class mod_menuBottom : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
// sistemo le stringhe...
- lblApp.Text = string.Format("{0} v.{1}.{2}", ConfigurationManager.AppSettings.Get("appName"), ConfigurationManager.AppSettings.Get("mainRev"), ConfigurationManager.AppSettings.Get("minRev"));
- lblCopyRight.Text = string.Format("{0}-{1}",ConfigurationManager.AppSettings.Get("copyRight"), DateTime.Now.Year);
+ lblApp.Text = string.Format("v.{0}", System.Reflection.Assembly.GetExecutingAssembly().GetName().Version);
+ var versionInfo = FileVersionInfo.GetVersionInfo(System.Reflection.Assembly.GetExecutingAssembly().Location);
+ lblCopyRight.Text = string.Format("{0}", versionInfo.LegalCopyright);
+
+ //lblApp.Text = string.Format("{0} v.{1}.{2}", ConfigurationManager.AppSettings.Get("appName"), ConfigurationManager.AppSettings.Get("mainRev"), ConfigurationManager.AppSettings.Get("minRev"));
+ //lblCopyRight.Text = string.Format("{0}-{1}",ConfigurationManager.AppSettings.Get("copyRight"), DateTime.Now.Year);
}
}
diff --git a/Projects/WebGIM/GIM_site/WebUserControls/mod_tipoRisorsa.ascx b/Projects/WebGIM/GIM_site/WebUserControls/mod_tipoRisorsa.ascx
new file mode 100644
index 0000000..2ae0629
--- /dev/null
+++ b/Projects/WebGIM/GIM_site/WebUserControls/mod_tipoRisorsa.ascx
@@ -0,0 +1,84 @@
+<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_tipoRisorsa.ascx.cs" Inherits="GIM_site.WebUserControls.mod_tipoRisorsa" %>
+<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Projects/WebGIM/GIM_site/WebUserControls/mod_tipoRisorsa.ascx.cs b/Projects/WebGIM/GIM_site/WebUserControls/mod_tipoRisorsa.ascx.cs
new file mode 100644
index 0000000..586f393
--- /dev/null
+++ b/Projects/WebGIM/GIM_site/WebUserControls/mod_tipoRisorsa.ascx.cs
@@ -0,0 +1,89 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+using System.Web.UI;
+using System.Web.UI.WebControls;
+using SteamWare;
+
+namespace GIM_site.WebUserControls
+{
+ public partial class mod_tipoRisorsa : ApplicationUserControl
+ {
+ public event EventHandler eh_resetSelezione;
+ ///
+ /// evento dati associati a controllo
+ ///
+ ///
+ ///
+ protected void grView_DataBound(object sender, EventArgs e)
+ {
+ if (grView.Rows.Count > 0)
+ {
+ LinkButton lb;
+ // aggiorno gli headers
+ foreach (TableCell cella in grView.HeaderRow.Cells)
+ {
+ try
+ {
+ lb = (LinkButton)cella.Controls[0];
+ lb.Text = traduci(lb.Text);
+ }
+ catch
+ { }
+ }
+ int totRecord = grView.Rows.Count + grView.PageSize * (grView.PageCount - 1);
+ lblNumRec.Text = string.Format("{0} records of ~ {1}", grView.Rows.Count, totRecord);
+ }
+ else
+ {
+ lblNumRec.Text = "";
+ }
+ }
+ ///
+ /// reset delle selezioni
+ ///
+ ///
+ ///
+ protected void btnReset_Click(object sender, EventArgs e)
+ {
+ resetSelezione();
+ }
+ ///
+ /// resetta la selezione dei valori in caso di modifiche su altri controlli
+ ///
+ public void resetSelezione()
+ {
+ grView.SelectedIndex = -1;
+ grView.DataBind();
+ if (eh_resetSelezione != null)
+ {
+ eh_resetSelezione(this, new EventArgs());
+ }
+ }
+ ///
+ /// seleziono valore in editing...
+ ///
+ ///
+ ///
+ protected void grView_RowEditing(object sender, GridViewEditEventArgs e)
+ {
+ // seleziono la riga corrente...
+ grView.SelectedIndex = e.NewEditIndex;
+ }
+ ///
+ /// gestione evento inserimento nuovo record standard (se ZERO presenti)
+ ///
+ ///
+ ///
+ protected void btnNewFromEmpty_Click(object sender, EventArgs e)
+ {
+ // reset selezione...
+ resetSelezione();
+ GIM_data.DS_applicazioneTableAdapters.AnagTipoRisorsaTableAdapter taATR = new GIM_data.DS_applicazioneTableAdapters.AnagTipoRisorsaTableAdapter();
+ taATR.insertQuery("--NEW--", "NR", "Description");
+ grView.DataBind();
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/Projects/WebGIM/GIM_site/WebUserControls/mod_tipoRisorsa.ascx.designer.cs b/Projects/WebGIM/GIM_site/WebUserControls/mod_tipoRisorsa.ascx.designer.cs
new file mode 100644
index 0000000..2da210e
--- /dev/null
+++ b/Projects/WebGIM/GIM_site/WebUserControls/mod_tipoRisorsa.ascx.designer.cs
@@ -0,0 +1,42 @@
+//------------------------------------------------------------------------------
+//
+// 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 GIM_site.WebUserControls {
+
+
+ public partial class mod_tipoRisorsa {
+
+ ///
+ /// grView control.
+ ///
+ ///
+ /// Auto-generated field.
+ /// To modify move field declaration from designer file to code-behind file.
+ ///
+ protected global::System.Web.UI.WebControls.GridView grView;
+
+ ///
+ /// lblNumRec control.
+ ///
+ ///
+ /// Auto-generated field.
+ /// To modify move field declaration from designer file to code-behind file.
+ ///
+ protected global::System.Web.UI.WebControls.Label lblNumRec;
+
+ ///
+ /// ods control.
+ ///
+ ///
+ /// Auto-generated field.
+ /// To modify move field declaration from designer file to code-behind file.
+ ///
+ protected global::System.Web.UI.WebControls.ObjectDataSource ods;
+ }
+}
diff --git a/Projects/WebGIM/GIM_site/WebUserControls/mod_vocabolario.ascx b/Projects/WebGIM/GIM_site/WebUserControls/mod_vocabolario.ascx
index 480945e..b02cabc 100644
--- a/Projects/WebGIM/GIM_site/WebUserControls/mod_vocabolario.ascx
+++ b/Projects/WebGIM/GIM_site/WebUserControls/mod_vocabolario.ascx
@@ -1,5 +1,5 @@
<%@ Control Language="C#" AutoEventWireup="true"
- Inherits="mod_vocabolario" Codebehind="mod_vocabolario.ascx.cs" %>
+ Inherits="mod_vocabolario" CodeBehind="mod_vocabolario.ascx.cs" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
@@ -12,19 +12,19 @@
-
+
+ ToolTip='<%# traduci("Cancel") %>' ImageUrl="~/images/cancel_s.png" />
-
+
+ ToolTip='<%# traduci("Edit") %>' ImageUrl="~/images/edit_s.png" />
@@ -57,7 +57,7 @@
+ ToolTip='<%# traduci("Delete") %>' ImageUrl="~/images/elimina_s.png" />
@@ -71,35 +71,29 @@
-
+ FilterExpression="Traduzione LIKE '%{0}%' OR Lemma LIKE '%{0}%' "
+ OnUpdated="ods_Updated" OnInserted="ods_Inserted">
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
|
-
-
-
+
|
diff --git a/Projects/WebGIM/GIM_site/WebUserControls/mod_vocabolario.ascx.cs b/Projects/WebGIM/GIM_site/WebUserControls/mod_vocabolario.ascx.cs
index ec9d032..b33b889 100644
--- a/Projects/WebGIM/GIM_site/WebUserControls/mod_vocabolario.ascx.cs
+++ b/Projects/WebGIM/GIM_site/WebUserControls/mod_vocabolario.ascx.cs
@@ -9,8 +9,9 @@ using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using SteamWare;
+using GIM_data;
-public partial class mod_vocabolario : ApplicationUserControl
+public partial class mod_vocabolario : SteamWare.UserControl
{
#region gestione eventi
@@ -22,12 +23,13 @@ public partial class mod_vocabolario : ApplicationUserControl
#region protected
- protected override void traduciObj()
+ protected void Page_Load()
{
- base.traduciObj();
- btnNewLemma.Text = user_std.UtSn.Traduci("btnNewLemma");
- txtNewLemma.Text = "";
- TBW_newLemma.WatermarkText = user_std.UtSn.Traduci("insertNewLemma");
+ if (!Page.IsPostBack)
+ {
+ btnNewLemma.Text = user_std.UtSn.Traduci("btnNewLemma");
+ txtNewLemma.Text = "";
+ }
}
///
@@ -55,15 +57,23 @@ public partial class mod_vocabolario : ApplicationUserControl
// aggiorno il vocabolario in memoria...
DataWrap.DW.resetVocabolario();
// riparto...
- Response.Redirect(_paginaCorrente);
+ Response.Redirect(user_std.pagCorrente);
}
}
- protected override void aggiornaControlliDataGL()
+ ///
+ /// dimensione pagina grid view
+ ///
+ public int pageSize
{
- base.aggiornaControlliDataGL();
- grView.PageSize = _righeDataGridAnagr;
- ods.DataBind();
+ get
+ {
+ return grView.PageSize;
+ }
+ set
+ {
+ grView.PageSize = value;
+ }
}
protected void grView_DataBound(object sender, EventArgs e)
@@ -83,7 +93,7 @@ public partial class mod_vocabolario : ApplicationUserControl
{ }
}
int totRecord = grView.Rows.Count + grView.PageSize * (grView.PageCount - 1);
- lblNumRec.Text = string.Format("{0} records of ~ {1}", grView.Rows.Count, totRecord);
+ lblNumRec.Text = string.Format("{0} ({1})", grView.Rows.Count, totRecord);
}
else
{
@@ -119,6 +129,7 @@ public partial class mod_vocabolario : ApplicationUserControl
protected void ods_Updated(object sender, ObjectDataSourceStatusEventArgs e)
{
+ DataWrap.DW.resetVocabolario();
selezionatoValore();
}
@@ -141,6 +152,10 @@ public partial class mod_vocabolario : ApplicationUserControl
}
#endregion
-
-}
+ protected void ods_Inserted(object sender, ObjectDataSourceStatusEventArgs e)
+ {
+ DataWrap.DW.resetVocabolario();
+ selezionatoValore();
+ }
+}
\ No newline at end of file
diff --git a/Projects/WebGIM/GIM_site/WebUserControls/mod_vocabolario.ascx.designer.cs b/Projects/WebGIM/GIM_site/WebUserControls/mod_vocabolario.ascx.designer.cs
index e1d042f..bc7c714 100644
--- a/Projects/WebGIM/GIM_site/WebUserControls/mod_vocabolario.ascx.designer.cs
+++ b/Projects/WebGIM/GIM_site/WebUserControls/mod_vocabolario.ascx.designer.cs
@@ -1,10 +1,9 @@
//------------------------------------------------------------------------------
//
// This code was generated by a tool.
-// Runtime Version:2.0.50727.4927
//
// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
+// the code is regenerated.
//
//------------------------------------------------------------------------------
@@ -56,13 +55,4 @@ public partial class mod_vocabolario {
/// To modify move field declaration from designer file to code-behind file.
///
protected global::System.Web.UI.WebControls.TextBox txtNewLemma;
-
- ///
- /// TBW_newLemma control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::AjaxControlToolkit.TextBoxWatermarkExtender TBW_newLemma;
}
diff --git a/Projects/WebGIM/GIM_site/bin/GIM_data.dll b/Projects/WebGIM/GIM_site/bin/GIM_data.dll
index 836fb5a..e1b19b8 100644
Binary files a/Projects/WebGIM/GIM_site/bin/GIM_data.dll and b/Projects/WebGIM/GIM_site/bin/GIM_data.dll differ
diff --git a/Projects/WebGIM/GIM_site/bin/GIM_site.dll b/Projects/WebGIM/GIM_site/bin/GIM_site.dll
index 1f1efca..080eed5 100644
Binary files a/Projects/WebGIM/GIM_site/bin/GIM_site.dll and b/Projects/WebGIM/GIM_site/bin/GIM_site.dll differ
diff --git a/Projects/WebGIM/GIM_site/bin/SteamWare.dll b/Projects/WebGIM/GIM_site/bin/SteamWare.dll
index 51c4904..e339769 100644
Binary files a/Projects/WebGIM/GIM_site/bin/SteamWare.dll and b/Projects/WebGIM/GIM_site/bin/SteamWare.dll differ
diff --git a/Projects/WebGIM/GIM_site/bin/VersGen.dll b/Projects/WebGIM/GIM_site/bin/VersGen.dll
new file mode 100644
index 0000000..8cbb969
Binary files /dev/null and b/Projects/WebGIM/GIM_site/bin/VersGen.dll differ
diff --git a/Projects/WebGIM/GIM_site/obj/Alumat/DesignTimeResolveAssemblyReferencesInput.cache b/Projects/WebGIM/GIM_site/obj/Alumat/DesignTimeResolveAssemblyReferencesInput.cache
index a801899..c1db677 100644
Binary files a/Projects/WebGIM/GIM_site/obj/Alumat/DesignTimeResolveAssemblyReferencesInput.cache and b/Projects/WebGIM/GIM_site/obj/Alumat/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/Projects/WebGIM/GIM_site/obj/Alumat/GIM_site.csproj.FileListAbsolute.txt b/Projects/WebGIM/GIM_site/obj/Alumat/GIM_site.csproj.FileListAbsolute.txt
index 595aa4c..7b673e6 100644
--- a/Projects/WebGIM/GIM_site/obj/Alumat/GIM_site.csproj.FileListAbsolute.txt
+++ b/Projects/WebGIM/GIM_site/obj/Alumat/GIM_site.csproj.FileListAbsolute.txt
@@ -29,3 +29,5 @@ C:\Users\samuele\Documents\Visual Studio 2012\Projects\WebGIM\Projects\WebGIM\GI
C:\Users\samuele\Documents\Visual Studio 2012\Projects\WebGIM\Projects\WebGIM\GIM_site\obj\Alumat\RdlCompile.compiled
C:\Users\samuele\Documents\Visual Studio 2012\Projects\WebGIM\Projects\WebGIM\GIM_site\obj\Alumat\GIM_site.dll
C:\Users\samuele\Documents\Visual Studio 2012\Projects\WebGIM\Projects\WebGIM\GIM_site\obj\Alumat\GIM_site.pdb
+C:\Users\samuele\Documents\Visual Studio 2012\Projects\WebGIM\Projects\WebGIM\GIM_site\bin\VersGen.dll
+C:\Users\samuele\Documents\Visual Studio 2012\Projects\WebGIM\Projects\WebGIM\GIM_site\bin\VersGen.pdb
diff --git a/Projects/WebGIM/GIM_site/obj/Alumat/GIM_site.csprojResolveAssemblyReference.cache b/Projects/WebGIM/GIM_site/obj/Alumat/GIM_site.csprojResolveAssemblyReference.cache
index 652e7e4..3034df0 100644
Binary files a/Projects/WebGIM/GIM_site/obj/Alumat/GIM_site.csprojResolveAssemblyReference.cache and b/Projects/WebGIM/GIM_site/obj/Alumat/GIM_site.csprojResolveAssemblyReference.cache differ
diff --git a/Projects/WebGIM/GIM_site/obj/Alumat/GIM_site.dll b/Projects/WebGIM/GIM_site/obj/Alumat/GIM_site.dll
index 1f1efca..11aa8aa 100644
Binary files a/Projects/WebGIM/GIM_site/obj/Alumat/GIM_site.dll and b/Projects/WebGIM/GIM_site/obj/Alumat/GIM_site.dll differ
diff --git a/Projects/WebGIM/VersGen/Properties/AssemblyInfo.cs b/Projects/WebGIM/VersGen/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..887136f
--- /dev/null
+++ b/Projects/WebGIM/VersGen/Properties/AssemblyInfo.cs
@@ -0,0 +1,36 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("VersGen")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+//[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("VersGen")]
+//[assembly: AssemblyCopyright("Copyright © 2015")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("a5a814af-34cb-46f1-b3ab-518e55468a65")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+//[assembly: AssemblyVersion("1.0.0.0")]
+//[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/Projects/WebGIM/VersGen/VersGen.csproj b/Projects/WebGIM/VersGen/VersGen.csproj
new file mode 100644
index 0000000..f710c2b
--- /dev/null
+++ b/Projects/WebGIM/VersGen/VersGen.csproj
@@ -0,0 +1,65 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {BE594F80-8FC2-45BE-99D1-AEC73F71E41E}
+ Library
+ Properties
+ VersGen
+ VersGen
+ v3.5
+ 512
+
+
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+
+
+
+
+
+
+
+
+
+ True
+ True
+ WebGIM.tt
+
+
+
+
+ TextTemplatingFileGenerator
+ WebGIM.cs
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Projects/WebGIM/VersGen/WebGIM.cs b/Projects/WebGIM/VersGen/WebGIM.cs
new file mode 100644
index 0000000..0945db6
--- /dev/null
+++ b/Projects/WebGIM/VersGen/WebGIM.cs
@@ -0,0 +1,11 @@
+//
+// This code was generated by a tool. Any changes made manually will be lost
+// the next time this code is regenerated.
+//
+
+using System.Reflection;
+
+[assembly: AssemblyVersion("1.3.243.480")]
+[assembly: AssemblyFileVersion("1.3.243.480")]
+[assembly: AssemblyCopyright("Steamware © 2006-2015")]
+[assembly: AssemblyCompany("Steamware")]
diff --git a/Projects/WebGIM/VersGen/WebGIM.tt b/Projects/WebGIM/VersGen/WebGIM.tt
new file mode 100644
index 0000000..71ee4e1
--- /dev/null
+++ b/Projects/WebGIM/VersGen/WebGIM.tt
@@ -0,0 +1,15 @@
+<#@ template language="C#" #>
+//
+// This code was generated by a tool. Any changes made manually will be lost
+// the next time this code is regenerated.
+//
+
+using System.Reflection;
+
+[assembly: AssemblyVersion("1.3.243.<#= this.RevisionNumber #>")]
+[assembly: AssemblyFileVersion("1.3.243.<#= this.RevisionNumber #>")]
+[assembly: AssemblyCopyright("Steamware © 2006-<#= DateTime.Now.Year #>")]
+[assembly: AssemblyCompany("Steamware")]
+<#+
+ int RevisionNumber = (int)(DateTime.UtcNow - new DateTime(2006,1,1)).TotalDays/7;
+#>
\ No newline at end of file
diff --git a/Projects/WebGIM/VersGen/bin/Debug/VersGen.dll b/Projects/WebGIM/VersGen/bin/Debug/VersGen.dll
new file mode 100644
index 0000000..8cbb969
Binary files /dev/null and b/Projects/WebGIM/VersGen/bin/Debug/VersGen.dll differ
diff --git a/Projects/WebGIM/VersGen/bin/Release/VersGen.dll b/Projects/WebGIM/VersGen/bin/Release/VersGen.dll
new file mode 100644
index 0000000..d99a3a8
Binary files /dev/null and b/Projects/WebGIM/VersGen/bin/Release/VersGen.dll differ
diff --git a/Projects/WebGIM/WebGIM.sln b/Projects/WebGIM/WebGIM.sln
index 992e25e..3336773 100644
--- a/Projects/WebGIM/WebGIM.sln
+++ b/Projects/WebGIM/WebGIM.sln
@@ -7,6 +7,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GIM_site", "GIM_site\GIM_si
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GIM_data", "GIM_data\GIM_data.csproj", "{F66427C8-882A-4EF8-B42F-EF142906DC8C}"
EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VersGen", "VersGen\VersGen.csproj", "{BE594F80-8FC2-45BE-99D1-AEC73F71E41E}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Alumat|Any CPU = Alumat|Any CPU
@@ -60,6 +62,20 @@ Global
{F66427C8-882A-4EF8-B42F-EF142906DC8C}.SomaschiniUSA|Any CPU.Build.0 = SomaschiniUSA|Any CPU
{F66427C8-882A-4EF8-B42F-EF142906DC8C}.WinLab|Any CPU.ActiveCfg = WinLab|Any CPU
{F66427C8-882A-4EF8-B42F-EF142906DC8C}.WinLab|Any CPU.Build.0 = WinLab|Any CPU
+ {BE594F80-8FC2-45BE-99D1-AEC73F71E41E}.Alumat|Any CPU.ActiveCfg = Release|Any CPU
+ {BE594F80-8FC2-45BE-99D1-AEC73F71E41E}.Alumat|Any CPU.Build.0 = Release|Any CPU
+ {BE594F80-8FC2-45BE-99D1-AEC73F71E41E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {BE594F80-8FC2-45BE-99D1-AEC73F71E41E}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {BE594F80-8FC2-45BE-99D1-AEC73F71E41E}.IIS02|Any CPU.ActiveCfg = Release|Any CPU
+ {BE594F80-8FC2-45BE-99D1-AEC73F71E41E}.IIS02|Any CPU.Build.0 = Release|Any CPU
+ {BE594F80-8FC2-45BE-99D1-AEC73F71E41E}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {BE594F80-8FC2-45BE-99D1-AEC73F71E41E}.Release|Any CPU.Build.0 = Release|Any CPU
+ {BE594F80-8FC2-45BE-99D1-AEC73F71E41E}.Somaschini|Any CPU.ActiveCfg = Release|Any CPU
+ {BE594F80-8FC2-45BE-99D1-AEC73F71E41E}.Somaschini|Any CPU.Build.0 = Release|Any CPU
+ {BE594F80-8FC2-45BE-99D1-AEC73F71E41E}.SomaschiniUSA|Any CPU.ActiveCfg = Release|Any CPU
+ {BE594F80-8FC2-45BE-99D1-AEC73F71E41E}.SomaschiniUSA|Any CPU.Build.0 = Release|Any CPU
+ {BE594F80-8FC2-45BE-99D1-AEC73F71E41E}.WinLab|Any CPU.ActiveCfg = Release|Any CPU
+ {BE594F80-8FC2-45BE-99D1-AEC73F71E41E}.WinLab|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
|