我想创建一个新的事件日志事件源,以便在我通过IIS 导入应用程序时将我的webAPI应用程序记录下来。
我将我的应用程序发布到VS2015中的 Web部署文件夹(zip)文件并从中导入。
我找到了这段代码来创建事件源:
if ([System.Diagnostics.EventLog]::SourceExists("myWeb.API") -eq $false) {
[System.Diagnostics.EventLog]::CreateEventSource("myWeb.API", "Application")
}
我可以将它放在一个EventSource.ps1文件中,该文件在我从提示符运行时执行我想要的操作。
如何在IIS 导入应用程序过程中执行此操作?
我尝试过使用.pubxml文件但是使用/ override / call-it-via哪个元素让我感到困惑 - 我已经尝试了 AfterAddIisSettingAndFileContentsToSourceManifest 和 PipelineDependsOn 。< / p>
<Target Name="CustomCreateEventSource">
<Message Text="Create Event Source" Importance="high"/>
<PropertyGroup>
<EventSource Condition=" '$(EventSource)'=='' ">
myWeb.API
</EventSource>
</PropertyGroup>
<Exec Command="powershell.exe"
-NonInteractive
-executionpolicy Unrestricted
-file "$(PublishUrl)Publish\EventSource.ps1" "$(EventSource)"" /></Target>
我宁愿它是通过IIS导入应用程序完成的,作为一个命中过程,而不是:
因为它不会被不一定的技术用户导入。
非常感谢您花时间协助!
答案 0 :(得分:0)
当应用程序导入IIS时,您可以使用<projectName>.wpp.targets
文件启动自定义命令。
例如,如果项目名称为MyApp
,请将名为MyApp.wpp.targets
的文件添加到项目的根级别。
我测试并验证了此方法使用具有以下内容的目标:
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Target Name="CustomTask" AfterTargets="AddIisSettingAndFileContentsToSourceManifest">
<ItemGroup>
<MsDeploySourceManifest Include="runCommand">
<!-- specify InputFormat None (see http://stackoverflow.com/questions/4238192/running-powershell-from-msdeploy-runcommand-does-not-exit) -->
<Path>powershell.exe -ExecutionPolicy bypass -NoLogo -inputformat none -NonInteractive -Command .'$(_MSDeployDirPath_FullPath)\Deploy\createEventLog.ps1'</Path>
</MsDeploySourceManifest>
</ItemGroup>
</Target>
</Project>
需要注意的一件重要事情是,Visual Studio有时会缓存.wpp.targets文件。我知道释放它的唯一方法是重新启动Visual Studio。我刚刚遇到这个问题让我偏离了一段时间,因为我得到了一个我无法消失的错误。
作为参考,这里是我用来创建包Zip的.pubxml
文件:
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<WebPublishMethod>Package</WebPublishMethod>
<LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration>
<LastUsedPlatform>Any CPU</LastUsedPlatform>
<SiteUrlToLaunchAfterPublish />
<LaunchSiteAfterPublish>True</LaunchSiteAfterPublish>
<ExcludeApp_Data>False</ExcludeApp_Data>
<DesktopBuildPackageLocation>c:\temp\IISImportTestPkg.zip</DesktopBuildPackageLocation>
<PackageAsSingleFile>true</PackageAsSingleFile>
<DeployIisAppPath>Default Web Site/IISImportTest</DeployIisAppPath>
<PublishDatabaseSettings>
<Objects xmlns="" />
</PublishDatabaseSettings>
</PropertyGroup>
</Project>
最后,以下是一些可能有用的资源: