File: Microsoft.WebTools.AspireService.Package.csproj
Web Access
Project: ..\..\..\src\BuiltInTools\AspireService\Microsoft.WebTools.AspireService.Package.csproj (Microsoft.WebTools.AspireService.Package)
<Project Sdk="Microsoft.NET.Sdk">
  <PropertyGroup>
    <!-- This source package is used by Visual Studio WebTools -->
    <TargetFramework>$(VisualStudioServiceTargetFramework)</TargetFramework>
    <GenerateDocumentationFile>false</GenerateDocumentationFile>
    <DebugType>none</DebugType>
    <GenerateDependencyFile>false</GenerateDependencyFile>
    <LangVersion>preview</LangVersion>
 
    <!-- NuGet -->
    <IsPackable>true</IsPackable>
    <IsSourcePackage>true</IsSourcePackage>
    <PackageId>Aspire.Tools.Service</PackageId>
    <IncludeBuildOutput>false</IncludeBuildOutput>
    <PackageDescription>
      Package containing sources of a service that implements DCP protocol.
    </PackageDescription>
    <!-- Remove once https://github.com/NuGet/Home/issues/8583 is fixed -->
    <NoWarn>$(NoWarn);NU5128</NoWarn>
  </PropertyGroup>
  <ItemGroup>
    <FrameworkReference Include="Microsoft.AspNetCore.App" />
  </ItemGroup>
 
  <!-- Make sure the shared source files do not require any global usings -->
  <ItemGroup>
    <Using Remove="@(Using)"/>
  </ItemGroup>
</Project>