Как запустить указанную команду c NPM перед сборкой в ​​ASP. NET Core? - PullRequest
0 голосов
/ 27 января 2020

Я пытаюсь выполнить указанную команду c NPM для Angular в моем ASP. NET основном приложении. NPM ничего особенного, он просто подготавливает некоторые файлы.

Как автоматизировать запуск сценария NPM перед каждой сборкой в ​​ASP. NET Core?

Приложение Angular находится в пределах Папка ClientApp с пакетом. json.

Ответы [ 2 ]

1 голос
/ 27 января 2020

Вы можете просто добавить Target в файл .csproj, который выполняет сценарий на определенных этапах. Например, следующее будет запускать установленный gulp.cmd непосредственно перед созданием серверного приложения:

<Target Name="RunGulp" BeforeTargets="Build">
  <Exec Command="node_modules\.bin\gulp.cmd" />
</Target>
0 голосов
/ 27 января 2020

Если вы использовали шаблон SPA * по умолчанию angular, он должен поставляться с настройкой Tasks, которая выполняется при запуске (т. Е. Перед сборкой).

По умолчанию angular Шаблон SPA:

<PropertyGroup>
    <SpaRoot>ClientApp\</SpaRoot>
</PropertyGroup>

<ItemGroup>
    <!-- Don't publish the SPA source files, but do show them in the project files list -->
    <Content Remove="$(SpaRoot)**" />
    <None Remove="$(SpaRoot)**" />
    <None Include="$(SpaRoot)**" Exclude="$(SpaRoot)node_modules\**" />
</ItemGroup>

<Target Name="DebugEnsureNodeEnv" BeforeTargets="Build" Condition=" '$(Configuration)' == 'Debug' And !Exists('$(SpaRoot)node_modules') ">
    <!-- Ensure Node.js is installed -->
    <Exec Command="node --version" ContinueOnError="true">
      <Output TaskParameter="ExitCode" PropertyName="ErrorCode" />
    </Exec>
    <Error Condition="'$(ErrorCode)' != '0'" Text="Node.js is required to build and run this project. To continue, please install Node.js from https://nodejs.org/, and then restart your command prompt or IDE." />
    <Message Importance="high" Text="Restoring dependencies using 'npm'. This may take several minutes..." />
    <Exec WorkingDirectory="$(SpaRoot)" Command="npm install" />
</Target>

<Target Name="PublishRunWebpack" AfterTargets="ComputeFilesToPublish">
    <!-- As part of publishing, ensure the JS resources are freshly built in production mode -->
    <Exec WorkingDirectory="$(SpaRoot)" Command="npm install" />
    <Exec WorkingDirectory="$(SpaRoot)" Command="npm run build -- --prod" />
    <Exec WorkingDirectory="$(SpaRoot)" Command="npm run build:ssr -- --prod" Condition=" '$(BuildServerSideRenderer)' == 'true' " />

    <!-- Include the newly-built files in the publish output -->
    <ItemGroup>
        <DistFiles Include="$(SpaRoot)dist\**; $(SpaRoot)dist-server\**" />
        <DistFiles Include="$(SpaRoot)node_modules\**" Condition="'$(BuildServerSideRenderer)' == 'true'" />
        <ResolvedFileToPublish Include="@(DistFiles->'%(FullPath)')" Exclude="@(ResolvedFileToPublish)">
        <RelativePath>%(DistFiles.Identity)</RelativePath>
        <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
    </ResolvedFileToPublish>
</ItemGroup>
...