📄 _makefile
字号:
!IFNDEF WROXSAMPLEPATH
!ERROR Env Variable WROXSAMPLEPATH must be defined
!ENDIF
#------------------------------------------------------------------
#The master rules for building Wrox Professional ASP.NET samples
# WROXSAMPLEPATH Env Variable must be defined in MakeAll.bat
!include $(WROXSAMPLEPATH)\master.mak
#--------------------------------------------------
_SDLPATH=http://localhost/ProAspNet/20 - Consuming Web Services
_SDLPATH=$(_SDLPATH)/SoapHeaderAuthentication/Server/$(WS_SOURCES)?WSDL
#--------------------------------------------------
TARGETS = $(EE_DLL) $(DLL_TARGET)
DLL_TARGET = bin\WebService.dll
EE_DLL = bin\WebServiceAuthentication.dll
EE_SRC = WebServiceAuthentication\WebServiceAuthenticationModule.vb \
WebServiceAuthentication\WebServiceAuthenticationEvent.vb \
WebServiceAuthentication\WebServiceAuthenticationEventHandler.vb
EXE_SOURCES =
DLL_SOURCES = Consumer\SecureWebService.vb
WS_SOURCES = SoapHeaderAuthentication.asmx
DLL_IMPORTS = /r:system.security.dll
CLEANUP = bin\* $(DLL_SOURCES)
#--------------------------------------------------
DLL_IMPORTS = $(DLL_IMPORTS) /r:System.xml.dll /r:system.web.dll /r:system.web.services.dll
EXE_IMPORTS =
#--------------------------------------------------
all : $(TARGETS)
$(DLL_TARGET) : $(EE_DLL) $(DLL_SOURCES)
@if not exist bin mkdir bin
$(_BC) $(_VB_DLL_FLAGS) $(DLL_IMPORTS) /out:$@ $(DLL_SOURCES)
$(DLL_SOURCES): server/$(WS_SOURCES)
$(_WSDL) /l:VB /namespace:Security /out:$*.vb "$(_SDLPATH)"
$(EE_DLL): $(EE_SRC)
@if not exist bin mkdir bin
$(_BC) $(_VB_DLL_FLAGS) $(DLL_IMPORTS) /out:$@ $**
# /reference:mscorlib.dll /reference:System.dll /reference:System.web.dll /reference:.dll /reference:System.Runtime.Serialization.Formatters.Soap.dll /reference:System.Web.dll /reference:.dll /reference:System.Xml.dll /reference:System.Web.Services.dll
clean :
@for %i in ( $(CLEANUP) ) do @if exist %i del %i
@if exist bin $(_RMDIR) bin
#--------------------------------------------------
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -