18 lines
770 B
XML
18 lines
770 B
XML
<Project>
|
|
<Import Project="VSIX.targets" />
|
|
<ItemGroup>
|
|
<Solutions Update="$(RepositoryRoot)Blazor.sln">
|
|
<!-- the 'DebugNoVSIX' and 'ReleaseNoVSIX' configurations exclude the VSIX project, which doesn't build with Microsoft.NET.Sdk yet. -->
|
|
<AdditionalProperties>Configuration=$(Configuration)NoVSIX</AdditionalProperties>
|
|
</Solutions>
|
|
</ItemGroup>
|
|
|
|
<!--
|
|
Get Anglesharp built right away. This isn't needed for correctness, but helps avoid concurrency problems.
|
|
-->
|
|
<Target Name="BuildAngleSharp" BeforeTargets="BuildSolutions">
|
|
<Message Importance="High" Text="Building Anglesharp..." />
|
|
<MSBuild Projects="$(MSBuildThisFileDirectory)..\src\anglesharp\AngleSharpBuilder\AngleSharpBuilder.csproj" />
|
|
</Target>
|
|
</Project>
|