20 lines
903 B
XML
20 lines
903 B
XML
<Project>
|
|
<!--
|
|
Importing this file is equivalent to having:
|
|
<PackageDependency Include="Microsoft.Blazor.Build" />
|
|
... except it's much more convenient when working in this repo, because it consumes the
|
|
Blazor.Build targets/exe directly without needing this project to be packed into a .nupkg.
|
|
|
|
This is only intended for use by other projects in this repo.
|
|
-->
|
|
|
|
<Import Project="$(MSBuildThisFileDirectory)targets\All.targets" />
|
|
|
|
<ItemGroup>
|
|
<!-- Ensures this project is built before the consuming project, but without
|
|
adding a runtime dependency on the .dll (to be equivalent to a <PackageDependency>
|
|
given that the packed version of this project wouldn't add a .dll reference) -->
|
|
<ProjectReference Include="$(MSBuildThisFileDirectory)Microsoft.Blazor.Build.csproj" ReferenceOutputAssembly="false" PrivateAssets="all" />
|
|
</ItemGroup>
|
|
</Project>
|