File tree Expand file tree Collapse file tree 5 files changed +11
-11
lines changed Expand file tree Collapse file tree 5 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ limitations under the License. -->
19
19
<RootNamespace ></RootNamespace >
20
20
21
21
<!-- Multi-target build -->
22
- <TargetFrameworks >netstandard2.0;netstandard2.1;net47 </TargetFrameworks >
22
+ <TargetFrameworks >netstandard2.0;netstandard2.1;net48 </TargetFrameworks >
23
23
<AllowUnsafeBlocks >true</AllowUnsafeBlocks >
24
24
25
25
<!-- Suppressed warnings-->
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ private void ResolveIdsFromInstancePath(string instancePath)
76
76
// 012345678901234567890123456789
77
77
// ^--- ^---
78
78
79
- // Disable string comparison warning for this method as it needs to compile for both net47 , netstandard 2.0 and 2.1
79
+ // Disable string comparison warning for this method as it needs to compile for both net48 , netstandard 2.0 and 2.1
80
80
#pragma warning disable CA1862
81
81
if ( instancePath . ToUpperInvariant ( ) . Contains ( "VID" ) && instancePath . ToUpperInvariant ( ) . Contains ( "HID" ) )
82
82
#pragma warning restore CA1862
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- #if NET47
15
+ #if NET48
16
16
17
17
using System ;
18
18
using System . IO ;
@@ -48,15 +48,15 @@ internal static partial class Libraries
48
48
/// </exception>
49
49
/// <remarks>
50
50
/// This method must be called before any P/Invoke calls are made.
51
- /// The implementation details are handled in Libraries.Net47 .cs.
51
+ /// The implementation details are handled in Libraries.Net48 .cs.
52
52
/// </remarks>
53
- public static void EnsureInitialized ( ) => Net47Implementation . Initialize ( ) ;
53
+ public static void EnsureInitialized ( ) => Net48Implementation . Initialize ( ) ;
54
54
55
55
/// <summary>
56
56
/// Encapsulates the .NET Framework 4.7 specific implementation details for native library management.
57
57
/// This nested class handles the dynamic loading of architecture-specific (x86/x64) native libraries.
58
58
/// </summary>
59
- private static class Net47Implementation
59
+ private static class Net48Implementation
60
60
{
61
61
// Handle to the loaded native library
62
62
private static UnmanagedDynamicLibrary ? _nativeShims ;
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- // As long as we have the Libraries.Net47 .cs class which holds the opposite preprocessor directive check,
15
+ // As long as we have the Libraries.Net48 .cs class which holds the opposite preprocessor directive check,
16
16
// this check is required - as having both at the same time is not possible.
17
- #if ! NET47
17
+ #if ! NET48
18
18
19
19
namespace Yubico . PlatformInterop
20
20
{
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ limitations under the License. -->
20
20
As of 2020, netstandard2.0 allows us to reach the widest audience while providing a large
21
21
enough set of the .NET library to be productive.
22
22
-->
23
- <TargetFrameworks >netstandard2.0;netstandard2.1;net47 </TargetFrameworks >
23
+ <TargetFrameworks >netstandard2.0;netstandard2.1;net48 </TargetFrameworks >
24
24
25
25
<RootNamespace ></RootNamespace >
26
26
@@ -130,8 +130,8 @@ limitations under the License. -->
130
130
131
131
</ItemGroup >
132
132
133
- <!-- This is in order to use the HttpUtility.ParseQueryString in .NET47 -->
134
- <ItemGroup Condition =" '$(TargetFramework)' == 'net47 '" >
133
+ <!-- This is in order to use the HttpUtility.ParseQueryString in .net48 -->
134
+ <ItemGroup Condition =" '$(TargetFramework)' == 'net48 '" >
135
135
<Reference Include =" System.Web" />
136
136
</ItemGroup >
137
137
You can’t perform that action at this time.
0 commit comments