Skip to content

Commit

Permalink
Include SCI.dll (#293)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmat committed Jun 22, 2019
1 parent fca27bd commit 5671c74
Showing 1 changed file with 8 additions and 1 deletion.
Expand Up @@ -11,6 +11,8 @@
<PackageDescription>MSBuild tasks providing git repository information.</PackageDescription>
<PackageTags>MSBuild Tasks source control git</PackageTags>
<DevelopmentDependency>true</DevelopmentDependency>

<TargetsForTfmSpecificContentInPackage>$(TargetsForTfmSpecificContentInPackage);_GetTfmSpecificFilesToPackage</TargetsForTfmSpecificContentInPackage>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\Common\Names.cs" Link="Common\Names.cs" />
Expand All @@ -21,7 +23,6 @@
<ItemGroup>
<PackageReference Include="Microsoft.Build" Version="$(MicrosoftBuildVersion)" PrivateAssets="all" />
<PackageReference Include="Microsoft.Build.Tasks.Core" Version="$(MicrosoftBuildTasksCore)" PrivateAssets="all" />
<PackageReference Include="Microsoft.DotNet.PlatformAbstractions" Version="$(MicrosoftDotNetPlatformAbstractionsVersion)" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="Microsoft.Build.Tasks.Git.Operations" />
Expand All @@ -32,4 +33,10 @@
<None Include="build/**/*.*" Pack="true" PackagePath="build/%(RecursiveDir)%(Filename)%(Extension)" />
<None Include="build/**/*.*" Pack="true" PackagePath="buildCrossTargeting/%(RecursiveDir)%(Filename)%(Extension)" />
</ItemGroup>

<Target Name="_GetTfmSpecificFilesToPackage" Condition="'$(TargetFrameworkIdentifier)' == '.NETFramework'">
<ItemGroup>
<TfmSpecificPackageFile Include="$(TargetDir)System.Collections.Immutable.dll" PackagePath="tools/$(TargetFramework)/System.Collections.Immutable.dll"/>
</ItemGroup>
</Target>
</Project>

0 comments on commit 5671c74

Please sign in to comment.