Skip to content

Commit 97169e1

Browse files
authored
Merge pull request #167 from sillsdev/remove-valuetuple-from-installer
Remove System.ValueTuple from installer
2 parents 47bd3fe + 9a703ad commit 97169e1

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

Installer/Installer.wxs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -232,9 +232,6 @@ http://blogs.msdn.com/robmen/archive/2003/10/04/56479.aspx -->
232232
<Component Guid="*">
233233
<File Id="System.Threading.Tasks.Extensions.dll_P9" ShortName="systtext.dll" KeyPath="yes" Name="System.Threading.Tasks.Extensions.dll" />
234234
</Component>
235-
<Component Guid="*">
236-
<File Id="System.ValueTuple.dll_P9" ShortName="nbqre2xf.dll" KeyPath="yes" Name="System.ValueTuple.dll" />
237-
</Component>
238235
</ComponentGroup>
239236

240237
<ComponentGroup Id="COMPONENTSFORP9BetaPLUGIN" Directory="INSTALLDIR9BETA" Source="..\Transcelerator\bin\x64\Release">
@@ -373,9 +370,6 @@ http://blogs.msdn.com/robmen/archive/2003/10/04/56479.aspx -->
373370
<Component Guid="*">
374371
<File Id="System.Threading.Tasks.Extensions.dll_P9Beta" ShortName="sy1ttbp9.dll" KeyPath="yes" Name="System.Threading.Tasks.Extensions.dll" />
375372
</Component>
376-
<Component Guid="*">
377-
<File Id="System.ValueTuple.dll_P9Beta" ShortName="jp96u9at.dll" KeyPath="yes" Name="System.ValueTuple.dll" />
378-
</Component>
379373
</ComponentGroup>
380374

381375
<!-- This feature is defined in FeatureFragment.wxs -->

Transcelerator/Transcelerator.csproj

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -685,6 +685,11 @@ exit 1</PostBuildEvent>
685685
<Error Condition="!Exists('..\packages\Microsoft.Web.WebView2.1.0.3240.44\build\Microsoft.Web.WebView2.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.Web.WebView2.1.0.3240.44\build\Microsoft.Web.WebView2.targets'))" />
686686
<Error Condition="!Exists('..\packages\System.ValueTuple.4.6.1\build\net471\System.ValueTuple.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\System.ValueTuple.4.6.1\build\net471\System.ValueTuple.targets'))" />
687687
</Target>
688+
<Target Name="ExcludeSystemValueTupleFromOutput" AfterTargets="ResolveAssemblyReferences">
689+
<ItemGroup>
690+
<ReferenceCopyLocalPaths Remove="@(ReferenceCopyLocalPaths)" Condition="'%(Filename)' == 'System.ValueTuple'" />
691+
</ItemGroup>
692+
</Target>
688693
<Import Project="..\packages\NDesk.DBus.0.15.0\build\NDesk.DBus.targets" Condition="Exists('..\packages\NDesk.DBus.0.15.0\build\NDesk.DBus.targets')" />
689694
<Import Project="..\packages\Icu4c.Win.Min.62.2.1-beta\build\Icu4c.Win.Min.targets" Condition="Exists('..\packages\Icu4c.Win.Min.62.2.1-beta\build\Icu4c.Win.Min.targets')" />
690695
<Import Project="..\packages\Mono.Unix.7.1.0-final.1.21458.1\build\Mono.Unix.targets" Condition="Exists('..\packages\Mono.Unix.7.1.0-final.1.21458.1\build\Mono.Unix.targets')" />

TxlMasterQuestionPreProcessor/TxlMasterQuestionPreProcessor.csproj

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,11 @@ exit 1</PostBuildEvent>
345345
<Error Condition="!Exists('..\packages\SIL.Windows.Forms.16.0.0\build\SIL.Windows.Forms.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\SIL.Windows.Forms.16.0.0\build\SIL.Windows.Forms.targets'))" />
346346
<Error Condition="!Exists('..\packages\System.ValueTuple.4.6.1\build\net471\System.ValueTuple.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\System.ValueTuple.4.6.1\build\net471\System.ValueTuple.targets'))" />
347347
</Target>
348+
<Target Name="ExcludeSystemValueTupleFromOutput" AfterTargets="ResolveAssemblyReferences">
349+
<ItemGroup>
350+
<ReferenceCopyLocalPaths Remove="@(ReferenceCopyLocalPaths)" Condition="'%(Filename)' == 'System.ValueTuple'" />
351+
</ItemGroup>
352+
</Target>
348353
<Import Project="..\packages\NDesk.DBus.0.15.0\build\NDesk.DBus.targets" Condition="Exists('..\packages\NDesk.DBus.0.15.0\build\NDesk.DBus.targets')" />
349354
<Import Project="..\packages\Mono.Unix.7.1.0-final.1.21458.1\build\Mono.Unix.targets" Condition="Exists('..\packages\Mono.Unix.7.1.0-final.1.21458.1\build\Mono.Unix.targets')" />
350355
<Import Project="..\packages\GtkSharp.3.24.24.95\build\GtkSharp.targets" Condition="Exists('..\packages\GtkSharp.3.24.24.95\build\GtkSharp.targets')" />

0 commit comments

Comments
 (0)