diff options
author | lbsa71 | 2009-02-19 18:01:33 +0000 |
---|---|---|
committer | lbsa71 | 2009-02-19 18:01:33 +0000 |
commit | 06ece33bee0f046ea5f4b8590cfd9b13dd2e4a38 (patch) | |
tree | 876de8f4db442a7822c73d97a20ef86ca8842e19 /Prebuild/src/Properties/AssemblyInfo.cs | |
parent | * Fix http://opensimulator.org/mantis/view.php?id=3193 (diff) | |
download | opensim-SC_OLD-06ece33bee0f046ea5f4b8590cfd9b13dd2e4a38.zip opensim-SC_OLD-06ece33bee0f046ea5f4b8590cfd9b13dd2e4a38.tar.gz opensim-SC_OLD-06ece33bee0f046ea5f4b8590cfd9b13dd2e4a38.tar.bz2 opensim-SC_OLD-06ece33bee0f046ea5f4b8590cfd9b13dd2e4a38.tar.xz |
* Okay, so finally got my head around this. Problem is that upstream Prebuild copied dlls promiscuously, and this led to the references being all mixed up (/bin dlls overwritten by different versions on every csc)
* Something that thus needs fixing is the fact that ProjectReferences has to be marked
<ProjectReference>
<Private>False</Private>
</ProjectReference>
but that is not configurable in the upstream Xml Schema. I've hardcoded it in our repo for now.
Diffstat (limited to '')
-rw-r--r-- | Prebuild/src/Properties/AssemblyInfo.cs | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/Prebuild/src/Properties/AssemblyInfo.cs b/Prebuild/src/Properties/AssemblyInfo.cs index e49aea5..65c8736 100644 --- a/Prebuild/src/Properties/AssemblyInfo.cs +++ b/Prebuild/src/Properties/AssemblyInfo.cs | |||
@@ -38,15 +38,6 @@ POSSIBILITY OF SUCH DAMAGE. | |||
38 | */ | 38 | */ |
39 | #endregion | 39 | #endregion |
40 | 40 | ||
41 | #region CVS Information | ||
42 | /* | ||
43 | * $Source$ | ||
44 | * $Author: cjcollier $ | ||
45 | * $Date: 2008-02-08 01:31:29 +0900 (Fri, 08 Feb 2008) $ | ||
46 | * $Revision: 256 $ | ||
47 | */ | ||
48 | #endregion | ||
49 | |||
50 | using System; | 41 | using System; |
51 | using System.Reflection; | 42 | using System.Reflection; |
52 | using System.Runtime.CompilerServices; | 43 | using System.Runtime.CompilerServices; |
@@ -79,7 +70,7 @@ using System.Resources; | |||
79 | [assembly: AssemblyTrademark("")] | 70 | [assembly: AssemblyTrademark("")] |
80 | [assembly: AssemblyCulture("")] | 71 | [assembly: AssemblyCulture("")] |
81 | [assembly: NeutralResourcesLanguageAttribute("en-US")] | 72 | [assembly: NeutralResourcesLanguageAttribute("en-US")] |
82 | [assembly: AssemblyVersion("2.0.3.*")] | 73 | [assembly: AssemblyVersion("2.0.4.*")] |
83 | 74 | ||
84 | // | 75 | // |
85 | // Version information for an assembly consists of the following four values: | 76 | // Version information for an assembly consists of the following four values: |