@@ -381,7 +381,8 @@ public static string rid_front_half(string toolset)
381
381
switch ( toolset )
382
382
{
383
383
case "v110_xp" :
384
- return "win7" ;
384
+ // for our builds, v110_xp should always correspond to a win-whatever RID
385
+ return "win" ;
385
386
case "v110" :
386
387
return "win8" ;
387
388
case "v110_wp80" :
@@ -3560,17 +3561,17 @@ private static void gen_nuspec_sqlcipher(string top, string root, string plat)
3560
3561
case "windows" :
3561
3562
f . WriteStartElement ( "file" ) ;
3562
3563
f . WriteAttributeString ( "src" , Path . Combine ( root , "cb\\ bin\\ sqlcipher\\ v140\\ plain\\ x86\\ sqlcipher.dll" ) ) ;
3563
- f . WriteAttributeString ( "target" , string . Format ( "runtimes\\ win7 -x86\\ native\\ sqlcipher.dll" ) ) ;
3564
+ f . WriteAttributeString ( "target" , string . Format ( "runtimes\\ win -x86\\ native\\ sqlcipher.dll" ) ) ;
3564
3565
f . WriteEndElement ( ) ; // file
3565
3566
3566
3567
f . WriteStartElement ( "file" ) ;
3567
3568
f . WriteAttributeString ( "src" , Path . Combine ( root , "cb\\ bin\\ sqlcipher\\ v140\\ plain\\ x64\\ sqlcipher.dll" ) ) ;
3568
- f . WriteAttributeString ( "target" , string . Format ( "runtimes\\ win7 -x64\\ native\\ sqlcipher.dll" ) ) ;
3569
+ f . WriteAttributeString ( "target" , string . Format ( "runtimes\\ win -x64\\ native\\ sqlcipher.dll" ) ) ;
3569
3570
f . WriteEndElement ( ) ; // file
3570
3571
3571
3572
f . WriteStartElement ( "file" ) ;
3572
3573
f . WriteAttributeString ( "src" , Path . Combine ( root , "cb\\ bin\\ sqlcipher\\ v140\\ plain\\ arm\\ sqlcipher.dll" ) ) ;
3573
- f . WriteAttributeString ( "target" , string . Format ( "runtimes\\ win8 -arm\\ native\\ sqlcipher.dll" ) ) ;
3574
+ f . WriteAttributeString ( "target" , string . Format ( "runtimes\\ win -arm\\ native\\ sqlcipher.dll" ) ) ;
3574
3575
f . WriteEndElement ( ) ; // file
3575
3576
3576
3577
f . WriteStartElement ( "file" ) ;
@@ -4533,14 +4534,14 @@ private static void gen_nuget_targets_windows(string top, string tname, string f
4533
4534
f . WriteAttributeString ( "Condition" , " '$(OS)' == 'Windows_NT' " ) ;
4534
4535
4535
4536
f . WriteStartElement ( "Content" ) ;
4536
- f . WriteAttributeString ( "Include" , string . Format ( "$(MSBuildThisFileDirectory)..\\ ..\\ runtimes\\ win7 -x86\\ native\\ {0}" , filename ) ) ;
4537
+ f . WriteAttributeString ( "Include" , string . Format ( "$(MSBuildThisFileDirectory)..\\ ..\\ runtimes\\ win -x86\\ native\\ {0}" , filename ) ) ;
4537
4538
f . WriteElementString ( "Link" , string . Format ( "{0}\\ {1}" , "x86" , filename ) ) ;
4538
4539
f . WriteElementString ( "CopyToOutputDirectory" , "PreserveNewest" ) ;
4539
4540
f . WriteElementString ( "Pack" , "false" ) ;
4540
4541
f . WriteEndElement ( ) ; // Content
4541
4542
4542
4543
f . WriteStartElement ( "Content" ) ;
4543
- f . WriteAttributeString ( "Include" , string . Format ( "$(MSBuildThisFileDirectory)..\\ ..\\ runtimes\\ win7 -x64\\ native\\ {0}" , filename ) ) ;
4544
+ f . WriteAttributeString ( "Include" , string . Format ( "$(MSBuildThisFileDirectory)..\\ ..\\ runtimes\\ win -x64\\ native\\ {0}" , filename ) ) ;
4544
4545
f . WriteElementString ( "Link" , string . Format ( "{0}\\ {1}" , "x64" , filename ) ) ;
4545
4546
f . WriteElementString ( "CopyToOutputDirectory" , "PreserveNewest" ) ;
4546
4547
f . WriteElementString ( "Pack" , "false" ) ;
0 commit comments