diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Services/Interfaces/IUserServices.cs | 6 | ||||
-rw-r--r-- | OpenSim/Services/UserService/UserService.cs | 8 | ||||
-rw-r--r-- | prebuild.xml | 55 |
3 files changed, 69 insertions, 0 deletions
diff --git a/OpenSim/Services/Interfaces/IUserServices.cs b/OpenSim/Services/Interfaces/IUserServices.cs new file mode 100644 index 0000000..9eccc3c --- /dev/null +++ b/OpenSim/Services/Interfaces/IUserServices.cs | |||
@@ -0,0 +1,6 @@ | |||
1 | namespace OpenSim.Services.Interfaces | ||
2 | { | ||
3 | public interface IUserServices | ||
4 | { | ||
5 | } | ||
6 | } | ||
diff --git a/OpenSim/Services/UserService/UserService.cs b/OpenSim/Services/UserService/UserService.cs new file mode 100644 index 0000000..dc6a81e --- /dev/null +++ b/OpenSim/Services/UserService/UserService.cs | |||
@@ -0,0 +1,8 @@ | |||
1 | using OpenSim.Services.Interfaces; | ||
2 | |||
3 | namespace OpenSim.Services.UserService | ||
4 | { | ||
5 | class UserServiceCore : IUserServices | ||
6 | { | ||
7 | } | ||
8 | } | ||
diff --git a/prebuild.xml b/prebuild.xml index 5daa37d..e5e2a61 100644 --- a/prebuild.xml +++ b/prebuild.xml | |||
@@ -2802,6 +2802,61 @@ | |||
2802 | </Files> | 2802 | </Files> |
2803 | </Project> | 2803 | </Project> |
2804 | 2804 | ||
2805 | <Project name="OpenSim.Services.Interfaces" path="OpenSim/Services/Interfaces" type="Library"> | ||
2806 | <Configuration name="Debug"> | ||
2807 | <Options> | ||
2808 | <OutputPath>../../../bin/</OutputPath> | ||
2809 | </Options> | ||
2810 | </Configuration> | ||
2811 | <Configuration name="Release"> | ||
2812 | <Options> | ||
2813 | <OutputPath>../../../bin/</OutputPath> | ||
2814 | </Options> | ||
2815 | </Configuration> | ||
2816 | |||
2817 | <ReferencePath>../../../bin/</ReferencePath> | ||
2818 | <Reference name="System"/> | ||
2819 | <Reference name="OpenMetaverseTypes.dll"/> | ||
2820 | <Reference name="OpenMetaverse.dll"/> | ||
2821 | <Reference name="OpenSim.Framework"/> | ||
2822 | <Reference name="OpenSim.Framework.Console"/> | ||
2823 | <Reference name="OpenSim.Framework.Servers.HttpServer"/> | ||
2824 | <Reference name="Nini.dll" /> | ||
2825 | <Reference name="log4net.dll"/> | ||
2826 | |||
2827 | <Files> | ||
2828 | <Match pattern="*.cs" recurse="true"/> | ||
2829 | </Files> | ||
2830 | </Project> | ||
2831 | |||
2832 | <Project name="OpenSim.Services.UserService" path="OpenSim/Services/UserService" type="Library"> | ||
2833 | <Configuration name="Debug"> | ||
2834 | <Options> | ||
2835 | <OutputPath>../../../bin/</OutputPath> | ||
2836 | </Options> | ||
2837 | </Configuration> | ||
2838 | <Configuration name="Release"> | ||
2839 | <Options> | ||
2840 | <OutputPath>../../../bin/</OutputPath> | ||
2841 | </Options> | ||
2842 | </Configuration> | ||
2843 | |||
2844 | <ReferencePath>../../../bin/</ReferencePath> | ||
2845 | <Reference name="System"/> | ||
2846 | <Reference name="OpenMetaverseTypes.dll"/> | ||
2847 | <Reference name="OpenMetaverse.dll"/> | ||
2848 | <Reference name="OpenSim.Framework"/> | ||
2849 | <Reference name="OpenSim.Framework.Console"/> | ||
2850 | <Reference name="OpenSim.Framework.Servers.HttpServer"/> | ||
2851 | <Reference name="OpenSim.Services.Interfaces"/> | ||
2852 | <Reference name="Nini.dll" /> | ||
2853 | <Reference name="log4net.dll"/> | ||
2854 | |||
2855 | <Files> | ||
2856 | <Match pattern="*.cs" recurse="true"/> | ||
2857 | </Files> | ||
2858 | </Project> | ||
2859 | |||
2805 | <Project name="OpenSim.Servers.Base" path="OpenSim/Servers/Base" type="Library"> | 2860 | <Project name="OpenSim.Servers.Base" path="OpenSim/Servers/Base" type="Library"> |
2806 | <Configuration name="Debug"> | 2861 | <Configuration name="Debug"> |
2807 | <Options> | 2862 | <Options> |