1
0

System.Linq.Async.Ref.csproj 1.3 KB

1234567891011121314151617181920212223242526
  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. <AssemblyName>System.Linq.Async</AssemblyName>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <PackageReference Condition="'$(TargetFramework)' != 'netcoreapp3.1' and '$(TargetFramework)' != 'netstandard2.1' "
  12. Include="Microsoft.Bcl.AsyncInterfaces" Version="6.0.0" />
  13. <ProjectReference Include="..\..\System.Linq.Async.SourceGenerator\System.Linq.Async.SourceGenerator.csproj"
  14. OutputItemType="Analyzer" ReferenceOutputAssembly="false" Private="false">
  15. <!-- Remove all the properties set by ReferenceAssemblyProjectReference, because they cause build failures. -->
  16. <GlobalPropertiesToRemove>ExtrasIsReferenceAssembly;AssemblyName;Version;AssemblyTitle</GlobalPropertiesToRemove>
  17. </ProjectReference>
  18. </ItemGroup>
  19. <ItemGroup>
  20. <Compile Include="..\..\System.Linq.Async\**\*.cs" Exclude="..\..\System.Linq.Async\obj\**" />
  21. </ItemGroup>
  22. </Project>