You've already forked linux-packaging-mono
Imported Upstream version 5.14.0.78
Former-commit-id: 3494343bcc9ddb42b36b82dd9ae7b69e85e0229f
This commit is contained in:
parent
74b74abd9f
commit
19234507ba
@@ -4,20 +4,11 @@ include ../../build/rules.make
|
||||
|
||||
LIBRARY = System.ServiceModel.Activation.dll
|
||||
|
||||
LIB_REFS = System.Core System plainservice/System.ServiceModel
|
||||
LIB_REFS = System.Core System System.ServiceModel
|
||||
KEYFILE = ../winfx.pub
|
||||
LIB_MCS_FLAGS =
|
||||
|
||||
TEST_MCS_FLAGS =
|
||||
TEST_LIB_REFS = System System.Core
|
||||
|
||||
servicemodel = $(the_libdir_base)plainservice/System.ServiceModel.dll
|
||||
|
||||
include ../../build/library.make
|
||||
|
||||
$(the_libdir_base)$(LIBRARY): $(servicemodel)
|
||||
|
||||
$(servicemodel):
|
||||
(cd ../System.ServiceModel; $(MAKE) $@)
|
||||
|
||||
.NOTPARALLEL: $(servicemodel)
|
||||
|
@@ -2,5 +2,5 @@
|
||||
../../build/common/MonoTODOAttribute.cs
|
||||
Assembly/AssemblyInfo.cs
|
||||
|
||||
../System.ServiceModel/System.ServiceModel/ServiceHostingEnvironment.cs
|
||||
../System.ServiceModel/System.ServiceModel.Activation/ServiceHostFactory.cs
|
||||
System.ServiceModel/ServiceHostingEnvironment.cs
|
||||
System.ServiceModel.Activation/ServiceHostFactory.cs
|
||||
|
@@ -0,0 +1,48 @@
|
||||
//
|
||||
// ServiceHostFactory.cs
|
||||
//
|
||||
// Author:
|
||||
// Atsushi Enomoto <atsushi@ximian.com>
|
||||
//
|
||||
// Copyright (C) 2006 Novell, Inc. http://www.novell.com
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining
|
||||
// a copy of this software and associated documentation files (the
|
||||
// "Software"), to deal in the Software without restriction, including
|
||||
// without limitation the rights to use, copy, modify, merge, publish,
|
||||
// distribute, sublicense, and/or sell copies of the Software, and to
|
||||
// permit persons to whom the Software is furnished to do so, subject to
|
||||
// the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be
|
||||
// included in all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
//
|
||||
|
||||
namespace System.ServiceModel.Activation
|
||||
{
|
||||
[System.Runtime.CompilerServices.TypeForwardedFrom (Consts.AssemblySystemServiceModel_3_0)]
|
||||
public class ServiceHostFactory : ServiceHostFactoryBase
|
||||
{
|
||||
[MonoTODO]
|
||||
public override ServiceHostBase CreateServiceHost (
|
||||
string constructorString, Uri [] baseAddresses)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
[MonoTODO ("untested")]
|
||||
protected virtual ServiceHost CreateServiceHost (
|
||||
Type serviceType, Uri [] baseAddresses)
|
||||
{
|
||||
return new ServiceHost (serviceType, baseAddresses);
|
||||
}
|
||||
}
|
||||
}
|
@@ -0,0 +1,40 @@
|
||||
//
|
||||
// ServiceHostingEnvironment.cs
|
||||
//
|
||||
// Author:
|
||||
// Ankit Jain <jankit@novell.com>
|
||||
//
|
||||
// Copyright (C) 2006 Novell, Inc. http://www.novell.com
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining
|
||||
// a copy of this software and associated documentation files (the
|
||||
// "Software"), to deal in the Software without restriction, including
|
||||
// without limitation the rights to use, copy, modify, merge, publish,
|
||||
// distribute, sublicense, and/or sell copies of the Software, and to
|
||||
// permit persons to whom the Software is furnished to do so, subject to
|
||||
// the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be
|
||||
// included in all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
//
|
||||
|
||||
namespace System.ServiceModel {
|
||||
|
||||
[System.Runtime.CompilerServices.TypeForwardedFrom (Consts.AssemblySystemServiceModel_3_0)]
|
||||
public static class ServiceHostingEnvironment
|
||||
{
|
||||
public static bool AspNetCompatibilityEnabled { get; internal set; }
|
||||
|
||||
public static void EnsureServiceAvailable (string virtualPath)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user