diff options
author | lbsa71 | 2007-03-27 10:51:41 +0000 |
---|---|---|
committer | lbsa71 | 2007-03-27 10:51:41 +0000 |
commit | f405d0fada001a5d7e6c9778252dfff13f0ea3df (patch) | |
tree | 08490d1a2db0b4e169a2adaab563b01d88fa2ee6 /Servers | |
parent | * Enabled the OpenSim.Servers project (diff) | |
download | opensim-SC_OLD-f405d0fada001a5d7e6c9778252dfff13f0ea3df.zip opensim-SC_OLD-f405d0fada001a5d7e6c9778252dfff13f0ea3df.tar.gz opensim-SC_OLD-f405d0fada001a5d7e6c9778252dfff13f0ea3df.tar.bz2 opensim-SC_OLD-f405d0fada001a5d7e6c9778252dfff13f0ea3df.tar.xz |
* Prebuild breaks nant build if project is empty. Quick fix : add dummy file
Diffstat (limited to 'Servers')
-rw-r--r-- | Servers/OpenSim.Servers.csproj | 5 | ||||
-rw-r--r-- | Servers/OpenSim.Servers.dll.build | 1 | ||||
-rw-r--r-- | Servers/dummy.cs | 1 |
3 files changed, 6 insertions, 1 deletions
diff --git a/Servers/OpenSim.Servers.csproj b/Servers/OpenSim.Servers.csproj index bc386fd..51ce36c 100644 --- a/Servers/OpenSim.Servers.csproj +++ b/Servers/OpenSim.Servers.csproj | |||
@@ -3,7 +3,7 @@ | |||
3 | <ProjectType>Local</ProjectType> | 3 | <ProjectType>Local</ProjectType> |
4 | <ProductVersion>8.0.50727</ProductVersion> | 4 | <ProductVersion>8.0.50727</ProductVersion> |
5 | <SchemaVersion>2.0</SchemaVersion> | 5 | <SchemaVersion>2.0</SchemaVersion> |
6 | <ProjectGuid>{EAC45D69-AA44-45FB-B0CE-A95272A9B67B}</ProjectGuid> | 6 | <ProjectGuid>{2EF6000C-A72B-4CBF-99A8-ECDAE8ED41DE}</ProjectGuid> |
7 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 7 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
8 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 8 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
9 | <ApplicationIcon></ApplicationIcon> | 9 | <ApplicationIcon></ApplicationIcon> |
@@ -82,6 +82,9 @@ | |||
82 | <ItemGroup> | 82 | <ItemGroup> |
83 | </ItemGroup> | 83 | </ItemGroup> |
84 | <ItemGroup> | 84 | <ItemGroup> |
85 | <Compile Include="dummy.cs"> | ||
86 | <SubType>Code</SubType> | ||
87 | </Compile> | ||
85 | </ItemGroup> | 88 | </ItemGroup> |
86 | <Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" /> | 89 | <Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" /> |
87 | <PropertyGroup> | 90 | <PropertyGroup> |
diff --git a/Servers/OpenSim.Servers.dll.build b/Servers/OpenSim.Servers.dll.build index 1d6b315..4c20eb6 100644 --- a/Servers/OpenSim.Servers.dll.build +++ b/Servers/OpenSim.Servers.dll.build | |||
@@ -11,6 +11,7 @@ | |||
11 | <resources prefix="OpenSim.Servers" dynamicprefix="true" > | 11 | <resources prefix="OpenSim.Servers" dynamicprefix="true" > |
12 | </resources> | 12 | </resources> |
13 | <sources failonempty="true"> | 13 | <sources failonempty="true"> |
14 | <include name="dummy.cs" /> | ||
14 | </sources> | 15 | </sources> |
15 | <references basedir="${project::get-base-directory()}"> | 16 | <references basedir="${project::get-base-directory()}"> |
16 | <lib> | 17 | <lib> |
diff --git a/Servers/dummy.cs b/Servers/dummy.cs new file mode 100644 index 0000000..c0382d2 --- /dev/null +++ b/Servers/dummy.cs | |||
@@ -0,0 +1 @@ | |||
// This here because prebuild breaks nant build on empty fileset, ie a project containing no files \ No newline at end of file | |||