System.Linq.Async.Ref.csproj 1.3 KB

12345678910111213141516171819202122232425
  1. <Project Sdk="MSBuild.Sdk.Extras">
  2. <PropertyGroup>
  3. <Description>LINQ Standard Query Operators used to express queries over asynchronous enumerable sequences.</Description>
  4. <AssemblyTitle>System.Linq.Async</AssemblyTitle>
  5. <Authors>Microsoft</Authors>
  6. <TargetFrameworks>net461;netstandard2.0;netstandard2.1;netcoreapp3.1</TargetFrameworks>
  7. <PackageTags>Enumerable;Asynchronous;LINQ</PackageTags>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <PackageReference Condition="'$(TargetFramework)' != 'netcoreapp3.1' and '$(TargetFramework)' != 'netstandard2.1' "
  11. Include="Microsoft.Bcl.AsyncInterfaces" Version="6.0.0" />
  12. <ProjectReference Include="..\..\System.Linq.Async.SourceGenerator\System.Linq.Async.SourceGenerator.csproj"
  13. OutputItemType="Analyzer" ReferenceOutputAssembly="false" Private="false">
  14. <!-- Remove all the properties set by ReferenceAssemblyProjectReference, because they cause build failures. -->
  15. <GlobalPropertiesToRemove>ExtrasIsReferenceAssembly;AssemblyName;Version;AssemblyTitle</GlobalPropertiesToRemove>
  16. </ProjectReference>
  17. </ItemGroup>
  18. <ItemGroup>
  19. <Compile Include="..\..\System.Linq.Async\**\*.cs" Exclude="..\..\System.Linq.Async\obj\**" />
  20. </ItemGroup>
  21. </Project>