samhowes / rules_msbuild

Build .csproj files with Bazel
Apache License 2.0
6 stars 3 forks source link

bzl deletes terminating `</Project>` on update #184

Closed samhowes closed 2 years ago

samhowes commented 2 years ago
<Project>

    <!--  bzl:generated start  -->
    <Import Condition="'$(UseBazel)' == 'true'" Project="Bazel.targets"/>

    <Target Condition="'$(UseBazel)' == 'true'" Name="BazelClean"
        AfterTargets="Clean">
        <Exec Command="bazel clean" />
    </Target>
    <!--  bzl:generated end  -->