diff --git a/.gitignore b/.gitignore
index 34d0f34e7..00c69ff67 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,6 +3,7 @@ obj/
/ICSharpCode.Decompiler/Properties/AssemblyInfo.cs
/ILSpy/Properties/AssemblyInfo.cs
+/ILSpy/app.config
*.suo
*.user
/Resharper-ILSpy-Style.xml
diff --git a/BuildTools/UpdateAssemblyInfo/Main.cs b/BuildTools/UpdateAssemblyInfo/Main.cs
index f61a7b470..84df27326 100644
--- a/BuildTools/UpdateAssemblyInfo/Main.cs
+++ b/BuildTools/UpdateAssemblyInfo/Main.cs
@@ -31,6 +31,10 @@ namespace UpdateAssemblyInfo
new TemplateFile {
Input = "ICSharpCode.Decompiler/Properties/AssemblyInfo.template.cs",
Output = "ICSharpCode.Decompiler/Properties/AssemblyInfo.cs"
+ },
+ new TemplateFile {
+ Input = "ILSpy/Properties/app.config.template",
+ Output = "ILSpy/app.config"
}
};
diff --git a/Debugger/Debugger.Core/Debugger.Core.csproj b/Debugger/Debugger.Core/Debugger.Core.csproj
index 5ed5901df..2ebced513 100644
--- a/Debugger/Debugger.Core/Debugger.Core.csproj
+++ b/Debugger/Debugger.Core/Debugger.Core.csproj
@@ -37,8 +37,7 @@
false
true
v4.0
-
-
+ Client
true
diff --git a/Debugger/ILSpy.Debugger/ILSpy.Debugger.csproj b/Debugger/ILSpy.Debugger/ILSpy.Debugger.csproj
index 539d6a68d..6018f627e 100644
--- a/Debugger/ILSpy.Debugger/ILSpy.Debugger.csproj
+++ b/Debugger/ILSpy.Debugger/ILSpy.Debugger.csproj
@@ -9,8 +9,7 @@
ILSpy.Debugger.Plugin
v4.0
Properties
-
-
+ Client
False
False
4
diff --git a/ICSharpCode.Decompiler/ICSharpCode.Decompiler.csproj b/ICSharpCode.Decompiler/ICSharpCode.Decompiler.csproj
index 8a497a8b3..1aa592952 100644
--- a/ICSharpCode.Decompiler/ICSharpCode.Decompiler.csproj
+++ b/ICSharpCode.Decompiler/ICSharpCode.Decompiler.csproj
@@ -14,6 +14,10 @@
False
4
false
+ True
+ ..\NRefactory\ICSharpCode.NRefactory.snk
+ False
+ File
AnyCPU
diff --git a/ILSpy.SharpDevelop.LGPL/ILSpy.SharpDevelop.LGPL.csproj b/ILSpy.SharpDevelop.LGPL/ILSpy.SharpDevelop.LGPL.csproj
index 59ed53f27..c61dc8295 100644
--- a/ILSpy.SharpDevelop.LGPL/ILSpy.SharpDevelop.LGPL.csproj
+++ b/ILSpy.SharpDevelop.LGPL/ILSpy.SharpDevelop.LGPL.csproj
@@ -10,13 +10,16 @@
v4.0
Properties
6881280
- False
+ True
False
OnBuildSuccess
False
False
4
false
+ Client
+ ..\NRefactory\ICSharpCode.NRefactory.snk
+ File
bin\Debug\
diff --git a/ILSpy.SharpDevelop.LGPL/Properties/AssemblyInfo.cs b/ILSpy.SharpDevelop.LGPL/Properties/AssemblyInfo.cs
index edada9d2e..35911449b 100644
--- a/ILSpy.SharpDevelop.LGPL/Properties/AssemblyInfo.cs
+++ b/ILSpy.SharpDevelop.LGPL/Properties/AssemblyInfo.cs
@@ -28,4 +28,4 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can use the default the Revision and
// Build Numbers by using the '*' as shown below:
-[assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("2.0.0.0")]
diff --git a/ILSpy.sln b/ILSpy.sln
index 6d1016af6..7ec42f0d8 100644
--- a/ILSpy.sln
+++ b/ILSpy.sln
@@ -1,7 +1,7 @@
Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
-# SharpDevelop 4.2.0.7998-alpha
+# SharpDevelop 4.2.0.8200-alpha
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "doc", "doc", "{F45DB999-7E72-4000-B5AD-3A7B485A0896}"
ProjectSection(SolutionItems) = postProject
doc\Command Line.txt = doc\Command Line.txt
diff --git a/ILSpy/ILSpy.csproj b/ILSpy/ILSpy.csproj
index 1a80781fc..ec7725d5b 100644
--- a/ILSpy/ILSpy.csproj
+++ b/ILSpy/ILSpy.csproj
@@ -18,6 +18,10 @@
Images\ILSpy.ico
False
/separate
+ True
+ ..\NRefactory\ICSharpCode.NRefactory.snk
+ False
+ File
x86
@@ -224,6 +228,7 @@
+
diff --git a/ILSpy/Properties/app.config.template b/ILSpy/Properties/app.config.template
new file mode 100644
index 000000000..212656931
--- /dev/null
+++ b/ILSpy/Properties/app.config.template
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ILSpy/app.config b/ILSpy/app.config
deleted file mode 100644
index e36560333..000000000
--- a/ILSpy/app.config
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
diff --git a/NRefactory/ICSharpCode.NRefactory.CSharp/Properties/AssemblyInfo.cs b/NRefactory/ICSharpCode.NRefactory.CSharp/Properties/AssemblyInfo.cs
index 0d277c77f..ca4004167 100644
--- a/NRefactory/ICSharpCode.NRefactory.CSharp/Properties/AssemblyInfo.cs
+++ b/NRefactory/ICSharpCode.NRefactory.CSharp/Properties/AssemblyInfo.cs
@@ -28,4 +28,4 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can use the default the Revision and
// Build Numbers by using the '*' as shown below:
-[assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("5.0.0.0")]
diff --git a/NRefactory/ICSharpCode.NRefactory.VB/ICSharpCode.NRefactory.VB.csproj b/NRefactory/ICSharpCode.NRefactory.VB/ICSharpCode.NRefactory.VB.csproj
index 9f8c89218..666d390c3 100644
--- a/NRefactory/ICSharpCode.NRefactory.VB/ICSharpCode.NRefactory.VB.csproj
+++ b/NRefactory/ICSharpCode.NRefactory.VB/ICSharpCode.NRefactory.VB.csproj
@@ -13,6 +13,10 @@
False
4
false
+ True
+ ..\ICSharpCode.NRefactory.snk
+ False
+ File
AnyCPU
diff --git a/NRefactory/ICSharpCode.NRefactory.VB/Properties/AssemblyInfo.cs b/NRefactory/ICSharpCode.NRefactory.VB/Properties/AssemblyInfo.cs
index 3f604f3e8..06ae30310 100644
--- a/NRefactory/ICSharpCode.NRefactory.VB/Properties/AssemblyInfo.cs
+++ b/NRefactory/ICSharpCode.NRefactory.VB/Properties/AssemblyInfo.cs
@@ -30,4 +30,4 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can use the default the Revision and
// Build Numbers by using the '*' as shown below:
-[assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("5.0.0.0")]
diff --git a/SharpTreeView/ICSharpCode.TreeView.csproj b/SharpTreeView/ICSharpCode.TreeView.csproj
index d78bc72ff..a42009cb4 100644
--- a/SharpTreeView/ICSharpCode.TreeView.csproj
+++ b/SharpTreeView/ICSharpCode.TreeView.csproj
@@ -19,6 +19,10 @@
False
False
false
+ True
+ ..\NRefactory\ICSharpCode.NRefactory.snk
+ False
+ File
true