diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-10-25 21:47:21 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-10-25 21:47:21 +0700 |
commit | 296a22544c63b43e72b8fbfe8c70bf46768d5d16 (patch) | |
tree | ab08d0e34adc12cad137591183230e7407ef3ce8 /crypto/test | |
parent | Refactoring in Keccak code (diff) | |
download | BouncyCastle.NET-ed25519-296a22544c63b43e72b8fbfe8c70bf46768d5d16.tar.xz |
FIne-grained SupportedOSPlatform attributes
Diffstat (limited to 'crypto/test')
-rw-r--r-- | crypto/test/src/security/test/TestDotNetUtil.cs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/crypto/test/src/security/test/TestDotNetUtil.cs b/crypto/test/src/security/test/TestDotNetUtil.cs index 3ca3efdbb..b83a94a36 100644 --- a/crypto/test/src/security/test/TestDotNetUtil.cs +++ b/crypto/test/src/security/test/TestDotNetUtil.cs @@ -20,12 +20,13 @@ using Org.BouncyCastle.X509; namespace Org.BouncyCastle.Security.Tests { [TestFixture] -#if NET5_0_OR_GREATER - [SupportedOSPlatform("windows")] -#endif public class TestDotNetUtilities { - [Test] +//#if NET5_0_OR_GREATER +#if NET6_0_OR_GREATER + [SupportedOSPlatform("windows")] +#endif + [Test] public void TestRsaInterop() { for (int i = 0; i < 100; ++i) |