add sample for msbuild tasks

This commit is contained in:
Julien Leicher 2020-12-15 13:52:44 +01:00
parent 3cd5133f66
commit f9c6b23e5c
No known key found for this signature in database
GPG Key ID: F2A187E5D2F626A9

View File

@ -14,4 +14,11 @@
<ProjectReference Include="..\..\Infrastructure\Infrastructure.csproj" /> <ProjectReference Include="..\..\Infrastructure\Infrastructure.csproj" />
</ItemGroup> </ItemGroup>
<!-- Utilisation de l'incremental build fournit par MSBuild pour exécuter la tâche que quand nécessaire -->
<!-- <Target Name="npm install as needed" BeforeTargets="BeforeBuild" Inputs="package.json" Outputs="package.json.tmp">
<Message Text="Installing npm packages" />
<Exec Command="npm i" />
<Copy SourceFiles="package.json" DestinationFiles="package.json.tmp" />
</Target> -->
</Project> </Project>