12345678910111213141516171819202122232425 |
- <Project Sdk="MSBuild.Sdk.Extras">
- <PropertyGroup>
- <Description>LINQ Standard Query Operators used to express queries over asynchronous enumerable sequences.</Description>
- <AssemblyTitle>System.Linq.Async</AssemblyTitle>
- <Authors>Microsoft</Authors>
- <TargetFrameworks>net461;netstandard2.0;netstandard2.1;netcoreapp3.1</TargetFrameworks>
- <PackageTags>Enumerable;Asynchronous;LINQ</PackageTags>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Condition="'$(TargetFramework)' != 'netcoreapp3.1' and '$(TargetFramework)' != 'netstandard2.1' "
- Include="Microsoft.Bcl.AsyncInterfaces" Version="5.0.0" />
- <ProjectReference Include="..\..\System.Linq.Async.SourceGenerator\System.Linq.Async.SourceGenerator.csproj"
- OutputItemType="Analyzer" ReferenceOutputAssembly="false" Private="false">
- <!-- Remove all the properties set by ReferenceAssemblyProjectReference, because they cause build failures. -->
- <GlobalPropertiesToRemove>ExtrasIsReferenceAssembly;AssemblyName;Version;AssemblyTitle</GlobalPropertiesToRemove>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup>
- <Compile Include="..\..\System.Linq.Async\**\*.cs" Exclude="..\..\System.Linq.Async\obj\**" />
- </ItemGroup>
-
- </Project>
|