Mark HostFactoryResolver againa as source package (#52541)
authorViktor Hofer <viktor.hofer@microsoft.com>
Mon, 10 May 2021 15:12:43 +0000 (17:12 +0200)
committerGitHub <noreply@github.com>
Mon, 10 May 2021 15:12:43 +0000 (17:12 +0200)
During the migration from pkgproj to csproj, the `<IsSourcePackage />` declaration was lost. Setting this again to auto-generate the expected build target.

src/libraries/Microsoft.Extensions.HostFactoryResolver/src/Microsoft.Extensions.HostFactoryResolver.Sources.csproj

index e2ad07d..63de322 100644 (file)
@@ -5,10 +5,11 @@
     <EnableBinPlacing>false</EnableBinPlacing>
     <IsShipping>false</IsShipping>
     <SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking>
+    <IsSourcePackage>true</IsSourcePackage>
     <PackageDescription>Internal package for sharing Microsoft.Extensions.Hosting.HostFactoryResolver type.</PackageDescription>
   </PropertyGroup>
 
   <ItemGroup>
     <Content Include="*.cs" PackagePath="contentFiles/cs/netstandard1.0/%(FileName)%(Extension)" />
   </ItemGroup>
-</Project>
\ No newline at end of file
+</Project>