|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk">
|
2 | 2 | <PropertyGroup>
|
3 | 3 | <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
4 |
| - <UsePackageTargetRuntimeDefaults Condition="'$(IsPartialFacadeAssembly)' != 'true'">true</UsePackageTargetRuntimeDefaults> |
5 | 4 | <IncludeDllSafeSearchPathAttribute>true</IncludeDllSafeSearchPathAttribute>
|
6 | 5 | <NoWarn>$(NoWarn);CA5384</NoWarn>
|
7 | 6 | <Nullable>enable</Nullable>
|
|
12 | 11 | <PropertyGroup>
|
13 | 12 | <IsPartialFacadeAssembly Condition="$(TargetFramework.StartsWith('net4'))">true</IsPartialFacadeAssembly>
|
14 | 13 | <OmitResources Condition="$(TargetFramework.StartsWith('net4'))">true</OmitResources>
|
15 |
| - <!-- Currently the netstandard build is locked to the net472 API --> |
16 |
| - <AssemblyVersion Condition="$(TargetFramework.StartsWith('netstandard'))">4.0.4.0</AssemblyVersion> |
| 14 | + <UsePackageTargetRuntimeDefaults Condition="'$(IsPartialFacadeAssembly)' != 'true'">true</UsePackageTargetRuntimeDefaults> |
17 | 15 | </PropertyGroup>
|
18 | 16 | <Import Project="$(CommonPath)System\Security\Cryptography\Asn1\AsnXml.targets" Condition="'$(IsPartialFacadeAssembly)' != 'true'" />
|
19 | 17 | <Import Project="$(CommonPath)System\Security\Cryptography\Asn1Reader\System.Security.Cryptography.Asn1Reader.Shared.projitems" Condition="'$(IsPartialFacadeAssembly)' != 'true'" />
|
|
640 | 638 | <PackageReference Include="System.Buffers" Version="$(SystemBuffersVersion)" />
|
641 | 639 | <PackageReference Include="System.Memory" Version="$(SystemMemoryVersion)" />
|
642 | 640 | <ProjectReference Include="$(LibrariesProjectRoot)System.Runtime.CompilerServices.Unsafe\src\System.Runtime.CompilerServices.Unsafe.ilproj" />
|
643 |
| - <!-- Ref assembly for netstandard2.0 isn't live built anymore. --> |
644 |
| - <PackageDownload Include="$(MSBuildProjectName)" Version="[$(SystemSecurityCryptographyPkcsVersion)]" /> |
645 |
| - <ResolvedMatchingContract Include="$(NuGetPackageRoot)$(MSBuildProjectName.ToLowerInvariant())\$(SystemSecurityCryptographyPkcsVersion)\ref\$(TargetFramework)\$(MSBuildProjectName).dll" /> |
646 | 641 | </ItemGroup>
|
647 | 642 | <ItemGroup Condition="!$(TargetFramework.StartsWith('$(NetCoreAppCurrent)'))">
|
648 | 643 | <PackageReference Include="System.Security.Cryptography.Cng" Version="$(SystemSecurityCryptographyCngVersion)" />
|
|
0 commit comments