diff --git a/Lux.Core/docs/Readme.md b/Lux.Core/docs/Readme.md
new file mode 100644
index 00000000..a5aa073f
--- /dev/null
+++ b/Lux.Core/docs/Readme.md
@@ -0,0 +1,6 @@
+# EgwCoreLib.Lux.Core
+
+Lbreria salvata come nuget SDK per definizione dati base per EgalWare's LUX
+
+Necessario per **EgwCoreLib.Lux.Data**
+
diff --git a/Lux.Core/docs/Readme.pdf b/Lux.Core/docs/Readme.pdf
new file mode 100644
index 00000000..133a833c
Binary files /dev/null and b/Lux.Core/docs/Readme.pdf differ
diff --git a/Lux.Data/post-build.ps1 b/Lux.Data/post-build.ps1
deleted file mode 100644
index b2a79931..00000000
--- a/Lux.Data/post-build.ps1
+++ /dev/null
@@ -1,33 +0,0 @@
-param([string]$ProjectDir, [string]$ProjectPath);
-
-$FileVers="..\Resources\VersNum.txt"
-$FileManIn="..\Resources\manifest-original.xml"
-$FileManOut="..\Resources\manifest.xml"
-$FileCLogIn="..\Resources\ChangeLog-original.html"
-$FileCLogOut="..\Resources\ChangeLog.html"
-$MajMin="0.9."
-$currentDate = get-date -format yyMM;
-$currentTime = get-date -format ddHH;
-$find = "(.|\n)*?";
-$currRelNum=$MajMin + $currentDate +"." + $currentTime
-$replace = "" + $MajMin + $currentDate +"." + $currentTime + "";
-$csproj = Get-Content $ProjectPath
-$csprojUpdated = $csproj -replace $find, $replace
-
-Write-Output "post-build.ps1: Update csproj | $currRelNum"
-
-Set-Content -Path $ProjectPath -Value $csprojUpdated
-Set-Content -Path $FileVers -Value $currRelNum
-
-# replace x manifest
-$manData = Get-Content $FileManIn
-$manData = $manData -replace "1.0.0.0", $currRelNum
-$manData = $manData -replace "{{DIRNAME}}", "GPW"
-$manData = $manData -replace "{{BRANCHNAME}}", "stable"
-$manData = $manData -replace "{{PACKNAME}}", "GPW.UI"
-Set-Content -Path $FileManOut -Value $manData
-
-# replace x ChangeLog
-$clogData = Get-Content $FileCLogIn
-$clogData = $clogData -replace "{{CURRENT-REL}}", $currRelNum
-Set-Content -Path $FileCLogOut -Value $clogData