mhutch / MonoDevelop.MSBuildEditor

Improved MSBuild editing support
Other
224 stars 26 forks source link

Warning with IsAspireSharedProject #203

Closed christiannagel closed 5 months ago

christiannagel commented 6 months ago

With a .NET Aspire project, a shared project that's generated includes the IsAspireSharedProject element, such as:

    <PropertyGroup>
        <OutputType>Library</OutputType>
        <TargetFramework>net8.0</TargetFramework>
        <ImplicitUsings>enable</ImplicitUsings>
        <Nullable>enable</Nullable>
        <IsAspireSharedProject>true</IsAspireSharedProject>
    </PropertyGroup>

This warning is shown:

image

Thanks for your work on this tool @mhutch