12 lines
532 B
XML
12 lines
532 B
XML
<Project>
|
|
<PropertyGroup>
|
|
<BlazorBuildToolsExe>dotnet "$(MSBuildThisFileDirectory)tools/Microsoft.AspNetCore.Blazor.BuildTools.dll"</BlazorBuildToolsExe>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- Ensures BuildTools itself is built before the consuming project, but without
|
|
adding a runtime dependency on the .dll -->
|
|
<ProjectReference Include="$(MSBuildThisFileDirectory)Microsoft.AspNetCore.Blazor.BuildTools.csproj" ReferenceOutputAssembly="false" PrivateAssets="all" />
|
|
</ItemGroup>
|
|
</Project>
|