-
-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed #205 via TfmIdentifier for modern env
- Loading branch information
Showing
6 changed files
with
90 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/*! | ||
* Copyright (c) Robert Giesecke | ||
* Copyright (c) Denis Kuzmin <x-3F@outlook.com> github/3F | ||
* Copyright (c) DllExport contributors https://github.com/3F/DllExport/graphs/contributors | ||
* Licensed under the MIT License (MIT). | ||
* See accompanying LICENSE.txt file or visit https://github.com/3F/DllExport | ||
*/ | ||
|
||
namespace net.r_eg.DllExport.Activator | ||
{ | ||
internal enum TfmIdentifier | ||
{ | ||
/// <summary> | ||
/// TargetFrameworkIdentifier = ".NETFramework" | ||
/// or TargetFrameworkIdentifier = "" (MSBuild 15 or less) | ||
/// </summary> | ||
NETFramework, | ||
|
||
/// <summary> | ||
/// TargetFrameworkIdentifier = ".NETStandard" | ||
/// </summary> | ||
NETStandard, | ||
|
||
/// <summary> | ||
/// TargetFrameworkIdentifier = ".NETCoreApp" | ||
/// </summary> | ||
NETCoreApp | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters