Browse Source

Fixed hard-binding attributes for ICSharpCode.SharpDevelop.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@5496 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
pull/1/head
Daniel Grunwald 16 years ago
parent
commit
d8a358fae7
  1. 2
      doc/technotes/Versioning.html
  2. 6
      src/Main/Base/Project/Configuration/AssemblyInfo.cs
  3. 3
      src/Main/StartUp/Project/StartUp.csproj

2
doc/technotes/Versioning.html

@ -22,7 +22,7 @@ The revision number is retrieved by running a function in NSvn.Core.dll equivale
in the "src" folder. in the "src" folder.
When this doesn't work (e.g. in an exported tree like the source code download on the build server), the When this doesn't work (e.g. in an exported tree like the source code download on the build server), the
content of the file src/REVISION is used as revision number. content of the file src/REVISION is used as revision number.
When even this fails, the revision '9999' is used. When even this fails, the revision '0' is used.
</p> </p>
<H2>Publisher Policy</H2> <H2>Publisher Policy</H2>
<P>While the assembly versioning schema is not so important inside <P>While the assembly versioning schema is not so important inside

6
src/Main/Base/Project/Configuration/AssemblyInfo.cs

@ -16,7 +16,8 @@ using System.Runtime.CompilerServices;
// Use hard-binding for ICSharpCode.SharpDevelop: // Use hard-binding for ICSharpCode.SharpDevelop:
[assembly: Dependency("ICSharpCode.Core", LoadHint.Always)] [assembly: Dependency("ICSharpCode.Core", LoadHint.Always)]
[assembly: Dependency("ICSharpCode.Core.WinForms", LoadHint.Always)] [assembly: Dependency("ICSharpCode.Core.WinForms", LoadHint.Always)]
[assembly: Dependency("ICSharpCode.TextEditor", LoadHint.Always)] [assembly: Dependency("ICSharpCode.Core.Presentation", LoadHint.Always)]
[assembly: Dependency("ICSharpCode.AvalonEdit", LoadHint.Always)]
[assembly: Dependency("ICSharpCode.NRefactory", LoadHint.Always)] [assembly: Dependency("ICSharpCode.NRefactory", LoadHint.Always)]
[assembly: Dependency("ICSharpCode.SharpDevelop.Dom", LoadHint.Always)] [assembly: Dependency("ICSharpCode.SharpDevelop.Dom", LoadHint.Always)]
[assembly: Dependency("ICSharpCode.SharpDevelop.Widgets", LoadHint.Always)] [assembly: Dependency("ICSharpCode.SharpDevelop.Widgets", LoadHint.Always)]
@ -24,9 +25,6 @@ using System.Runtime.CompilerServices;
[assembly: Dependency("System.Drawing", LoadHint.Always)] [assembly: Dependency("System.Drawing", LoadHint.Always)]
[assembly: Dependency("System.Xml", LoadHint.Always)] [assembly: Dependency("System.Xml", LoadHint.Always)]
[assembly: Dependency("System.Windows.Forms", LoadHint.Always)] [assembly: Dependency("System.Windows.Forms", LoadHint.Always)]
[assembly: Dependency("WeifenLuo.WinFormsUI.Docking", LoadHint.Always)]
[assembly: Dependency("Microsoft.Build.Framework", LoadHint.Always)]
[assembly: Dependency("Microsoft.Build.Engine", LoadHint.Always)]
[assembly: AssemblyTitle("SharpDevelopBase")] [assembly: AssemblyTitle("SharpDevelopBase")]
[assembly: AssemblyDescription("The base add-in of SharpDevelop")] [assembly: AssemblyDescription("The base add-in of SharpDevelop")]

3
src/Main/StartUp/Project/StartUp.csproj

@ -1,4 +1,5 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup> <PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>

Loading…
Cancel
Save