25 lines
948 B
XML
25 lines
948 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="MediatR.Extensions.Microsoft.DependencyInjection" Version="9.0.0" />
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="5.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Application\Application.csproj" />
|
|
<ProjectReference Include="..\..\Infrastructure\Infrastructure.csproj" />
|
|
</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>
|