hn-dotnet/Apps/Website/Website.csproj
Julien Leicher 7a9aefbefc tiny-refactors (#27)
add UnitWorkBehavior and some files moving
add Docker stuff to prepare heroku deployment
rename (Up/Down)vote
add sample for msbuild tasks
2020-12-17 12:01:11 +01:00

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>