Skip to content

Commit

Permalink
Upgrades System.Security.Cryptography.ProtectedData to remove Runtime…
Browse files Browse the repository at this point in the history
…Identifier in N.B.T.P
  • Loading branch information
Fernando Aguilar committed Jul 14, 2020
1 parent 712d9be commit 8ab12f9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build/packages.targets
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<PackageReference Update="System.Collections.Immutable" Version="1.5.0" />
<PackageReference Update="System.Security.Cryptography.Pkcs" Version="$(PatchedSystemPackagesVersion)" />
<PackageReference Update="System.Security.Cryptography.Cng" Version="$(PatchedSystemPackagesVersion)" />
<PackageReference Update="System.Security.Cryptography.ProtectedData" Version="$(SystemPackagesVersion)" />
<PackageReference Update="System.Security.Cryptography.ProtectedData" Version="$(PatchedSystemPackagesVersion)" />
<PackageReference Update="System.Threading.Tasks.Dataflow" Version="4.9.0" />
<PackageReference Update="VSLangProj" Version="7.0.3300" />
<PackageReference Update="VSLangProj110" Version="11.0.61030" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,10 @@
<IlmergeCommand>$(ILMergeExePath) ^
/out:$(PathToMergedNuGetPack) ^
$(ILMergePlatformArg) ^
/lib:$(OutputPath)\publish ^
/lib:$(OutputPath)publish ^
/internalize ^
/xmldocs</IlmergeCommand>
/xmldocs ^
/log:$(ILMergeResultDir)IlMergeLog.txt</IlmergeCommand>
<IlmergeCommand Condition="Exists($(MS_PFX_PATH))">$(IlmergeCommand) ^
/delaysign ^
/keyfile:$(MS_PFX_PATH)</IlmergeCommand>
Expand All @@ -124,15 +125,17 @@
<IlmergeCommand>$(ILMergeExePath) ^
/out:$(PathToMergedNuGetPackResource) ^
$(ILMergePlatformArg) ^
/log ^
/lib:$(OutputPath)\publish ^
/internalize ^
/xmldocs</IlmergeCommand>
/xmldocs ^
/log:$(ILMergeResultDir)IlMergeLogResources.txt</IlmergeCommand>
<IlmergeCommand Condition="Exists($(MS_PFX_PATH))">$(IlmergeCommand) ^
/delaysign ^
/keyfile:$(MS_PFX_PATH)</IlmergeCommand>
<IlmergeCommand>$(IlmergeCommand) ^
$(OutputPath)$(CurrentCulture)NuGet.Build.Tasks.Pack.resources.dll ^
@(ResourceArtifacts, ' ')</IlmergeCommand>
@(ResourceArtifacts, ' ^&#x0A;')</IlmergeCommand>
</PropertyGroup>
<Exec Command="$(IlmergeCommand)" ContinueOnError="false" />
</Target>
Expand Down

0 comments on commit 8ab12f9

Please sign in to comment.